/* Navbar new */ 
   
.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #084e8b;
    color: #fe0000;
    font-size: 22px;
    padding: 14px 16px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect */
.call-btn:hover {
    background: #054073;
    transform: scale(1.1);
}

/* Pulsing animation */
.call-btn::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(40, 63, 167, 0.4);
    z-index: -1;
    animation: pulse 1.5s infinite;
}

/* Animation keyframes */
@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .call-btn {
        bottom: 510px;
        right: 5px;
        font-size: 18px;
        padding: 12px;
    }
    .call-btn::after {
        width: 50px;
        height: 50px;
    }
}







 /* Header Styles */
        header {
            background-color: #000;
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            padding: 0 15px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
            max-width: 150px; /* Prevent logo from being too wide */
        }

        /* Mobile Navigation Toggle - MUST HAVE THESE STYLES */
        .nav-toggle {
            display: none; /* Hidden on desktop by default */
            flex-direction: column;
            justify-content: center;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 100%;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hamburger to X animation */
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Navigation Menu - MUST HAVE THESE STYLES */
        .nav-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: #000;
            transform: translateX(-100%); /* Hidden off-screen by default */
            transition: transform 0.3s ease;
            overflow-y: auto;
            z-index: 999;
            padding: 20px 0;
        }

        .nav-menu.active {
            transform: translateX(0); /* Slide in when active */
        }

        .nav-links {
            list-style: none;
        }

        .nav-links li {
            border-bottom: 1px solid #333;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
            font-size: 16px;
        }

        .nav-links a:hover {
            background-color: #0066cc;
        }

        .nav-links i {
            margin-right: 15px;
            width: 20px;
            text-align: center;
            font-size: 18px;
        }

        /* Desktop Navigation - Hidden on Mobile */
        .desktop-nav {
            display: flex;
        }

        .desktop-nav-links {
            display: flex;
            list-style: none;
        }

        .desktop-nav-links li {
            position: relative;
        }

        .desktop-nav-links a {
            display: block;
            padding: 25px 15px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .desktop-nav-links a:hover {
            background-color: #0066cc;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .desktop-nav-links a {
                padding: 25px 12px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            /* Hide desktop nav on mobile */
            .desktop-nav {
                display: none;
            }
            
            /* Show mobile toggle on mobile */
            .nav-toggle {
                display: flex;
            }
            
            /* Adjust header height for mobile */
            body {
                padding-top: 60px;
            }
            
            header {
                padding: 0 15px;
            }
            
            .navbar {
                height: 60px;
            }
            
            .nav-menu {
                top: 60px;
                height: calc(100vh - 60px);
            }
            
            .logo img {
                height: 35px;
            }
        }

        /* Prevent body scroll when menu is open */
        body.no-scroll {
            overflow: hidden;
        }






















 
 
 
 /* Featers Products starts        */
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 10px;
            font-size: 26px;
            color: #0066cc;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #0066cc;
            margin: 10px auto;
        }

        

        /* Horizontal Split Card */
        .split-card {
            display: flex;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .split-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            flex: 1;
            min-height: 400px;
            background-size: cover;
            background-position: center;
            
        }

        .card-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-badge {
            display: inline-block;
            background: #d40000;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .card-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: #0066cc;
            font-weight: 700;
        }

        .card-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .card-description {
            font-size: 16px;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .card-features {
            margin: 20px 0;
        }

        .card-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .card-features i {
            color: #0066cc;
            margin-right: 10px;
        }

        .card-cta {
            margin-top: 25px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            text-decoration: none;
            font-size: 16px;
        }

        .btn:hover {
            background-color: #0052a3;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #0066cc;
            color: #0066cc;
            margin-left: 10px;
        }

        .btn-outline:hover {
            background: #0066cc;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .split-card {
                flex-direction: column;
            }
            
            .card-image {
                min-height: 300px;
                order: 1;
            }
            
            .card-content {
                order: 2;
            }
        }

        @media (max-width: 768px) {
            .card-content {
                padding: 30px 25px;
            }
            
            .card-title {
                font-size: 24px;
            }
            
            .card-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .card-content {
                padding: 25px 20px;
            }
            
            .card-title {
                font-size: 22px;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
                text-align: center;
            }
            
            .btn-outline {
                margin-left: 0;
            }
        }

        /* Animation */
        .split-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }

        .split-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
    





        /* Form style */    
       
        /* Contact Form Section */
        .contact-section {
            background: white;
            padding: 10px 0;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-form {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 5px;
            gap: 20px;
        }

        .form-group {
            flex: 1;
            min-width: 200px;
            margin-bottom: 5px;
        }

        .form-group.full-width {
            flex: 1 0 100%;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
            font-size: 15px;
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            transition: border-color 0.3s, box-shadow 0.3s;
            background-color: #fafafa;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
            background-color: white;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .form-submit {
            text-align: center;
            margin-top: 10px;
        }

        .btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.2s;
            text-decoration: none;
            font-size: 16px;
            min-width: 180px;
        }

        .btn:hover {
            background-color: #0052a3;
            transform: translateY(-2px);
        }

        .btn:active {
            transform: translateY(0);
        }

        /* Form Validation Styles */
        .form-input:invalid:not(:focus):not(:placeholder-shown) {
            border-color: #d40000;
        }

        .form-input:valid:not(:focus):not(:placeholder-shown) {
            border-color: #00a650;
        }

        .required::after {
            content: " *";
            color: #d40000;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .form-group {
                min-width: 100%;
            }
            
            .section-title {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .contact-form {
                padding: 0 15px;
            }
            
            .form-input, .form-select, .form-textarea {
                padding: 10px 12px;
            }
            
            .btn {
                width: 100%;
                padding: 12px;
            }
        }






/* main css */


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        
/* Banner Carousel */
.banner-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 5px;
    background-color: #000; /* fallback */
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    background-size: contain;  /* Desktop: show full image */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;    /* black bars */
}

