@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #0c1b3a;
    --orange-glow: #FF6B00;
    --red-glow: #FF3B3B;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Animations */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #122c4f 0%, var(--bg-color) 100%);
}

.glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    filter: blur(150px);
    opacity: 0.15; /* Subdued to let Navy Blue dominate */
    border-radius: 50%;
    animation: float 25s infinite alternate ease-in-out;
}

.orange-glow {
    top: -20%;
    left: -10%;
    background: var(--orange-glow);
    animation-delay: 0s;
}

.red-glow {
    bottom: -20%;
    right: -10%;
    background: var(--red-glow);
    animation-delay: -12s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(10%, 20%) scale(1.1);
    }
    66% {
        transform: translate(-10%, 15%) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Glassmorphism Utilities */
.glass-card {
    background: rgba(18, 44, 79, 0.4); /* Deeper navy glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 0, 0.15); /* Subtle orange border */
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
    position: sticky;
    top: 20px;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--orange-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lang-switch button, .currency-switch button {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.lang-switch button:hover, .lang-switch button.active,
.currency-switch button:hover, .currency-switch button.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 150px 20px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 700px;
    width: 90%;
    z-index: 0;
    opacity: 0.35;
    filter: blur(12px);
    border-radius: 40px;
    overflow: hidden;
    animation: hero-bg-float 20s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes hero-bg-float {
    0% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-48%, -55%) scale(1.05); }
    66% { transform: translate(-52%, -48%) scale(0.95); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.9;
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.category-btn:hover, .category-btn.active {
    background: linear-gradient(45deg, var(--orange-glow), var(--red-glow));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
    white-space: pre-line;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--orange-glow);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.4);
    background: rgba(7, 27, 52, 0.6);
}

.buy-btn, .submit-btn {
    background: linear-gradient(45deg, var(--orange-glow), var(--red-glow));
    border: none;
    padding: 14px 32px;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Outfit', sans-serif;
}

.buy-btn:hover, .submit-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
    transform: translateY(-3px);
}

/* Form Section */
.form-section {
    max-width: 600px;
    margin: 0 auto 100px;
    padding: 40px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.form-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.selected-item-display {
    text-align: center;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
}

.selected-item-display h4 {
    color: var(--orange-glow);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Bank Details Refined Layout */
.bank-details {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 107, 0, 0.03);
    border: 1px solid rgba(255, 107, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bank-header-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-header-title::before {
    content: '💳';
    font-size: 1.2rem;
}

.bank-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 420px;
    margin: 0 auto;
}

.bank-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bank-card-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bank-card:hover .bank-card-glow {
    opacity: 1;
}

.bank-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 107, 0, 0.1);
}

.bank-card-badge {
    position: absolute;
    top: 0; right: 0;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px 5px;
    border-bottom-left-radius: 8px;
    background: rgba(255, 107, 0, 0.15);
    color: var(--orange-glow);
    letter-spacing: 1px;
}

.bank-card-badge.premium {
    background: rgba(255, 59, 59, 0.15);
    color: #ff5252;
}

.bank-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bank-brand {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-action-btn {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all 0.2s ease;
    z-index: 2;
}

.bank-card:hover .copy-action-btn {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
    color: var(--text-primary);
}

.copy-action-btn:hover {
    transform: scale(1.05);
}

.copy-action-btn.copied {
    background: rgba(46, 213, 115, 0.2) !important;
    border-color: #2ed573 !important;
    color: #2ed573 !important;
    box-shadow: 0 0 10px rgba(46, 213, 115, 0.3) !important;
}

.bank-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bank-acc-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.bank-acc-holder {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.bank-acc-branch {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

input {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--orange-glow);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

input[type="file"] {
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
}

input[type="file"]::file-selector-button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 750px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}
.close-btn:hover { color: var(--red-glow); }

.modal-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        gap: 20px;
    }
    .modal-image {
        width: 100% !important;
        max-width: 250px;
        margin: 0 auto;
    }
    .modal-info {
        width: 100% !important;
    }
}

.modal-image {
    width: 40%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-info {
    width: 60%;
}

.modal-info h2 { font-size: 2rem; margin-bottom: 15px; color: var(--orange-glow); }
.modal-info p { margin-bottom: 20px; color: var(--text-secondary); line-height: 1.6; white-space: pre-line; }
.modal-info .price { font-size: 1.8rem; margin-bottom: 30px; color: white; }

.modal-actions {
    display: flex;
    gap: 15px;
}

.add-cart-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 14px 24px;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    backdrop-filter: blur(8px);
}
.add-cart-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0; right: -400px; width: 100%; max-width: 400px; height: 100vh;
    z-index: 1100;
    border-radius: 0;
    border-left: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-drawer.active { right: 0; }

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.cart-item-info h4 { font-size: 1rem; margin-bottom: 5px; }
.cart-item-info p { color: var(--orange-glow); font-weight: bold; }

