:root {
    --ink: #ff9900;
    --paper: #f8f5f2;
    --accent: #1900ff;
    --highlight: #ff9900;
    --light: #e6e6e6;


    /* --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --success: #10b981;
    --deep-blue: #0a1a3a;
    --soft-blue: #2d5d8c;
    --lavender: #b8b8ff;
    --light-lavender: #e2e2fa; */
    /* --accent: #ff9e7d; */



        --primary: #ff9900;
        /* --primary-dark: ; */
        --secondary: #f59e0b;
        --dark: #1e293b;
        --light: #f8fafc;
        --gray: #94a3b8;
        --success: #10b981;

}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        @font-face {
            font-family: 'Inter';
            font-style: normal;
            font-weight: 100 900;
            font-display: swap;
            src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7W0Q5nw.woff2) format('woff2');
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

      

        section {
            padding: 1rem 0;
            position: relative;
            overflow: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
        }

      
        p {
            /* color: var(--gray); */
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .text-primary {
            color: var(--primary);
        }

        .text-secondary {
            color: var(--secondary);
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background: var(--secondary);
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .btn-secondary:hover {
            background: #e69009;
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }


.form-content p {
    text-align:center;
    color:white;
    font-size:30px;
}




        /* Navbar */
       /* Improved Navigation */
       

/* Marquee Line */
.marquee-line {
    background-color: #ff8f23;
    color: white;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Fixed Navigation */
.fixed-nav {
    background-color: #ffffff;;
    /* padding: 15px 0; */
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .logo {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
} */

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
    margin-left: 20px;
}

.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background-color: #ffa958;
    border-radius: 4px;
}

/* Dropdown in fixed nav */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ffa958;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Third Navigation */
.products-nav {
    background-color: #ec7b11;
    /* padding: 10px 0; */
    position: relative;
    z-index: 99;
}

.products-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-nav-links {
    display: flex;
    list-style: none;
    justify-content: space-between;
}

.products-nav-links li {
    position: relative;
    flex: 1;
    text-align: center;
}

.products-nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 5px;
    display: block;
    transition: all 0.3s;
}

.products-nav-links a:hover {
    background-color: #ffa958;
}

/* Products dropdown */
.products-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    top: 100%;
    left: 0;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.products-dropdown:hover .products-dropdown-content {
    display: block;
}

.products-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.products-dropdown-content a:hover {
    background-color: #ffa958;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    /* color: white; */
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.hamburger.active {
    transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color:  #f59e0b;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 60px;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.mobile-menu.closing {
    animation: slideOut 0.3s;
}

@keyframes slideOut {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.mobile-menu-container {
    padding: 20px;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 15px;
    animation: fadeInUp 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger animations */
.mobile-menu-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-links li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-links li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu-links li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu-links li:nth-child(5) { animation-delay: 0.5s; }

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #444;
    transition: all 0.3s;
}

.mobile-menu-links a:hover {
    background-color: #ffa958;
    padding-left: 20px;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
    animation: fadeIn 0.3s;
}

.mobile-dropdown-content a {
    font-size: 1rem;
    padding: 8px 10px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links, .products-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .marquee-line {
        display: none;
    }

    .products-nav-links {
        flex-wrap: wrap;
    }

    .products-nav-links li {
        flex: 0 0 50%;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .products-nav-links li {
        flex: 0 0 100%;
    }
}















       .organic-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        /* padding: 15px 0; */
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10px;
    }

    /* .container-fluid{
        margin-top: 10px;
    } */
    /* .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--ink);
        text-decoration: none;
        display: flex;
        align-items: center;
    } */
    
    /* .logo-circle {
        width: 12px;
        height: 12px;
        background: var(--accent);
        border-radius: 50%;
        margin-right: 8px;
    } */
    
    











    .organic-container {
        position: relative;
        padding: 1rem 2rem;
        margin: 2rem 0;
        overflow: hidden;
    }

.organic-container h2 {
    text-align: center;
    font-size: 38px;
}
   
    /* .organic-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
        z-index: -1;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    } */
    
    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 4rem;
    }
    
    .feature-card {
        flex: 1 1 300px;
        max-width: 350px;
        padding: 2rem;
        background: white;
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        border-radius: 50% 50% 45% 55% / 60% 55% 45% 40%;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--primary);
    }
    













    /* Organic Container Styles
        .organic-container {
            position: relative;
            padding: 6rem 2rem;
            margin: 2rem 0;
            overflow: hidden;
        }
        
        .organic-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
            z-index: -1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        } */
        
        /* Floating Bubbles */
        /* .bubble {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            z-index: -1;
            animation: float linear infinite;
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(-50px, -30px) rotate(5deg);
            }
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        } */
        





   























        /* about us home  */

    .panacea-about-section {
      padding: 4rem 1rem;
      background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 100%);
      font-family: 'Inter', sans-serif;
      position: relative;
      overflow: hidden;
    }
    
    /* Floating Bubbles */
    .panacea-about-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      z-index: 0;
    }
    
    .bubble {
      position: absolute;
      background-color: rgba(245, 158, 11, 0.15);
      border-radius: 50%;
      animation: float linear infinite;
      z-index: 0;
    }
    
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      100% {
        transform: translateY(-100vh) rotate(360deg);
      }
    }
    
    .panacea-about-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 2rem;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
    }
    
    .panacea-about-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 4px;
      background: #f59e0b;
      border-radius: 2px;
    }
    
    .panacea-about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column-reverse;
      gap: 2rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    .panacea-about-text {
      flex: 1;
      padding: 0 1rem;
    }
    
    .panacea-about-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #475569;
      margin-bottom: 1.5rem;
    }
    
    .panacea-about-img {
      flex: 1;
      height: 300px;
      background-image: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      border: 4px solid white;
    }
    
    .panacea-about-btn {
      background-color: #f59e0b;
      color: white;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3), 0 2px 4px -1px rgba(245, 158, 11, 0.2);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      position: relative;
      z-index: 1;
    }
    
    .panacea-about-btn:hover {
      background-color: #d97706;
      transform: translateY(-2px);
      box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3), 0 4px 6px -2px rgba(245, 158, 11, 0.2);
    }
    
    @media (min-width: 768px) {
      .panacea-about-container {
        flex-direction: row;
        gap: 4rem;
      }
      
      .panacea-about-img {
        height: 400px;
      }
    }









        /* Why Choose Us Section */
        .why-choose-us {
            background-color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transition: all 0.4s ease;
        }

        .feature-card:hover::before {
            width: 100%;
            opacity: 0.1; 
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .feature-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        /* How It Works Section */
        .how-it-works {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        }

        .steps-container {
            position: relative;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }

        .step {
            display: flex;
            /* gap: 2rem; */
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }

        .step-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            flex: 1;
        }

        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .steps-line {
            position: absolute;
            top: 0;
            left: 30px;
            height: 100%;
            width: 2px;
            background: var(--primary);
            opacity: 0.2;
            z-index: 0;
        }

        /* steps animation  */
        .steps-container .step img {
            width: 50px;
            height: 50px;
            transition: transform 0.4s ease, filter 0.3s ease;
            animation: iconBounce 1.5s infinite alternate;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
          }
          
          /* Bounce animation */
          @keyframes iconBounce {
            0% {
              transform: translateY(0px);
            }
            100% {
              transform: translateY(-8px);
            }
          }
          
          /* On hover color */
          .steps-container .step img:hover {
            filter: drop-shadow(0 4px 8px rgba(255, 165, 0, 0.6));
          }
          








       
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 6rem 0;
        }

        .cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta h2:after {
            background: var(--secondary);
        }

        .cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        
        













        /* Footer */
        .wave-container {
            background-color: #f39c12;
            position: relative;
            height: 100px;
            overflow: hidden;
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>');
            background-size: 50% 100%;
            background-repeat: repeat-x;
            animation: waveAnimation 15s linear infinite;
            opacity: 0.8;
        }

        .wave:nth-child(2) {
            animation: waveAnimation 10s linear -5s infinite reverse;
            opacity: 0.5;
            height: 110%;
            bottom: -5px;
        }

        .wave:nth-child(3) {
            animation: waveAnimation 20s linear -2s infinite;
            opacity: 0.3;
            height: 120%;
            bottom: -10px;
        }

        @keyframes waveAnimation {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        footer {
            background-color: #f39c12;
            color: white;
            padding: 40px 0 20px;
            position: relative;
            z-index: 1;
            margin-top: -1px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo h2 {
            color: white;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .footer-logo p {
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
        }

        .footer-links h3, .footer-products h3, .footer-contact h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after, .footer-products h3::after, .footer-contact h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: white;
        }

        .footer-links ul, .footer-products ul {
            list-style: none;
        }

        .footer-links li, .footer-products li {
            margin-bottom: 10px;
        }

        .footer-links a, .footer-products a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover, .footer-products a:hover {
            color: white;
        }

        .footer-contact p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
        }

        .footer-contact a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contact a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
            margin: 0 5px;
        }

        @media (max-width: 768px) {
            .wave-container {
                height: 80px;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }




        
        
        
        
        /* Responsive */
        
        
        @media (max-width: 768px) {
            .organic-header {
                clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
                height: 90vh;
            }
            
            .process-container, .cta-section {
                clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
                margin: 50px 0;
                padding: 60px 20px;
            }
            
            .contact-container {
                padding: 30px;
            }
            
        }
        
        @media (max-width: 576px) {
            .main-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                text-align: left;
                margin-bottom: 40px;
            }
            
            .section-title:after {
                left: 0;
                transform: none;
            }
            
            .services-grid, .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            
            
            
            
            .container {
                padding: 60px 20px;
            }
            
            .cta-section {
                padding: 80px 20px;
            }
        }









        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-container, .who-we-are-container, .about-container {
                gap: 2rem;
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 6rem 0;
            }

            .hero-container, .who-we-are-container, .about-container, .mv-container {
                grid-template-columns: 1fr;
            }

            .hero-content {
                order: 1;
                text-align: center;
            }

            .hero-content p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: 0;
                margin-bottom: 3rem;
            }

            .who-we-are-image, .about-image {
                margin-bottom: 3rem;
            }

            .steps-line {
                left: 20px;
            }

            .step-number {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            
            
            .hero {
                min-height: auto;
                padding-top: 100px;
                height: auto;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .mv-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step {
                flex-direction: column;
                gap: 1rem;
            }

            .steps-line {
                left: 20px;
                height: calc(100% - 40px);
                top: 40px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 4rem 0;
            }

            .product-card, .feature-card {
                padding: 1.5rem;
            }

            .mv-card {
                padding: 2rem;
            }
        }


        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
          }
          
          .bg-video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
          }
          
          .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(10, 20, 40, 0.3);
            z-index: 1;
          }
          
          .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: slideFade 1.4s ease forwards;
            opacity: 0;
            transform: translateY(30px);
          }
          
          .subtitle {
            font-size: 0.9rem;
            color: #e69009;
            margin-bottom: 12px;
            letter-spacing: 1px;
          }
          
          .headline {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 20px;
          }
          
          .description {
            font-size: 1rem;
            color: #ddd;
            margin-bottom: 30px;
            line-height: 1.6;
          }
          
          .buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
          }
          
          .butt {
            background: #e69009;
            padding: 12px 24px;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
          }
          
          .butt:hover {
            background: #e69009;
          }
          
          .but-link {
            color: #ffffffcc;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: 0.3s;
            padding: 12px 0;
          }
          
          .but-link:hover {
            color: #fff;
            border-color: #fff;
          }
          
          @keyframes slideFade {
            to {
              opacity: 1;
              transform: translateY(0);
            }
          }
          
          /* 🔸 Responsive Styles */
          @media (max-width: 768px) {
            .headline {
              font-size: 2rem;
            }
          
            .description {
              font-size: 0.95rem;
            }
          
            .butt, .but-link {
              font-size: 0.9rem;
              padding: 10px 20px;
            }
          }
          

          
          .category-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            /* max-width: 1200px; */
            margin-top: 30px;
            margin-bottom: 30px;
        }
      
          .category-card {
            position: relative;
            width: 250px;
            height: 320px;
            overflow: hidden;
          }
      
          .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-left-radius: 100% 80%;
  border-top-right-radius: 100% 80%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
            transition: transform 0.3s ease;
          }
      
          .category-card:hover img {
            transform: scale(1.05);
          }
      
          .label {
            position: absolute;
            right: -30px;
            top: 74%;
            transform: translateY(-50%) rotate(90deg);
            background-color: #f59e0b;
            color: white;
            padding: 10px 20px;
            font-weight: bold;
            font-size: 14px;
            border-radius: 5px;
            white-space: nowrap;
          }
      
          @media (max-width: 768px) {
            .category-card {
              width: 200px;
              height: 260px;
            }
      
            .label {
              font-size: 12px;
              padding: 8px 16px;
            }
          }
      
          @media (max-width: 480px) {
            .category-card {
              width: 100%;
              max-width: 300px;
            }
          }


          .order-section {
padding: 30px;
margin: 0 auto;
            text-align: center;
          }
      
          .order-section h3 {
            color: black;
            font-size: 38px;
            margin-bottom: 70px;
          }
      
          .steps-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
          }
      
          .step {
            flex: 1 1 180px;
            max-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
          }
      
          .step img {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
          }
      
          .step-title {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 5px;
          }
      
          .step-desc {
            font-size: 14px;
            color: #333;
          }
      
          .line {
            height: 5px;
            background-color: #f59e0b;
            width: 200px;
            position: absolute;
            top: 25px;
            right: -160px;
            z-index: 1;
          }
      
          .step:last-child .line {
            display: none;
          }
      
          @media (max-width: 768px) {
            .steps-container {
              flex-direction: column;
              align-items: center;
            }
      
            .step {
              max-width: 100%;
            }
      
            .line {
              display: none;
            }
          }







        
          



    



    .promo-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #111;
        color: white;
        min-height: 70vh;
        padding: 40px 60px;
        box-sizing: border-box;
        flex-wrap: wrap;
        background-image: url(images/mid\ \(1\).png);
        background-size: contain;
      }
  
      .promo-content {
        max-width: 400px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        padding: 30px;
      }
  
      .promo-title {
        font-size: 36px;
        line-height: 1.4;
        margin-bottom: 20px;
      }
  
      .promo-link {
        text-decoration: none;
        font-size: 14px;
        color: #fff;
        border-bottom: 1px solid #fff;
        transition: opacity 0.3s ease;
      }
  
      .promo-link:hover {
        opacity: 0.7;
      }
  
      .promo-image-wrapper {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      .promo-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        object-fit: contain;
      }
  
      @media (max-width: 768px) {
        .promo-section {
          flex-direction: column;
          padding: 30px 20px;
          text-align: center;
        }
  
        .promo-content {
          border: none;
          padding: 0;
          margin-bottom: 30px;
        }
  
        .promo-title {
          font-size: 28px;
        }
      }
























      /* headings h2  */

      .heading2 {
        position: relative;
      padding-top:20px ;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        box-sizing: border-box;
      }
      


