/* Dynamic Background */
.dynamic-bg {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #295F98, #89c6ff);
}

header {
    z-index: 2;
    position: relative;
    color: white;
}

#dynamicCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.whatsapp-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card i {
    color: #295481;
}
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-footer .btn-primary {
    background-color: #28a745;
    border: none;
}

.modal-footer .btn-primary:hover {
    background-color: #218838;
}
.btn-annual {
    background-color: #295481;
    border-color: #4991dd;
    color: white;
}

.btn-annual:hover {
    background-color: #82afef;
    border-color: #82afef;
}
/* Banner Section Styles */
.find-location-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    color: white;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #47d147 0%, #2b6e2b 100%);
}

/* Animated Background */
.find-location-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0));
    animation: pulse 6s infinite linear;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Button Style */
.btn-find-location {
    background-color: white;
    color: #47d147;
    font-weight: bold;
    border: 2px solid white;
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-find-location:hover {
    background-color: #47d147;
    color: white;
}
/* Banner Section Styles */
.find-location-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    color: white;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.5s ease-in-out; /* Smooth transition for dynamic colors */
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-top: 20px;
}
/* Top Content */
.banner-top-content {
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.banner-top-content h1 {
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

/* Bottom Content */
.banner-bottom-content {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.banner-bottom-content p {
    font-size: 1.2rem;
    margin: 0;
}

/* Vertical Line Animation */
#animated-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.animated-line {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: move-lines 4s linear infinite;
    opacity: 0.5;
}

@keyframes move-lines {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Fading Background Text */
.jumbling-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    display: flex;
    gap: 1rem; /* Add space between letters */
    animation: jumble-text 8s infinite;
}

.jumbling-text span {
    animation: fade-jumble 4s infinite;
    opacity: 0;
}

.jumbling-text span:nth-child(even) {
    animation-delay: 0.5s;
}

.jumbling-text span:nth-child(odd) {
    animation-delay: 1s;
}

@keyframes fade-jumble {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes jumble {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(20deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

.footertxt{
    font-size:small;
}
.footer ul li a:hover {
    text-decoration: underline;
    color: #47d147;
}

.btn-primary {
    background-color: #47d147;
    border-color: #47d147;
}

.btn-primary:hover {
    background-color: #2b6e2b;
    border-color: #2b6e2b;
}
/* Remove underline and style links */
.blog-link {
    text-decoration: none; /* Remove underline */
    color: white; /* Default color for links */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
}

/* Hover effect */
.blog-link:hover {
    color: #ff9100; /* Change to a bright color on hover */
    transform: scale(1.1); /* Slightly enlarge the link on hover */
    text-decoration: underline; /* Optional underline effect */
}
#qrResult img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
}
#qrForm .btn-primary {
    background-color: #007bff;
    border-color: #0056b3;
}

        /* Hardware Section Styling */
        .hardware-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hardware-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(41, 84, 129, 0.1), transparent);
            border-radius: 50%;
        }

        .hardware-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(71, 209, 71, 0.1), transparent);
            border-radius: 50%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .section-header p {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Hardware Card Styling */
        .hardware-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .hardware-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1e3c72, #2a5298, #d4af37);
            transform: scaleX(0);
            transition: transform 0.5s ease;
            transform-origin: left;
        }

        .hardware-card:hover::before {
            transform: scaleX(1);
        }

        .hardware-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .hardware-image {
            position: relative;
            height: 250px;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hardware-image i {
            font-size: 5rem;
            background: linear-gradient(135deg, #1e3c72 0%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.4s ease;
        }

        .hardware-card:hover .hardware-image i {
            transform: scale(1.15);
        }

        .stock-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
        }

        .stock-badge.limited {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
        }

        .stock-badge.out {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
        }

        .hardware-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .hardware-category {
            color: #64748b;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .hardware-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .hardware-specs {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }

        .hardware-specs li {
            padding: 8px 0;
            color: #475569;
            font-size: 0.9rem;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
        }

        .hardware-specs li:last-child {
            border-bottom: none;
        }

        .hardware-specs li i {
            color: #295481;
            margin-right: 10px;
            font-size: 0.8rem;
            width: 16px;
        }

        .hardware-footer {
            padding: 0 25px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .hardware-price {
            display: flex;
            flex-direction: column;
        }

        .price-label {
            font-size: 0.75rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .price-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e3c72 0%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-contact-hardware {
            background: linear-gradient(135deg, #295481 0%, #4991dd 100%);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(41, 84, 129, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-contact-hardware:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(41, 84, 129, 0.4);
            background: linear-gradient(135deg, #1e3c72 0%, #295481 100%);
        }

        .btn-contact-hardware i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .btn-contact-hardware:hover i {
            transform: translateX(3px);
        }

        /* Contact Modal Styling */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .modal-header {
            background: linear-gradient(135deg, #295481 0%, #4991dd 100%);
            color: white;
            border-radius: 20px 20px 0 0;
            padding: 25px 30px;
        }

        .modal-header h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-body {
            padding: 30px;
        }

        .form-label {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: #295481;
            box-shadow: 0 0 0 0.2rem rgba(41, 84, 129, 0.15);
        }

        .modal-footer {
            padding: 20px 30px;
            border-top: 1px solid #e2e8f0;
        }

        .btn-submit-inquiry {
            background: linear-gradient(135deg, #47d147 0%, #2b6e2b 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-submit-inquiry:hover {
            background: linear-gradient(135deg, #2b6e2b 0%, #1f5020 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(71, 209, 71, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .hardware-image {
                height: 200px;
            }

            .hardware-image i {
                font-size: 3.5rem;
            }
        }