.remove-btn {
    background: rgba(255, 59, 59, 0.2);
    color: #ff8888;
    border: 1px solid rgba(255, 59, 59, 0.4);
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.remove-btn:hover { background: var(--red-glow); color: white; }

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    background: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background: #20bd5a;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.wa-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.wa-text-container {
    display: flex;
    flex-direction: column;
}

.wa-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.wa-number {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hide text on small mobile, keep just icon */
@media (max-width: 480px) {
    .wa-text-container { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
    .whatsapp-float { bottom: 20px; right: 20px; }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-text {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .form-section {
        padding: 25px;
    }
}

/* ==========================================
   FOOTER & LEGAL MODALS
   ========================================== */
footer {
    margin-top: 80px;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange-glow);
    border-radius: 2px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 350px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--orange-glow);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-icon {
    font-size: 1.2rem;
    color: var(--orange-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    color: var(--orange-glow);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Legal Modals Styling */
.legal-modal-content {
    max-width: 700px !important;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px !important;
    text-align: left !important;
}

.legal-content h3 {
    color: white;
    margin: 25px 0 10px 0;
    font-size: 1.15rem;
    font-weight: 600;
    border-left: 3px solid var(--orange-glow);
    padding-left: 10px;
}

.legal-content h3:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        footer {
            padding: 40px 15px 20px;
        }
    }

/* IT Consultation Details Styling */
.it-consultation-details {
    text-align: left;
    margin-top: 15px;
}

.it-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px !important;
    font-style: italic;
    border-left: 3px solid var(--orange-glow);
    padding-left: 15px;
    line-height: 1.6;
}

.it-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.it-service-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.it-service-item:hover {
    background: rgba(255, 107, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateX(5px);
}

.it-service-icon {
    font-size: 1.8rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 107, 0, 0.2);
    min-width: 45px;
    height: 45px;
}

.it-service-item strong {
    font-size: 1.05rem;
    color: white;
    display: block;
    margin-bottom: 4px;
}

.it-service-item p {
    font-size: 0.9rem;
    color: var(--text-secondary) !important;
    margin: 0 !important;
    line-height: 1.5;
}

/* IT Presentation Card Styling */
.it-presentation-card {
    grid-column: 1 / -1; /* spans full width of the CSS Grid products-container! */
    padding: 50px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(20px);
    text-align: left;
}

.it-pres-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
}

.it-pres-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.it-pres-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1.5deg);
    }
}

.it-pres-info h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff, #a4b0be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.it-price-tag {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--orange-glow);
    margin-bottom: 25px;
}

.it-pres-desc .it-sub {
    border-left: 3px solid var(--orange-glow);
    padding-left: 15px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px !important;
    line-height: 1.6;
}

.it-pres-cta {
    width: 100%; 
    margin-top: 25px; 
    font-weight: 700; 
    padding: 16px 32px; 
    font-size: 1.15rem; 
    border-radius: 14px; 
    background: linear-gradient(135deg, var(--orange-glow), #ff4757) !important; 
    border: none !important; 
    color: white !important; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3) !important;
    display: block;
    text-align: center;
}

.it-pres-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5) !important;
}

.it-pres-cta:active {
    transform: translateY(0);
}

/* Responsiveness for Presentation Grid */
@media (max-width: 992px) {
    .it-presentation-card {
        padding: 30px !important;
    }
    .it-pres-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .it-pres-image {
        max-width: 320px;
        margin: 0 auto;
    }
    .it-pres-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    .it-price-tag {
        text-align: center;
    }
}

/* ==========================================
   3D GLASSMORPHIC SERVICES HUB STYLING
   ========================================== */

.services-full-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 20px;
    z-index: 10;
}

/* Layered glowing spheres behind the card */
.hub-glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.hub-glow-sphere.sphere-1 {
    width: 250px;
    height: 250px;
    top: -40px;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.8) 0%, rgba(255, 230, 0, 0) 70%);
    animation: float-sphere-1 12s infinite alternate ease-in-out;
}