.order-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
}
      .heading2 h2 {
        font-size: 2.5rem;
        color: #ec7b11;
        text-align: center;
        margin-bottom: 2rem;
      }
      
      
      @media (max-width: 768px) {
        .heading2 h2 {
          font-size: 1.8rem;
        }
      }
      
      

      /* Product Page Specific Styles */
.pro-hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.pro-hero .container {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.pro-hero-content {
    flex: 1;
    padding-right: 50px;
    position: relative;
    z-index: 2;
}

.pro-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
    font-weight: 800;
}

.pro-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
    max-width: 600px;
}

.pro-hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.pro-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* ✨ NEW ADDITION */
    max-width: 450px;
    width: 100%;
    margin: 0 auto; /* center it on smaller screens */
}


.pro-hero-image:hover .pro-image-container {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 40px 80px rgba(236, 123, 17, 0.2);
}

.pro-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.pro-intro {
    padding: 50px 20px;
    background-color: #f9f9f9;
    position: relative;
}

.pro-intro-details {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap; /* for mobile wrapping */
}

.pro-description {
    flex: 1;
    min-width: 250px;
}

.pro-highlights {
    flex: 1;
    min-width: 250px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* force 2x2 grid */
    gap: 20px;
}

.pro-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.pro-section-title span {
    color: var(--primary);
}