/* Mobile view */
@media (max-width: 768px) {
    .banner-carousel {
        height: 150px; /* Fixed mobile banner height */
    }

    .carousel-slide {
        background-size: cover;   /* Mobile: fill box, allow cropping */
        background-position: center;
    }
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.395);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: white;
}

.cta-button {
            display: inline-block;
            background-color: #0066cc;
            color: #fff;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }


       
        
        /* Products Section */
        .products {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 10px;
            font-size: 26px;
        }
        
        .product-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-image1 {
    background-image: url('../assets/images/p1.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}
        .product-image2 {
    background-image: url('../assets/images/p2.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}
        .product-image3 {
    background-image: url('../assets/images/p3.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}
        .product-image4 {
    background-image: url('../assets/images/p4.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}

        .product-image5 {
    background-image: url('../assets/images/p5.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}

        .product-image6 {
    background-image: url('../assets/images/p6.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}

        .product-image7 {
    background-image: url('../assets/images/p7.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}

        .product-image8 {
    background-image: url('../assets/images/p8.png');
    background-size: cover; /* This makes the image cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #0066cc;
}
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .product-info p {
            margin-bottom: 15px;
            color: #666;
            font-size: 14px;
        }
        
        .product-price {
            font-weight: bold;
            font-size: 18px;
            color: #000;
        }
        
        /* Featured Section */
        .featured {
            padding: 80px 20px;
            background-color: #000;
            color: #fff;
            text-align: center;
        }
        
        .featured-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .featured-content p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        /* Footer */
        footer {
            background-color: #111;
            color: #fff;
            padding: 50px 20px 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ccc;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #fff;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #0066cc;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #999;
            font-size: 14px;
        }
        
        /* Responsive Styles */
         @media (max-width: 768px) {
           /*  .banner-carousel {
                
            height: 150px;
  
                
        
            } */
            
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
           
        }


        /* sticky call back pop up */

        /* Sticky Callback Button */
        .sticky-callback {
            position: fixed;
            margin-left: 10px;
            top: 80%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: left center;
            z-index: 1000;
        }

        .callback-btn {
            background: linear-gradient(135deg, #0066cc, #004d99);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 0 8px 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
        }

        .callback-btn:hover {
            background: linear-gradient(135deg, #0052a3, #003d7a);
            /* transform: rotate(-90deg) translateX(5px); */
        }

        .callback-btn i {
            margin-right: 8px;
            transform: rotate(90deg);
        }

        /* Popup Form Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Popup Form */
        .popup-form {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            padding: 2px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .popup-overlay.active .popup-form {
            transform: scale(1);
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }

        .popup-title {
            font-size: 24px;
            color: #0066cc;
            font-weight: 700;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            color: #777;
            cursor: pointer;
            transition: color 0.3s;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            color: #d40000;
            background: #f5f5f5;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 1px;
            font-weight: 550;
            color: #444;
            font-size: 13px;
        }

        .form-label.required::after {
            content: " *";
            color: #d40000;
        }

        .form-input, .form-select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 13px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }

        .form-submit {
            text-align: center;
            margin-top: 5px;
        }

        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            font-size: 16px;
            width: 50%;
        }

        .btn:hover {
            background-color: #0052a3;
        }

        .form-note {
            font-size: 14px;
            color: #777;
            margin-top: 15px;
            text-align: center;
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .sticky-callback {
                top: auto;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%) rotate(0deg);
                width: 100%;
            }

            .callback-btn {
                border-radius: 8px 8px 0 0;
                min-width: auto;
                width: 100%;
                transform: rotate(0deg);
                padding: 15px;
            }

            .callback-btn:hover {
                transform: translateY(-5px);
            }

            .callback-btn i {
                transform: rotate(0deg);
            }

            .popup-form {
                padding: 20px;
                width: 95%;
            }

            .popup-title {
                font-size: 20px;
            }
        }

        /* Demo content to show scrolling */
        .demo-content {
            padding: 40px 0;
            text-align: center;
        }

        .demo-content h2 {
            margin-bottom: 20px;
            color: #0066cc;
        }

        .demo-content p {
            max-width: 800px;
            margin: 0 auto 20px;
        }