.hub-glow-sphere.sphere-2 {
    width: 320px;
    height: 320px;
    bottom: -60px;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.8) 0%, rgba(255, 107, 0, 0) 70%);
    animation: float-sphere-2 15s infinite alternate ease-in-out;
}

.hub-glow-sphere.sphere-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: -50px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.6) 0%, rgba(255, 59, 59, 0) 70%);
    animation: float-sphere-3 10s infinite alternate ease-in-out;
}

@keyframes float-sphere-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 30px) scale(1.1); }
}

@keyframes float-sphere-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, -20px) scale(0.9); }
}

@keyframes float-sphere-3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15px, -15px) scale(1.15); }
}

/* Section Header styling */
.services-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.services-section-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Horizontal Categories menu */
.hub-categories-horizontal {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hub-categories-horizontal .category-btn {
    text-align: center;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hub-categories-horizontal .category-btn:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff;
    transform: translateY(-2px);
}

.hub-categories-horizontal .category-btn.active {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 59, 59, 0.08)) !important;
    border-color: rgba(255, 107, 0, 0.4) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Showcase & list flow styling */
.hub-showcase-full {
    width: 100%;
}

.hub-products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Constrain vertical scroll in Showcase to satisfy "pahalata pannana epa" */
.hub-products-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 10px;
    scroll-behavior: smooth;
}

/* Elegant thin premium scrollbar */
.hub-products-grid::-webkit-scrollbar {
    width: 6px;
}

.hub-products-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.hub-products-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange-glow), var(--red-glow));
    border-radius: 10px;
    opacity: 0.6;
}

.hub-products-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff822e, #ff5757);
}

/* Wide horizontal row cards inside showcase ("diga kotu" layout) with 3D Glass Look */
.hub-products-list .product-card {
    display: grid;
    grid-template-columns: 80px 1fr 220px;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.35), 
        inset 0 1px 0 rgba(255, 255, 255, 0.08), 
        inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: auto;
    min-height: 0;
    flex-shrink: 0;
    text-align: left;
    transform-style: preserve-3d; /* 3D layer perspective */
    perspective: 1000px;
}

.hub-products-list .product-card:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 107, 0, 0.35) !important;
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.45), 
        0 0 25px rgba(255, 107, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Sub-column layouts with 3D Pop Out popups */
.prod-icon-col {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(25px); /* Elevates in 3D */
}

.hub-products-list .product-icon {
    font-size: 2.3rem;
    margin-bottom: 0;
    background: rgba(255, 107, 0, 0.08);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 0, 0.2));
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hub-products-list .product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.4);
}

.prod-info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    transform: translateZ(15px); /* Slightly elevated */
}

.hub-products-list .product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.hub-products-list .product-desc {
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.prod-actions-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 20px;
    transform: translateZ(20px); /* Lifted action section */
}

.hub-products-list .price {
    font-size: 1.35rem;
    margin-bottom: 0;
    font-weight: 800;
    color: var(--orange-glow);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.15);
}

.prod-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.buy-btn-card, .add-cart-btn-card {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: bold;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.buy-btn-card {
    background: linear-gradient(45deg, var(--orange-glow), var(--red-glow));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.buy-btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.add-cart-btn-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.add-cart-btn-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* IT Consultation special rendering inside the hub */
.hub-products-list .it-presentation-card {
    width: 100%;
    padding: 35px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 24px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    max-height: none;
}

.hub-products-list .it-pres-grid {
    gap: 30px;
}

.hub-products-list .it-pres-info h2 {
    font-size: 1.8rem;
}

.hub-products-list .it-service-item {
    padding: 12px 15px;
    gap: 12px;
}

.hub-products-list .it-service-icon {
    min-width: 38px;
    height: 38px;
    font-size: 1.3rem;
    padding: 4px;
}

.hub-products-list .it-service-item strong {
    font-size: 0.95rem;
}

.hub-products-list .it-service-item p {
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hub-categories-horizontal {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 8px;
        scrollbar-width: none; /* Firefox */
        justify-content: flex-start;
    }
    
    .hub-categories-horizontal::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .hub-categories-horizontal .category-btn {
        white-space: nowrap;
        width: auto;
        padding: 10px 18px;
    }
    
    .hub-products-list .product-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .prod-actions-col {
        border-left: none;
        padding-left: 0;
        align-items: center;
    }
    
    .prod-info-col {
        align-items: center;
    }
    
    .prod-buttons {
        flex-direction: row;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .prod-buttons {
        flex-direction: column;
        gap: 8px;
    }
}