.pro-section-title.center {
    text-align: center;
    display: block;
}

.pro-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
    border-radius: 2px;
}

.pro-section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.pro-section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

.pro-section-subtitle.center {
    display: block;
}

.pro-description {
    max-width: 800px;
    margin-bottom: 50px;
}

.pro-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    /* margin-top: 50px; */
}

.pro-highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pro-highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 123, 17, 0.1);
}

.pro-highlight-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.pro-highlight-item:hover i {
    transform: scale(1.2);
}

.pro-highlight-item img {
    transition: transform 0.3s ease;
    margin-top: 25px;
  }
  
  .pro-highlight-item:hover img {
    transform: scale(1.2);
  }
  

.pro-highlight-item h3 {
    font-size: 1.2rem;
    color: #333;
}

.pro-details {
    padding: 100px 20px;
    background-color: white;
}

.pro-details-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pro-details-content {
    flex: 1;
}

.pro-details-image {
    flex: 1;
}

.pro-details-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.pro-details-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pro-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(236, 123, 17, 0.3);
}

.pro-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pro-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(236, 123, 17, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pro-feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pro-feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.pro-feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.pro-gallery {
    padding: 30px 20px;
    background-color: #f9f9f9;
}

.pro-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pro-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    aspect-ratio: 1/1;
}

