
 :root{
    --orange-1: #f57c00;
    --orange-2: #e65100;
    --accent-blue: #03a9f4;
    --nav-h: 120px;
    --container: 1200px;
  }
  *{box-sizing:border-box;padding:0}
  body{font-family: "Segoe UI", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; background:#fff;color:#111}
  
  
   /* Intro Animation - Fixed for clarity */
        .intro {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(255, 255, 255);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 9999;
        }

        .intro video {
            position: absolute;
            top: 10;
            left: 10;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Improved logo styling for better clarity */
        .logo1 {
            z-index: 2;
            width: 220px;
            height: auto;
            opacity: 0;
            animation: logoShow 3.5s forwards;
            position: relative;
            filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
        }

        @keyframes logoShow {
            0% { 
                opacity: 0; 
                transform: scale(0.85) rotateY(20deg); 
                filter: blur(8px) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
            }
            30% { 
                opacity: 1; 
                transform: scale(1) rotateY(0deg); 
                filter: blur(0) drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
            }
            70% { 
                opacity: 1; 
                transform: scale(1); 
                filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
            }
            100% { 
                opacity: 0; 
                transform: scale(0.95); 
                filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
            }
        }
        
        /* Loading animation */
        .loader {
            position: absolute;
            bottom: 40%;
            width: 60px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            overflow: hidden;
            z-index: 3;
            opacity: 0;
            animation: fadeIn 0.5s 0.5s forwards;
        }
        
        .loader::after {
            content: '';
            position: absolute;
            height: 100%;
            width: 60px;
            background: #fff;
            animation: loading 2.5s ease-in-out forwards;
        }
        
        @keyframes loading {
            0% { transform: translateX(-60px); }
            100% { transform: translateX(120px); }
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
  /* Mobile view adjustments */
@media (max-width: 600px) {
    .loader {
        bottom: 35%;                /* Adjust position */
        width: 45px;                /* Smaller width */
        height: 3px;                /* Slightly thinner */
        border-radius: 2px;
    }


.intro video {
        width: 100%;
        height: 70%;      /* ↓ Reduce height */
        object-fit: contain;  /* Show full video */
        top: 15%;
    }

    .loader::after {
        width: 45px;
    }

    @keyframes loading {
        0% { transform: translateX(-45px); }
        100% { transform: translateX(90px); }
    }
}

@media (max-width: 400px) {
    .loader {
        bottom: 30%;
        width: 40px;
        height: 3px;
    }

    .loader::after {
        width: 40px;
    }
.intro video {
        width: 100%;
        height: 60%;      /* Further reduce for small screens */
        object-fit: contain;
        top: 20%;
    }

    @keyframes loading {
        0% { transform: translateX(-40px); }
        100% { transform: translateX(80px); }
    }
}
  
  
  
  header{
  
    height:var(--nav-h);
    background:#ffffff;
    position:fixed;left:0;right:0;top:0;z-index:40;
    display:flex;align-items:center;border-bottom:1px solid rgba(0,0,0,0.02);
  }
 header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

 

.logo-left {
  order: 0;              /* logo at start */
  margin-right: auto;
}
.logo-center {
  order: 1;              /* logo in middle */
  margin: 0 auto;
}
.logo-right {
  order: 2;              /* logo at end */
  margin-left: auto;
}
 
  .logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 188px;   /* adjust size as needed */
  width: auto;
  display: block;
}
  nav {
  justify-self: center;  /* perfectly centered */
  display: flex;
  gap: 30px;  
}
  
  nav a{color:#03045E;text-decoration:none;margin:0 14px;font-weight:600}
  .phone-btn{background:var(--accent-blue);color:#fff;padding:10px 18px;border-radius:28px;text-decoration:none;font-weight:700}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 55px;
}

.social-links a {
  color: #f57c00;   /* orange icons */
  font-size: 20px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #03a9f4;   /* blue on hover */
  transform: scale(1.2);
}


    .dropdown {
      position: relative;
      display: inline-block;
    }

    /* Main Demo link */
    .dropdown-toggle {
      text-decoration: none;
      font-size: 15px;
      color: #03045e;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .dropdown-toggle:hover {
      color: #000;
    }

    /* Dropdown Content */
    .dropdown-content {
      position: absolute;
      top: 100%; /* Show below */
      left: 0;
      background: #fff;
      min-width: 160px;
      border: 1px solid #ddd;
      border-radius: 6px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      visibility: hidden;
      z-index: 100;
    }

    .dropdown-content a {
      display: block;
      padding: 10px;
      color: #333;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background: #f9f9f9;
    }

    /* Show on hover */
    .dropdown:hover .dropdown-content {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }



/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    height: auto;
    min-height: var(--nav-h);
    padding: 8px 0;
    position: relative;
  }
  
  header .container {
    flex-direction: column;
    gap: 12px;
    padding: 0 12px;
  }
  
  .logo {
    order: 0;
    margin: 0;
  }
  
  .logo img {
    height: 100px; /* Reduced from 120px */
   
  }
  
  nav {
    order: 2;
    width: 100%;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  
  nav a {
    margin: 4px 0;
    padding: 8px;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 15px; /* Slightly smaller font */
  }
  
  .phone-btn {
    order: 1;
    margin: 8px 0;
    padding: 8px 16px;
    font-size: 13px;
    pointer-events: none;
    text-align: center;
    width: 100%;
  }
  
  .social-links {
    order: 3;
    margin: 8px 0 0 0;
    justify-content: center;
    gap: 16px;
  }
  
  .social-links a {
    font-size: 18px; /* Reduced from 20px */
  }
  
  /* Mobile dropdown adjustments */
  .dropdown {
    width: 100%;
  }
  
  .dropdown-toggle {
    justify-content: center;
    padding: 8px;
    font-size: 15px;
  }
  
  .dropdown-content {
    position: static;
    width: 100%;
    opacity: 1;
    transform: none;
    visibility: visible;
    display: none;
    border: none;
    box-shadow: none;
    background: #f8f8f8;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    padding: 6px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .logo img {
    height: 285px; /* Reduced from 100px */
  }
  
  nav a {
    font-size: 14px;
    padding: 7px;
  }
  
  .phone-btn {
    font-size: 12px;
    padding: 7px 14px;
  }
  
  .social-links a {
    font-size: 16px;
  }
  
  .social-links {
    gap: 14px;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  header .container {
    padding: 0 15px;
  }
  
  nav {
    gap: 15px;
  }
  
  nav a {
    margin: 0 8px;
    font-size: 15px;
  }
  
  .logo img {
    height: 130px; /* Reduced from 150px */
  }
  
  .social-links {
    margin-left: 25px;
    gap: 10px;
  }
  
  .social-links a {
    font-size: 18px;
  }
}

/* Ensure proper touch targets for mobile */
@media (max-width: 768px) {
  nav a,
  .dropdown-toggle,
  .social-links a {
    min-height: 40px; /* Reduced from 44px but still touch-friendly */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

  /* Hero */
  .hero{
    padding-top:var(--nav-h);
    min-height:88vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,var(--orange-1), var(--orange-2));
    color: #000000;
  }
  .hero-inner{
    text-align:center;
    max-width:980px;
    padding:64px 20px 200px; /* extra bottom so SVG does not overlap content */
  }
  h1{font-size:68px;line-height:0.95;margin-bottom:18px;font-weight:800;letter-spacing:-1px}
  h1 span{display:block;font-size:110px;line-height:0.9}
  p{max-width:640px;margin:0 auto 22px;font-weight:600;color:#ffffff}
  .btn-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:18px}
  .btn{padding:12px 22px;border-radius:30px;text-decoration:none;font-weight:700}
  .btn-outline{color:#fff;border:2px solid rgba(255,255,255,0.28);background:transparent;padding:10px 20px}
  .btn-primary{background:var(--accent-blue);color:#fff;box-shadow:0 10px 30px rgba(3,169,244,0.18)}

  /* SVG wrapper - sits at bottom of hero */
  .wave-wrap{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    pointer-events:none;
    line-height:0;
  }
  /* let svg scale nicely */
  .wave-wrap svg{display:block;width:100%;height:auto}

  /* small screens */
  @media (max-width:900px){
    h1{font-size:40px}
    h1 span{font-size:56px}
    .hero-inner{padding-bottom:160px}
  }
  
  .hero {
  position: relative;
  overflow: hidden;
}

.spline-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 10;
}
  
  
    /* what we do */
  
.what-we-do {
  position: relative;
  padding: 80px 20px;
  background: url('https://sdmntprwestus2.oaiusercontent.com/files/00000000-224c-61f8-9fe0-f3c70f4c564b/raw?se=2025-09-04T15%3A41%3A49Z&sp=r&sv=2024-08-04&sr=b&scid=5ebd5385-55cb-53aa-94ce-b2e3f25496b8&skoid=732f244e-db13-47c3-bcc7-7ee02a9397bc&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2025-09-03T19%3A44%3A47Z&ske=2025-09-04T19%3A44%3A47Z&sks=b&skv=2024-08-04&sig=ccKjUC3fqRCV/vYYwzxYc1%2BMt5pd7wRCbkxAds9cHIQ%3D') center/cover no-repeat;
}

.what-we-do::before {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(255,255,255,0.7); /* overlay for lightness */
}

.what-we-do .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.what-we-do h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}
.what-we-do h2 span { color: #111; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 20px;
}
.feature p {
  max-height: 40px;       /* only first line visible */
  overflow: hidden;
  transition: max-height 0.9s ease;
  cursor: pointer;
}
.feature-img {
  width: 100%;
  height: 160px;      /* adjust height */
  object-fit: cover;  /* crop nicely */
  border-radius: 6px;
  margin-bottom: 12px;
}

.feature:hover p {
  max-height: 200px;      /* expand smoothly on hover */
}

.feature {
  padding: 28px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}
.feature .num {
  color: #f57c00;
  font-weight: 700;
  margin-right: 6px;
}

/* Variants */

.feature-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature.white {
  background: rgba(255,255,255,0.9);
  color: #333;
}
.feature.orange {
  background: #f57c00;
  color: #fff;
}
.feature.orange .num { color: #fff; }

.feature.dark {
  background: #333;
  color: #fff;
}
.feature.dark .num { color: #f57c00; }

.feature.blue {
  background: #03a9f4;
  color: #fff;
}
.feature.blue .num { color: #fff; }

/* Responsive tweak */
@media (max-width: 768px) {
  .what-we-do h2 { font-size: 32px; }
}


  /* slide shows */
body {
  background-color: #ffffff;
  
}
        .container1 {
            position: relative;
            
            max-width: 1900px;
            margin: 50px auto;
            height: 700px;
            
            background: #f5f5f5;
            box-shadow: 0 30px 50px #dbdbdb;
            overflow: hidden;
        }
        

       .container1 .slide2 .slide-item {
            width: 210px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px ;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
        }
        
 .slide2 .slide-item:nth-child(1){
 top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
 
 
 }
.slide2 .slide-item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide2 .slide-item:nth-child(3){
    left: 50%;
}
.slide2 .slide-item:nth-child(4){
    left: calc(50% + 220px);
}
.slide2 .slide-item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide2 .slide-item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}
        

  
        
     .slide-item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #000000;
    transform: translate(0, -50%);
    font-family: "Segoe UI";
    display: none;
}   
        .content button:hover {
        color: #FFFFFF; /* White */
        background-color: #FF8C00; /* Dark orange */
    }


.slide-item {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.slide-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.slide-item:hover::before {
  transform: scale(1.2); /* zoom only the image */
}


.slide2 .slide-item:nth-child(2) .content{
    display: block;
}

   
    .content .name{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
	font-size: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
        
.button {
    width: 100%;
    display: flex;
    justify-content: center;
    position: center;
    bottom: 20px;
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    background: #d90408;
    color: #fff;
}






 /*  Removed body styles and made section self-contained */
        .manufacturing-section {
            font-family: 'Montserrat';
            background: linear-gradient(135deg, #03045E, #023E8A);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .manufacturing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .container2 {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .testimonial-section {
            color: white;
            padding: 20px;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .author {
            font-weight: bold;
            margin-bottom: 20px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .stars {
            color: #fbbf24;
            font-size: 18px;
        }

        .review-count {
            font-size: 14px;
            opacity: 0.9;
        }

        .avatars {
            display: flex;
            gap: -10px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, #f59e0b, #d97706);
            border: 2px solid white;
            margin-left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .avatar:first-child {
            margin-left: 0;
        }

        .process-diagram {
            position: relative;
            width: 400px;
            height: 400px;
            margin: 0 auto;
        }

        .center-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            color: #6b46c1;
            margin-bottom: 5px;
        }

        .logo-subtitle {
            font-size: 10px;
            color: #6b46c1;
            text-align: center;
        }

        .process-circle {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .process-step {
            position: absolute;
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 25px;
            height: 25px;
            background: #6b46c1;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .step-icon {
            font-size: 24px;
            color: #6b46c1;
            margin-bottom: 5px;
        }

        .step-1 { top: 0; left: 50%; transform: translateX(-50%); }
        .step-2 { top: 25%; right: 0; }
        .step-3 { bottom: 25%; right: 0; }
        .step-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
        .step-5 { bottom: 25%; left: 0; }
        .step-6 { top: 25%; left: 0; }

        .benefits-section {
            color: white;
            padding: 20px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .benefit-content h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .benefit-content p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.4;
        }

        .tooltip {
            position: absolute;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 20;
        }

        .process-step:hover .tooltip {
            opacity: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .process-diagram {
                width: 300px;
                height: 300px;
            }
            
            .process-step {
                width: 60px;
                height: 60px;
            }
            
            .center-logo {
                width: 100px;
                height: 100px;
            }
            
            .logo-text {
                font-size: 20px;
            }
        }
        
        
     /* Mobile / Tablet improvements */
@media (max-width: 768px) {
    .manufacturing-section {
        padding: 24px 16px;
        min-height: auto;
    }

    /* stack columns vertically and center content */
    .container2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        align-items: start;
        padding: 10px;
    }

    /* testimonial tweaks */
    .testimonial-section {
        padding: 12px;
    }
    .testimonial-text {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    .author { font-size: 14px; }

    .rating { justify-content: center; gap: 8px; }
    .stars { font-size: 16px; }
    .review-count { font-size: 13px; }

    .avatars {
        justify-content: center;
        gap: -8px;
    }
    .avatar { width:36px; height:36px; font-size:11px; border-width:2px; }

    /* process diagram scale down for tablets / large phones */
    .process-diagram {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
    .process-step {
        width: 68px;
        height: 68px;
    }
    .center-logo {
        width: 110px;
        height: 92px;
    }
    .logo-text { font-size: 20px; }
    .logo-subtitle { font-size: 10px; }

    /* keep benefits readable */
    .benefits-section { padding: 12px; }
    .benefit-item { gap: 12px; margin-bottom: 18px; }
    .benefit-icon { width:36px; height:36px; margin-top:4px; }
    .benefit-content h3 { font-size: 16px; }
    .benefit-content p { font-size: 13px; }

    /* tooltips centered better on mobile */
    .tooltip {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* slow rotation slightly on mobile for comfort */
    .process-circle { animation-duration: 28s; }
}

/* Small phones / narrow view */
@media (max-width: 480px) {
    .manufacturing-section { padding: 18px 12px; }

    .container2 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 6px;
    }

    /* Testimonials — more compact */
    .testimonial-text { font-size: 14px; margin-bottom: 10px; }
    .author { font-size: 13px; }
    .stars { font-size: 15px; }
    .review-count { display: none; } /* shorten header area */

    .avatars { gap: -6px; }
    .avatar { width:32px; height:32px; font-size:10px; }

    /* Process diagram — make more compact and accessible:
       for very small screens we switch to a stacked vertical flow
       so the circular layout does not overflow or become unreadable. */
    .process-diagram {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }
    .center-logo { width: 92px; height: 78px; }
    .logo-text { font-size: 18px; }

    .process-step {
        width: 56px;
        height: 56px;
        font-size: 12px;
        /* reduce shadow and hover transform for small devices */
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .process-step:hover { transform: none; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }

    /* If the circular layout becomes cramped on very narrow screens,
       allow steps to flow into a vertical list by switching their positioning */
    .process-diagram.vertical-fallback {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        width: 100%;
        padding: 6px 12px;
        animation: none;
    }
    .process-diagram.vertical-fallback .process-step {
        position: relative;
        margin: 8px 0;
        width: 84%;
        max-width: 280px;
        height: auto;
        border-radius: 12px;
        padding: 12px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
    }
    .process-diagram.vertical-fallback .step-icon { margin: 0; font-size: 20px; }
    .process-diagram.vertical-fallback .step-number {
        top: 8px; right: 8px; position: absolute;
        transform: none;
    }
    .process-diagram.vertical-fallback .tooltip { position: relative; opacity: 1; pointer-events: auto; margin-left: 8px; }

    /* Benefits: stack tighter */
    .benefit-item { gap: 12px; margin-bottom: 14px; align-items: center; }
    .benefit-content h3 { font-size: 15px; }
    .benefit-content p { font-size: 13px; opacity: 0.95; }

    /* Make sure the z-index stacking keeps logo on top */
    .center-logo { z-index: 15; box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

    /* Reduce animation intensity for accessibility */
    @media (prefers-reduced-motion: reduce) {
        .process-circle { animation: none !important; }
    }
}
        
        
        
        
     body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      
      color: #333;
      line-height: 1.6;
    }

    .container3 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .main-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 400;
      margin-bottom: 10px;
      color: #333;
    }

    .main-title::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background-color: #333;
      margin: 10px auto;
    }

    .form-container {
      display: flex;
      align-items: center;   /* vertical center */
      justify-content: space-between; /* left preview, right button */
      gap: 40px;
      margin-top: 40px;
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .left-section {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .upload-instruction {
      font-size: 1rem;
      margin-bottom: 20px;
      text-align: center;
      color: #555;
    }

    .logo-display {
      margin-bottom: 15px;
    }

    .logo-placeholder {
      width: 260px;
      height: 160px;
      border: 2px dashed #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fafafa;
      border-radius: 8px;
    }

    .logo-text {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .heart-logo {
      font-size: 2.5rem;
      color: #333;
    }

    .heart-logo.red {
      color: #e74c3c;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .h-letter {
      font-size: 3rem;
      font-weight: bold;
      color: #333;
      line-height: 0.8;
    }

    .brand-text.red .h-letter {
      color: #e74c3c;
    }

    .dentistry-text {
      font-size: 1.4rem;
      font-style: italic;
      color: #333;
      margin-top: -5px;
    }

    .brand-text.red .dentistry-text {
      color: #e74c3c;
    }

    .print-explanation {
      text-align: center;
      margin-bottom: 20px;
      color: #666;
      font-size: 0.9rem;
    }

    .product-mockup {
      width: 100%;
      max-width: 300px;
    }

    .napkin-mockup {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .napkin-mockup::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.3"/></svg>');
    }

    .printed-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      transform: rotate(-15deg);
      z-index: 1;
      position: relative;
    }

    /* ✅ Button on right side */
    .right-section {
      display: flex;
      align-items: center; /* vertical center with preview */
      justify-content: center;
    }

    .demo-btn {
      background-color: #e74c3c;
      color: white;
      border: none;
      padding: 12px 26px;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .demo-btn:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(231, 76, 60, 0.25);
    }

    @media (max-width: 768px) {
      .form-container {
        flex-direction: column;
      }
      .right-section {
        margin-top: 20px;
      }
    }
    
    
    
    
   /* slide show */  
    
 slideshow-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 16px;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 48px;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #111827;
}

.subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 384px;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .carousel-slides {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .carousel-slides {
        height: 550px;
    }
}

/* Slide Styles */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    padding: 24px;
    text-align: center;

    @media (min-width: 768px) {
        flex-direction: row;
        gap: 40px;
        padding: 40px;
        text-align: left;
    }
}

/* Gradient Backgrounds */
.gradient-1 {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #fbcfe8 0%, #fce7f3 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #bfdbfe 0%, #dbeafe 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #bbf7d0 0%, #dcfce7 100%);
}

/* Slide Image */
.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    width: 100%;
    height: 100%;
    max-width: 256px;
    max-height: 256px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .slide-image img {
        max-width: 320px;
        max-height: 320px;
    }
}

/* Slide Text */
.slide-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    color: #F17720;
}

.slide-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
}

.slide-description {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    opacity: 0.95;
}

/* Buttons */
.slide-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #111827;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-prev {
    left: 16px;
}

.nav-next {
    right: 16px;
}

@media (min-width: 768px) {
    .nav-prev {
        left: 24px;
    }

    .nav-next {
        right: 24px;
    }
}

/* Dot Indicators */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #d1d5db;
    transition: all 0.3s ease;
}

.dot.active {
    background: #111827;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(17, 24, 39, 0.6);
}

/* Status Info */
.status-info {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 640px) {
    .slideshow-container {
        padding: 32px 12px;
    }

    .carousel-slides {
        border-radius: 16px;
    }

    .slide-content {
        padding: 16px;
        gap: 16px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}   








@media (max-width: 480px) {
	body {
        font-size: 16px; /* Adjust font size for smaller screens */
        zoom: 0.8;
    }
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    .container {
            position: relative;
            
            max-width: 1900px;
            margin: 50px auto;
            
            background: #f5f5f5;
            box-shadow: 0 30px 50px #dbdbdb;
            overflow: hidden;
        }
        

       .container .slide2 .slide-item {
            width: 210px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px ;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
        }
        
 .slide2 .slide-item:nth-child(1){
 top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
 
 
 }
.slide2 .slide-item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide2 .slide-item:nth-child(3){
    left: 70%;
}
.slide2 .slide-item:nth-child(4){
    left: calc(50% + 220px);
}
.slide2 .slide-item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide2 .slide-item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}
        

  
        
     .slide-item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}   
        .content button:hover {
        color: #FFFFFF; /* White */
        background-color: #FF8C00; /* Dark orange */
    }




.slide2 .slide-item:nth-child(2) .content{
    display: block;
}

   
    .content .name{
    font-size: 40px;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
	font-size: 28px;
	text-align: left;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
}





/* chatbot  */

 
        .chatbot-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffffff;
            padding: 15px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .chatbot-container {
            position: fixed;
            bottom: 100px;
            right: 20px;
            height:300px;
            width: 300px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            display: none;
            flex-direction: column;
        }
        .chatbot-header {
            background-color: #000000;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        .chatbot-body {
            padding: 20px;
            height: 150px;
            overflow-y: auto;
        }
        .chatbot-footer {
            display: flex;
            padding: 10px;
        }
        input[type="text"] {
            width: 70%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        button {
            padding: 10px;
            background-color: #c70202;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #000000;
        }
        .bot-message, .user-message {
            margin: 10px 0;
        }
        .user-message {
            text-align: right;
            color: #c70202;
        }
        
        .service-options {
            margin: 10px 0;
        }
        
        /* Radio button section */
    .service-options {
        margin: 15px 0;
    }

    .service-options label {
        display: block;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 5px;
        cursor: pointer;
    }

    .service-options input[type="radio"] {
        margin-right: 10px;
    }
        .confirm-button {
            padding: 10px;
            background-color: #c70202;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        .contact-us-button {
            margin-top: 10px;
            color: #c70202;
        }

  /* Modal Styles */
      #launchPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#launchPopup.show {
    opacity: 1;
    visibility: visible;
}

#popupContent {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

#launchPopup.show #popupContent {
    transform: scale(1);
}

#popupContent h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

#popupContent p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

#popupContent .popup-btn {
    display: inline-block;
    padding: 12px 18px;
    margin: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#popupContent .popup-btn.primary {
    background: #d90408;
    color: white;
}

#popupContent .popup-btn.primary:hover {
    background:#d90408;
}

#popupContent .popup-btn.secondary {
    background: #ddd;
    color: #333;
}

#popupContent .popup-btn.secondary:hover {
    background: #bbb;
}




.whatsapp-popup {
    display: none; /* Hidden by default */
    position: fixed;
    
    bottom: 80px; /* Adjust to position above the button */
    left: 30px; /* Change from right to left */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Change from right to left */
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-button {
    background-color: #128C7E; /* WhatsApp button color */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
