/* Base Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #ff6b00;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #fff;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
    --primary-color: #2563eb;
    --primary-light: #3b82f6;
    --secondary-color: #1e40af;
    --accent-color: #ec4899;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --gray-color: #64748b;
    --white: #ffffff;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar_main_container {
    padding: 15px 0;
}

.company_logo img {
    height: 50px;
    width: auto;
    
}

.company_logo img:hover {
    transform: scale(1.05);
}

.nav-links ul {
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-weight: 500;
    padding: 10px 0;
    transition: var(--transition);
    color: var(--dark-color);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a i {
    margin-left: 5px;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;

}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0 15px;
    position: relative;
}

.dropdown-menu li a {
    padding: 8px 15px;
    display: block;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
}

.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.dropdown-item:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
   margin-top: -15px;
}

/* Improved Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    /* Changed to column layout */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    padding: 0;
    position: relative;
    transition: background-color 0.2s ease;
}

.dropdown-menu li a {
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--dark-color);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    /* Changed from -12px to 0 for better alignment */
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0 8px 8px 8px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    /* Changed to column layout */
}

.dropdown-item:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(5px);
}

/* Arrow indicators */
.dropdown>a>i {
    transition: transform 0.2s ease;
}

.dropdown:hover>a>i {
    transform: rotate(180deg);
}

.dropdown-item>a>i {
    transform: rotate(-90deg);
    font-size: 0.8rem;
}

/* Divider between dropdown items */
.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Active state for current page */
.nav-links li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.imgcontainer{
    height :650px;
    width: 100%;
background-image:url(IMG_0451.JPG) ;
background-position: center center;
background-repeat: no-repeat;
background-size: 100% 100%;
animation-name: myani;
animation-duration: 20s;
animation-timing-function:ease-in-out;
animation-iteration-count: infinite;
border-radius: px;
margin-bottom: 50px;
overflow: hidden;
}
@keyframes myani{
    0%{background-image: url(mx\ 2.png);}
    35%{background-image: url(marko\ img.png); }
    75%{background-image: url(AMPTECH\ INDIA.png);}
}
/* Premium Showcase Section */
#showcase_container {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 40px auto;
    overflow: hidden;
    border-radius: 6px;
}

.showcase_main_container {
    display: flex;
    flex-direction: column;
    padding: 5vw;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(255, 255, 255);
    background: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    gap: 20px;
    max-width: 100%;
    width: 90%;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.showcase_main_container:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.h-primary {
    font-family: "Noto Sans";
    font-size: 85px;
    padding: 12px;
    color: #9b0202;
    font-weight: 700;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 20px 0;
}

.h-primary::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    
}

.h-secondary {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 15px 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #333;
    text-align: center;
}

#showcase_container p {
    font-family: "Roboto";
    width: 70%;
    text-align: center;
    margin-bottom: 50px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
    font-weight: 400;
    max-width: 900px;
}

/* Slider Container */
h2 {
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    margin-bottom: 50px;
    margin-top: -20px;
    font-size: 42px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}


/* Slider Container */
.product-slider-container {
    max-width: 1400px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    /* Added padding to make space for arrows */
}

.product-slider {
    display: flex;
    transition: transform var(--transition-speed) ease;
    width: 100%;
}

/* Individual Product Slide */
.product {
    min-width: 300px;
    margin: 0 15px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: black;
    text-align: center;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.arrow:hover {
    background: #f0f0f0;
    transform: translateY(-50%) scale(1.1);
}

.arrow i {
    font-size: 1rem;
    color: var(--dark-color);
}

.prev {
    left: 5px;
}

.next {
    right: 5px;
}

/* Auto-scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 8));
    }
}

.auto-scroll {
    animation: scroll 40s linear infinite;
    width: calc(300px * 16);
    /* Double the items for seamless looping */
}





/* Features Section */
.features-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-section-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1800px;
    margin: 16px auto;
    padding: 0 20px;
}

.featurecardheading {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    color: black;
    position: relative;
    margin-bottom: 20px;
    margin-top: 50px;
}