.pro-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.pro-gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(236, 123, 17, 0.9), transparent);
    color: white;
    transition: all 0.3s ease;
}

.pro-gallery-item:hover .pro-gallery-overlay {
    bottom: 0;
}

.pro-gallery-item:hover img {
    transform: scale(1.1);
}

.pro-gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.pro-specs {
    padding: 50px 20px;
    background-color: white;
}

.pro-specs-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pro-specs-image {
    flex: 1;
}

.pro-specs-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.pro-specs-content {
    flex: 1;
}

.pro-specs-table {
    width: 100%;
}

.pro-spec-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pro-spec-row:last-child {
    border-bottom: none;
}

.pro-spec-name {
    flex: 1;
    font-weight: 600;
    color: #333;
}

.pro-spec-value {
    flex: 1;
    text-align: right;
    color: #666;
}

.pro-cta-section {
    padding: 100px 20px;
    background: #f59e0b;
    color: white;
}

.pro-cta-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pro-cta-content {
    flex: 1;
}

.pro-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: white;
}

.pro-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.pro-cta-btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.pro-cta-image {
    flex: 1;
}

.pro-cta-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.pro-faq {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.pro-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pro-faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: white;
}

.pro-faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pro-faq-question:hover {
    background: rgba(236, 123, 17, 0.05);
}

