:root {
    --primary-deep: #0B1622;
    --primary-dark: #0F1A2B;
    --primary-navy: #1A2C3E;
    --accent-blue: #2A7DE1;
    --accent-cyan: #00E5FF;
    --accent-teal: #00C8B0;
    --accent-electric: #3D5AFF;
    --text-light: #FFFFFF;
    --text-offwhite: #F0F4FA;
    --text-gray: #B0C0D0;
    --card-dark: #132435;
    --gradient-tech: linear-gradient(135deg, #2A7DE1, #00E5FF);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--primary-deep);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fixed Scroll Button */
.fixed-scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-tech);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-lg), 0 0 20px var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    transition: all 0.3s;
    animation: scrollBtnPulse 2s infinite;
}

@keyframes scrollBtnPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--accent-cyan);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px var(--accent-cyan), 0 0 40px var(--accent-blue);
    }
}

.fixed-scroll-btn:hover {
    transform: scale(1.15);
}

.fixed-scroll-btn i {
    font-size: 1.5rem;
    animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 22, 34, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.top-bar {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info span {
    color: var(--text-gray);
    white-space: nowrap;
}

.contact-info i {
    margin-right: 8px;
    color: var(--accent-cyan);
}

.support-247 {
    background: rgba(0, 229, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan) !important;
    font-weight: 600;
}

.user-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.user-actions a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.user-actions .signup {
    background: var(--gradient-tech);
    padding: 6px 18px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    cursor: pointer;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--accent-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(11, 22, 34, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(0, 229, 255, 0.1);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
        /* Hide in header on mobile, maybe add to menu later */
    }
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-tech);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(42, 125, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 125, 225, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent-cyan);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent-blue);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(42, 125, 225, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--primary-deep);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: var(--primary-deep);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    opacity: 0.4;
}

.aurora {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 2;
}

.aurora-1 {
    top: -100px;
    left: -100px;
    background: var(--accent-blue);
    animation: auroraMove1 20s infinite alternate;
}

.aurora-2 {
    bottom: -100px;
    right: -100px;
    background: var(--accent-cyan);
    animation: auroraMove2 25s infinite alternate;
}

@keyframes auroraMove1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(200px, 100px) scale(1.2);
    }
}

@keyframes auroraMove2 {
    0% {
        transform: translate(0, 0) scale(1.2);
    }

    100% {
        transform: translate(-200px, -150px) scale(1);
    }
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.hero .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pre-title {
    display: inline-block;
    background: rgba(42, 125, 225, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid var(--accent-blue);
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
    max-width: 550px;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 20px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
}

.trust-badges {
    display: flex;
    gap: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--accent-teal);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: rgba(0, 229, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

.floating-card {
    position: absolute;
    background: var(--card-dark);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.card-1 {
    top: 15%;
    left: 0;
    border-color: var(--accent-blue);
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 0;
    border-color: var(--accent-cyan);
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 20%;
    left: 15%;
    border-color: var(--accent-teal);
    animation: float3 8s ease-in-out infinite;
}

.card-4 {
    top: 30%;
    right: 15%;
    border-color: var(--accent-electric);
    animation: float4 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-15px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float4 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(42, 125, 225, 0.1);
    color: var(--accent-cyan);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-offwhite);
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-dark);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(42, 125, 225, 0.1), rgba(0, 229, 255, 0.1));
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.card-icon i {
    font-size: 2.2rem;
    color: var(--accent-cyan);
    transition: transform 0.3s;
}

.service-card:hover .card-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-offwhite);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--accent-teal);
}

.card-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.card-link:hover {
    gap: 12px;
}

/* Products Section */
.featured-products {
    padding: 100px 0;
    background: var(--primary-deep);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--card-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(42, 125, 225, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-tech);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
}

.product-badge.hot {
    background: linear-gradient(135deg, #FFB347, #FF8C42);
}

.product-badge.new {
    background: linear-gradient(135deg, #00B67A, #00C8B0);
}

.product-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image i {
    font-size: 5rem;
    color: rgba(0, 229, 255, 0.2);
    transition: transform 0.5s;
}

.product-card:hover .product-image i {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 26, 43, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(3px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border: 2px solid var(--accent-cyan);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: all 0.3s;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-offwhite);
}

.rating {
    margin-bottom: 10px;
    color: #FFB347;
    font-size: 0.9rem;
}

.rating span {
    color: var(--text-gray);
    margin-left: 5px;
    font-size: 0.85rem;
}

.price {
    margin-bottom: 20px;
}

.current {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.original {
    font-size: 0.95rem;
    color: #5A6F84;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-to-cart {
    flex: 2;
    padding: 12px;
    background: var(--gradient-tech);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
}

.btn-demo {
    flex: 1;
    padding: 12px;
    background: transparent;
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--accent-cyan);
    cursor: pointer;
}

.text-center {
    text-align: center;
}

/* Footer */
.site-footer {
    background: var(--primary-deep);
    color: white;
    padding: 80px 0 20px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, white, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.footer-logo-tagline {
    font-size: 0.7rem;
    color: var(--accent-blue);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-widget p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-widget h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-offwhite);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-widget ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--accent-cyan);
    width: 20px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.copyright {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--card-dark);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 30px var(--accent-cyan);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--accent-cyan);
}

.modal h2 {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.modal p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.modal-form button {
    width: 100%;
    padding: 14px;
    background: var(--gradient-tech);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 125, 225, 0.3);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--accent-teal);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-400px);
    transition: transform 0.3s;
    z-index: 1500;
}

.toast.show {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {

    .services-grid,
    .products-grid,
    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .services-grid,
    .products-grid,
    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-visual {
        height: 400px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* Bose Infotech Custom Styles Refinements */

.main-logo {
    max-height: 60px;
    width: auto;
    margin-right: 18px;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.4));
    transition: all 0.3s ease;
}

.main-logo:hover {
    filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.6));
    transform: scale(1.02);
}

/* Footer Fallback Menus */
.fallback-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fallback-menu li {
    margin-bottom: 12px;
}

.fallback-menu li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.fallback-menu li a:hover {
    color: var(--accent-cyan);
    padding-left: 8px;
}

.fallback-menu li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Product Variation Styles */
.version-tag {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.variations {
    display: flex;
    gap: 8px;
    margin: 12px 0;
}

.variation-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Success Stories Slider (High-End Boxed Design) */
.success-stories-slider {
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.08), transparent 500px),
        radial-gradient(circle at bottom left, rgba(61, 90, 255, 0.08), transparent 500px);
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    margin-top: 60px;
}

.stories-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 40px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.stories-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.story-card.boxed-glass {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: rgba(19, 36, 53, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid var(--accent-cyan);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.story-card.boxed-glass:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 50px rgba(0, 229, 255, 0.1);
    background: rgba(19, 36, 53, 0.8);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.roi-stats {
    display: flex;
    flex-direction: column;
}

.roi-badge {
    background: var(--gradient-tech);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: inline-block;
    width: fit-content;
}

.profit-total {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.sparkline svg {
    filter: drop-shadow(0 0 5px var(--accent-cyan));
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: sparklineGrow 3s ease-out forwards;
}

@keyframes sparklineGrow {
    to {
        stroke-dashoffset: 0;
    }
}

.story-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-offwhite);
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
}

.story-body p::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: 0;
    font-family: serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    opacity: 0.6;
}

.user-name h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.user-name span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.verified-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .story-card.boxed-glass {
        flex: 0 0 90%;
    }
}

.featured-product {
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}