.featurecardheading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features-section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 55px;
    padding: 0 20px;
}

.features-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 350px;
    min-height: 380px;
    border: 1px solid var(--light-blue);
    padding: 30px 25px;
    border-radius: 16px;
    background-color: var(--light-blue);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #6c757d18;
}

.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.features-card-images {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
}

.features-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-color);
    max-width: 280px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Illustration Section */
.illustration-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(to bottom, #ffffff, #f0f4f8);
}

.illustration-section:nth-child(even) {
    background: linear-gradient(to bottom, #f0f4f8, #ffffff);
}

.Illustraion-container {
    display: flex;
    align-items: center;
    gap: 260px;
    margin-bottom: 60px;
    position: relative;
}

.Illustration-image {
    flex: 1;
    position: relative;
}

.Illustration-image video {
    width: 500px;
    height: 380px;
    margin-top: 40px;
}

.Illustration-image img {
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.Illustration-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.Illustration-pargraph {
    flex: 1;
}

.Illustration-pargraph h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #050505;
    position: relative;
    padding-bottom: 15px;
}



.illustration-section p {
    font-size: 20px;
    color: #444;
    line-height: 1.8;
}

.Illustration2pargraph p {
    line-height: 2.2;
}

/* Video styling */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 60px;
    color: white;
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Checkmark list */
.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 20px;
}