.pro-faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #333;
}

.pro-faq-question i {
    color: var(--primary);
    transition: all 0.3s ease;
}

.pro-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.pro-faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

.pro-faq-item.active .pro-faq-question {
    background: rgba(236, 123, 17, 0.1);
}

.pro-faq-item.active .pro-faq-question i {
    transform: rotate(180deg);
}

.pro-faq-item.active .pro-faq-answer {
    max-height: 500px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pro-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .pro-hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .pro-hero-image {
        width: 80%;
    }
    
    .pro-details-container,
    .pro-specs-container,
    .pro-cta-container {
        flex-direction: column;
    }
    
    .pro-details-content,
    .pro-details-image,
    .pro-specs-image,
    .pro-specs-content,
    .pro-cta-content,
    .pro-cta-image {
        width: 100%;
    }
    
    .pro-details-image,
    .pro-specs-image,
    .pro-cta-image {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .pro-hero,
    .pro-intro,
    .pro-details,
    .pro-gallery,
    .pro-specs,
    .pro-cta-section,
    .pro-faq {
        padding: 60px 20px;
    }
    
    .pro-highlights {
        grid-template-columns: 1fr 1fr;
    }
    
    .pro-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pro-highlights {
        grid-template-columns: 1fr;
    }
    
    .pro-spec-row {
        flex-direction: column;
    }
    
    .pro-spec-value {
        text-align: left;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .pro-hero .container {
      flex-direction: column;
      text-align: center;
    }
  
    .pro-hero-content {
      padding-right: 0;
      margin-bottom: 40px;
    }
  
    .pro-image-container {
      max-width: 90%;
    }
  }
  

  @media (max-width: 768px) {
    .pro-intro-details {
      flex-direction: column;
    }
  }
  

  .top-ban {
      background: url('images/dtf-printing.jpg') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      color: white;
    }

    .top-ban-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }

    .top-ban-content {
      position: relative;
      z-index: 2;
    }

    .top-ban-title {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .top-ban-btn {
      display: inline-block;
      padding: 12px 30px;
      background: white;
      color: black;
      text-decoration: none;
      font-weight: bold;
      border-radius: 30px;
      transition: 0.3s ease;
    }

    .top-ban-btn:hover {
      background: #333;
      color: white;
    }

    @media (max-width: 768px) {
      .top-ban-title {
        font-size: 2rem;
      }

      .top-ban-btn {
        padding: 10px 20px;
      }
    }