.feature-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #080808;
    font-weight: bold;
    font-size: 24px;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Counter Styles */
        .counters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 60px;
            margin-top: 30px;
        }
        
        .counter-item {
           
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            width: 380px;
           
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        
        .counter-item .number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #060606;
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .counter-item .number .plus {
            font-size: 2.5rem;
            margin-left: 5px;
            color: #870808;
        }
        
        .counter-item .label {
            font-size: 1.2rem;
            color: #64748b;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }
    
        
        h1 {
            text-align: center;
            font-size: 2.8rem;
            color: #000000;
            margin: 30px 0;
            padding-bottom: 15px;
            position: relative;
            margin-top: 60px;
        }
        
        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2c3e50);
            border-radius: 2px;
        }
        
        .slider-section {
            margin: 8px 0;
            padding: 0px 0;
            width: 100%;
        }
        
        .slider {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 25px 0;
            border-radius: 12px;
           
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        
        .slider-items {
            display: flex;
            width: max-content;
        }
        
        .slider-items img {
            height: 70px;
            width: auto;
            margin: 0 30px;
            object-fit: contain;
            filter: grayscale(30%);
            transition: all 0.3s ease;
        }
        
        .slider-items img:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }
        
        /* First slider - right to left */
        .slider-1 .slider-items {
            animation: scroll-left 40s linear infinite;
        }
        
        /* Second slider - left to right */
        .slider-2 .slider-items {
            animation: scroll-right 35s linear infinite;
        }
        
        /* Third slider - right to left (slower) */
        .slider-3 .slider-items {
            animation: scroll-left 45s linear infinite;
        }
        
        @keyframes scroll-left {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        @keyframes scroll-right {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0%);
            }
        }
        
        .controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .control-btn {
            background: #2c3e50;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .control-btn:hover {
            background: #3498db;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .instructions {
            background: white;
            padding: 25px;
            border-radius: 12px;
            margin-top: 40px;
            max-width: 800px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .instructions h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .instructions p {
            line-height: 1.6;
            color: #34495e;
            margin-bottom: 15px;
        }
        
        .instructions ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .instructions li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
      





 .content {
            flex: 1;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .footer {
           
            color: #060606;
            padding: 3rem 0 1.5rem;
            margin-top: auto;
        }
        
        .container5 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .cols {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }
        
        @media (min-width: 768px) {
            .cols {
                width: 48%;
            }
        }
        
        .footer-col {
            margin-bottom: 2rem;
            width: 100%;
        }
        
        @media (min-width: 576px) {
            .footer-col {
                width: 48%;
            }
        }
        
        .footer-col h4 {
            font-size: 1.2rem;
            color: #080808;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #3498db;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-col ul li a {
            color: #070707;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .footer-col ul li a:hover {
            color: #3498db;
            padding-left: 8px;
        }
        
        .allsocial-links {
            display: flex;
            gap: 15px;
            margin-bottom: 1.5rem;
        }
        
        .allsocial-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            height: 40px;
            width: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #080808;
            transition: all 0.3s ease;
        }
        
        .allsocial-links a:hover {
            background-color: #3498db;
            transform: translateY(-3px);
        }
        
        .footerlogo img {
            max-width: 200px;
            height: auto;
           
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #95a5a6;
            font-size: 0.9rem;
        }
        /* ==================== MEDIA QUERIES ==================== */
/* ==================== LARGE SCREEN MEDIA QUERIES ==================== */

/* 2K Screens (2560px to 2999px) */
@media (min-width: 2560px) and (max-width: 2999px) {
    .container {
        max-width: 2000px;
        padding: 0 40px;
    }
    
    .navbar_main_container {
        padding: 25px 0;
    }
    
    .company_logo img {
        height: 70px;
    }
    
    .nav-links ul {
        gap: 40px;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .imgcontainer {
        height: 900px;
        margin-bottom: 80px;
    }
    
    .h-primary {
        font-size: 120px;
        margin: 40px 0;
    }
    
    .h-primary::after {
        width: 150px;
        height: 6px;
    }
    
    .h-secondary {
        font-size: 2.8rem;
    }
    
    #showcase_container p {
        font-size: 1.6rem;
        margin-bottom: 70px;
        line-height: 2;
        max-width: 1200px;
    }
    
    .showcase_main_container {
        padding: 8vw;
        gap: 40px;
    }
    
    .product-slider-container {
        max-width: 2200px;
        padding: 0 80px;
        margin: 70px auto;
    }
    
    .product {
        min-width: 450px;
        margin: 0 25px;
    }
    
    .product-image {
        height: 400px;
    }
    
    .product-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .product-description {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .arrow {
        width: 60px;
        height: 60px;
    }
    
    .arrow i {
        font-size: 1.5rem;
    }
    
    .features-section {
        padding: 120px 40px;
        max-width: 2200px;
    }
    
    .section-title {
        font-size: 4rem;
        margin-bottom: 25px;
    }
    
    .section-title::after {
        width: 120px;
        height: 6px;
        bottom: -12px;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
        max-width: 1000px;
    }
    
    .featurecardheading {
        font-size: 3.5rem;
        margin: 80px 0 40px;
    }
    
    .featurecardheading::after {
        width: 120px;
        height: 6px;
        bottom: -15px;
    }
    
    .features-section-content {
        gap: 80px;
        padding: 0 40px;
    }
    
    .features-card {
        max-width: 500px;
        min-height: 500px;
        padding: 50px 40px;
        gap: 30px;
    }
    
    .features-card-images {
        height: 100px;
        width: 100px;
        font-size: 2.5rem;
    }
    
    .features-card h3 {
        font-size: 2rem;
    }
    
    .features-card p {
        font-size: 1.2rem;
        max-width: 380px;
        line-height: 1.8;
    }
    
    .Illustraion-container {
        gap: 400px;
        margin-bottom: 100px;
    }
    
    .Illustration-image video {
        width: 700px;
        height: 500px;
        margin-top: 60px;
    }
    
    .Illustration-image img {
        width: 500px;
    }
    
    .Illustration-pargraph h2 {
        font-size: 3.5rem;
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .illustration-section p {
        font-size: 1.6rem;
        line-height: 2.2;
    }
    
    .feature-list li {
        font-size: 1.6rem;
        padding-left: 50px;
        margin-bottom: 25px;
    }
    
    .feature-list li::before {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .counters {
        gap: 100px;
        margin-top: 60px;
    }
    
    .counter-item {
        width: 500px;
        padding: 60px 40px;
        border-radius: 30px;
    }
    
    .counter-item .number {
        font-size: 5rem;
        margin-bottom: 20px;
    }
    
    .counter-item .number .plus {
        font-size: 4rem;
    }
    
    .counter-item .label {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    h1 {
        font-size: 4rem;
        margin: 80px 0 50px;
        padding-bottom: 25px;
    }
    
    h1::after {
        width: 180px;
        height: 6px;
    }
    
    .slider {
        padding: 40px 0;
        border-radius: 20px;
    }
    
    .slider-items img {
        height: 120px;
        margin: 0 50px;
    }
    
    .controls {
        gap: 30px;
        margin-top: 40px;
    }
    
    .control-btn {
        padding: 18px 36px;
        font-size: 1.2rem;
        border-radius: 40px;
    }
    
    .instructions {
        padding: 40px;
        border-radius: 20px;
        margin-top: 60px;
        max-width: 1200px;
    }
    
    .instructions h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .instructions p {
        font-size: 1.2rem;
        margin-bottom: 25px;
        line-height: 1.8;
    }
    
    .instructions ul {
        padding-left: 30px;
        margin-bottom: 25px;
    }
    
    .instructions li {
        margin-bottom: 12px;
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 5rem 0 2rem;
    }
    
    .footer-col h4 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    .footer-col ul li {
        margin-bottom: 1.2rem;
    }
    
    .footer-col ul li a {
        font-size: 1.2rem;
    }
    
    .allsocial-links {
        gap: 20px;
        margin-bottom: 2rem;
    }
    
    .allsocial-links a {
        height: 60px;
        width: 60px;
        font-size: 1.5rem;
    }
    
    .footerlogo img {
        max-width: 280px;
    }
    
    .copyright {
        padding-top: 2.5rem;
        margin-top: 3rem;
        font-size: 1.1rem;
    }
}

/* 4K Screens (3000px and above) */
@media (min-width: 3000px) {
    .container {
        max-width: 2800px;
        padding: 0 60px;
    }
    
    .navbar_main_container {
        padding: 35px 0;
    }
    
    .company_logo img {
        height: 90px;
    }
    
    .nav-links ul {
        gap: 60px;
    }
    
    .nav-links li a {
        font-size: 1.5rem;
        padding: 20px 0;
    }
    
    .dropdown-menu {
        min-width: 320px;
        padding: 20px 0;
    }
    
    .dropdown-menu li a {
        font-size: 1.3rem;
        padding: 12px 30px;
    }
    
    .imgcontainer {
        height: 1100px;
        margin-bottom: 100px;
    }
    
    .h-primary {
        font-size: 150px;
        margin: 60px 0;
        letter-spacing: -2px;
    }
    
    .h-primary::after {
        width: 200px;
        height: 8px;
    }
    
    .h-secondary {
        font-size: 3.5rem;
    }
    
    #showcase_container p {
        font-size: 2rem;
        margin-bottom: 90px;
        line-height: 2.2;
        max-width: 1600px;
    }
    
    .showcase_main_container {
        padding: 10vw;
        gap: 60px;
    }
    
    .product-slider-container {
        max-width: 2800px;
        padding: 0 100px;
        margin: 100px auto;
    }
    
    .product {
        min-width: 550px;
        margin: 0 35px;
    }
    
    .product-image {
        height: 500px;
    }
    
    .product-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .product-description {
        font-size: 1.5rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .arrow {
        width: 80px;
        height: 80px;
    }
    
    .arrow i {
        font-size: 2rem;
    }
    
    .features-section {
        padding: 150px 60px;
        max-width: 2800px;
    }
    
    .section-title {
        font-size: 5rem;
        margin-bottom: 35px;
    }
    
    .section-title::after {
        width: 150px;
        height: 8px;
        bottom: -15px;
    }
    
    .section-subtitle {
        font-size: 2rem;
        max-width: 1200px;
        line-height: 1.6;
    }
    
    .featurecardheading {
        font-size: 4.5rem;
        margin: 100px 0 50px;
    }
    
    .featurecardheading::after {
        width: 150px;
        height: 8px;
        bottom: -20px;
    }
    
    .features-section-content {
        gap: 100px;
        padding: 0 60px;
    }
    
    .features-card {
        max-width: 600px;
        min-height: 600px;
        padding: 60px 50px;
        gap: 40px;
    }
    
    .features-card-images {
        height: 120px;
        width: 120px;
        font-size: 3rem;
    }
    
    .features-card h3 {
        font-size: 2.5rem;
    }
    
    .features-card p {
        font-size: 1.5rem;
        max-width: 450px;
        line-height: 1.8;
    }
    
    .Illustraion-container {
        gap: 500px;
        margin-bottom: 120px;
    }
    
    .Illustration-image video {
        width: 900px;
        height: 650px;
        margin-top: 80px;
    }
    
    .Illustration-image img {
        width: 650px;
    }
    
    .Illustration-pargraph h2 {
        font-size: 4.5rem;
        margin-bottom: 50px;
        padding-bottom: 30px;
    }
    
    .illustration-section p {
        font-size: 2rem;
        line-height: 2.4;
    }
    
    .feature-list li {
        font-size: 2rem;
        padding-left: 60px;
        margin-bottom: 30px;
    }
    
    .feature-list li::before {
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }
    
    .counters {
        gap: 120px;
        margin-top: 80px;
    }
    
    .counter-item {
        width: 600px;
        padding: 80px 50px;
        border-radius: 40px;
    }
    
    .counter-item .number {
        font-size: 6rem;
        margin-bottom: 25px;
    }
    
    .counter-item .number .plus {
        font-size: 5rem;
    }
    
    .counter-item .label {
        font-size: 2.2rem;
        letter-spacing: 2.5px;
    }
    
    h1 {
        font-size: 5rem;
        margin: 100px 0 60px;
        padding-bottom: 30px;
    }
    
    h1::after {
        width: 220px;
        height: 8px;
    }
    
    .slider {
        padding: 50px 0;
        border-radius: 25px;
    }
    
    .slider-items img {
        height: 150px;
        margin: 0 70px;
    }
    
    .controls {
        gap: 40px;
        margin-top: 50px;
    }
    
    .control-btn {
        padding: 22px 44px;
        font-size: 1.5rem;
        border-radius: 50px;
    }
    
    .instructions {
        padding: 50px;
        border-radius: 25px;
        margin-top: 80px;
        max-width: 1600px;
    }
    
    .instructions h2 {
        font-size: 2.8rem;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .instructions p {
        font-size: 1.5rem;
        margin-bottom: 30px;
        line-height: 1.8;
    }
    
    .instructions ul {
        padding-left: 40px;
        margin-bottom: 30px;
    }
    
    .instructions li {
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 6rem 0 3rem;
    }
    
    .footer-col h4 {
        font-size: 2.2rem;
        margin-bottom: 2.2rem;
    }
    
    .footer-col ul li {
        margin-bottom: 1.5rem;
    }
    
    .footer-col ul li a {
        font-size: 1.5rem;
    }
    
    .allsocial-links {
        gap: 25px;
        margin-bottom: 2.5rem;
    }
    
    .allsocial-links a {
        height: 70px;
        width: 70px;
        font-size: 1.8rem;
    }
    
    .footerlogo img {
        max-width: 350px;
    }
    
    .copyright {
        padding-top: 3rem;
        margin-top: 4rem;
        font-size: 1.3rem;
    }
}


/* Large devices (desktops, 1200px and up) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .h-primary {
        font-size: 70px;
    }
    
    .Illustraion-container {
        gap: 100px;
    }
    
    .Illustration-image video {
        width: 400px;
        height: 300px;
    }
    
    .counter-item {
        width: 300px;
        padding: 30px 20px;
    }
    
    .counter-item .number {
        font-size: 3rem;
    }
}

/* Medium devices (tablets, 992px and up) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .nav-links ul {
        gap: 15px;
    }
    
    .h-primary {
        font-size: 60px;
    }
    
    #showcase_container p {
        width: 85%;
    }
    
    .Illustraion-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .Illustration-image, 
    .Illustration-pargraph {
        flex: none;
        width: 100%;
    }
    
    .Illustration-image video {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
    
    .features-section-content {
        gap: 30px;
    }
    
    .features-card {
        max-width: 300px;
    }
    
    .counters {
        gap: 30px;
    }
    
    .counter-item {
        width: 220px;
        padding: 25px 15px;
    }
    
    .counter-item .number {
        font-size: 2.5rem;
    }
    
    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .navbar_main_container {
        position: relative;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        transition: 0.5s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown-item.active .dropdown-submenu {
        display: block;
    }
    
    .h-primary {
        font-size: 50px;
    }
    
    .h-secondary {
        font-size: 1.8rem;
    }
    
    #showcase_container {
        height: auto;
        padding: 100px 0 50px;
    }
    
    .showcase_main_container {
        padding: 30px 20px;
    }
    
    #showcase_container p {
        width: 100%;
        font-size: 16px;
    }
    
    .imgcontainer {
        height: 400px;
        margin-bottom: 30px;
    }
    
    h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .product {
        min-width: 250px;
        margin: 0 10px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .featurecardheading {
        font-size: 35px;
    }
    
    .counters {
        gap: 20px;
    }
    
    .counter-item {
        width: 100%;
        max-width: 250px;
    }
    
    .slider-items img {
        height: 60px;
        margin: 0 20px;
    }
    .footer-col {
                width: 70%;
                text-align: center;
                
            }
            .footer-col img {
                width: 150px;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

    
    .row {
        flex-direction: column;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
        overflow: hidden;
    }
    
    .company_logo img {
        height: 40px;
    }
    
    .h-primary {
        font-size: 38px;
        padding: 8px;
    }
    
    .h-primary::after {
        width: 60px;
    }
    
    .h-secondary {
        font-size: 1.5rem;
    }
    
    .imgcontainer {
        height: 300px;
        animation-duration: 10s;
    }
    
    .showcase_main_container {
        padding: 20px 15px;
    }
    
    .product-slider-container {
        padding: 0 30px;
    }
    
    .product {
        min-width: 220px;
    }
    
    .arrow {
        width: 30px;
        height: 30px;
    }
    
    .arrow i {
        font-size: 0.8rem;
    }
    .auto-scroll {
    animation: scroll 40s linear infinite;
    width: calc(200px * 16);
    }
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .featurecardheading {
        font-size: 28px;
    }
    
    .features-card {
        min-height: 320px;
        padding: 20px 15px;
    }
    
    .features-card-images {
        height: 60px;
        width: 60px;
        font-size: 1.5rem;
    }
    
    .features-card h3 {
        font-size: 1.2rem;
    }
    
    .Illustration-image video {
        height: 200px;
    }
    
    .Illustration-pargraph h2 {
        font-size: 1.8rem;
        margin-top: 15px;
    }
    
    .feature-list li {
        font-size: 16px;
        padding-left: 25px;
    }
    
    .counter-item {
        padding: 20px 15px;
    }
    
    .counter-item .number {
        font-size: 2rem;
    }
    
    .counter-item .label {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .slider-items img {
        height: 40px;
        margin: 0 15px;
    }
    
    .controls {
        flex-direction: column;
        align-items: center;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-col {
                width: 50%;
                text-align: center;
                
            }
            .footer-col img {
                width: 150px;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    .footer-col ul li a {
        font-size: 0.9rem;
    }
    
    .allsocial-links a {
        height: 35px;
        width: 35px;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Very small devices (320px and below) */
@media (max-width: 320px) {
    .h-primary {
        font-size: 32px;
    }
    
    .product {
        min-width: 200px;
    }
    
    .counter-item {
        padding: 15px 10px;
    }
    
    .counter-item .number {
        font-size: 1.8rem;
    }
    
    .feature-list li {
        font-size: 14px;
    }
      .footer-row {
                flex-direction: column;
                
            }
            
            .footer-col {
                width: 50%;
                text-align: center;
                
            }
            .footer-col img {
                width: 150px;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
        }
