:root {
    /* Color Variables */
    --color-primary: #3f69f5;
    --color-secondary: #374151;
    --color-accent: #09e57f;
    --color-pink: #C2410C;
    --color-dark: #0F172A;
    --color-light: #F8FAFC; 
    
    /* Glass Effects */
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(31, 41, 55, 0.7);
    
    /* Gradients */
    --gradient-primary: linear-gradient(90deg, var(--color-primary), var(--color-light));
    --gradient-secondary: linear-gradient(90deg, var(--color-secondary), var(--color-light));
    --gradient-all: linear-gradient(90deg, var(--color-primary), var(--color-light), var(--color-accent));
    --gradient-45: linear-gradient(45deg, var(--color-primary), var(--color-light), var(--color-accent));
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    font-display: swap;
    background-color: #0F172A !important;
    min-height: 100vh;
}


/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.allow-select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Card Effects */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

/* Effect */
.neumorphism {
    border-radius: 20px;
    background: var(--color-dark);
    box-shadow:  10px 10px 20px rgba(0, 0, 0, 0.2),
                -10px -10px 20px rgba(255, 255, 255, 0.05);
}

/* Animation */
.liquid-bg {
    background: var(--gradient-45);
    background-size: 300% 300%;
    animation: gradient 8s ease infinite;
}

/* Particle Animation */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

/* Text Animation */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    animation: reveal 2s ease-in-out;
}

@keyframes reveal {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Hover Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Border Animation */
.animated-border {
    position: relative;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-all);
    z-index: -1;
    animation: border-animation 3s linear infinite;
    background-size: 400% 400%;
}

@keyframes border-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}



/* Morphing Background */
.morphing-bg {
    background: var(--gradient-45);
    background-size: 300% 300%;
    animation: morph 15s ease infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* Pulse Ring */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--color-secondary), var(--color-accent));
}

/* Gradient Border */
.gradient-border {
    position: relative;
    border: double 3px transparent;
    border-radius: 20px;
    background-image: linear-gradient(var(--color-dark), var(--color-dark)), 
                      linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    background-origin: border-box;
    background-clip: content-box, border-box;
}

/* Text Gradient Animation */
.animated-gradient {
    background: var(--gradient-all);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

/* Glass Card Hover */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Modern Button Styles */
.btn-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::after {
    left: 100%;
}

/* Loading Animation */
.loading-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.loading-wave div {
    width: 4px;
    height: 20px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.loading-wave div:nth-child(2) { animation-delay: -1.1s; }
.loading-wave div:nth-child(3) { animation-delay: -1.0s; }
.loading-wave div:nth-child(4) { animation-delay: -0.9s; }

@keyframes wave {
    0%, 60%, 100% { transform: scaleY(0.4); }
    30% { transform: scaleY(1); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    border-radius: 5px;
}

/* Selection Color */
::selection {
    background: rgba(37, 99, 235, 0.3);
    color: white;
}

/* Glass Effect */
.glass {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-all);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
}

/* Shine Effect */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

/* Additional styles for contact page */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    border-color: #4361EE;
}

/* Success/Error messages */
.success-message {
    animation: slideDown 0.5s ease;
}

.error-message {
    animation: shake 0.5s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Ecommerce Web Development */

/* Platform Card Hover Effects */
.ewd-page .platform-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ewd-page .platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

/* Price Badge */
.ewd-page .price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4361EE, #7209B7);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

/* Feature List */
.ewd-page .feature-item {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 30px;
}

.ewd-page .feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #06D6A0;
    font-weight: bold;
}

.ewd-page .feature-item:hover {
    transform: translateX(5px);
    color: white;
}

/* Platform Icon Animation */
.ewd-page .platform-icon {
    transition: all 0.3s ease;
}

.ewd-page .platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

/* Comparison Table */
.ewd-page .comparison-row:hover {
    background: rgba(67, 97, 238, 0.1);
}

/* Grid Background */
.ewd-page .grid-pattern {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C92AC" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Development Process */
.ewd-page .process-step {
    position: relative;
}

.ewd-page .process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #4361EE, transparent);
    z-index: 1;
}

.ewd-page .process-step:last-child::after {
    display: none;
}

/* Custom Form Styles */
.audit-page .form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.audit-page .form-input:focus {
    outline: none;
    border-color: #4361EE;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.audit-page .form-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.audit-page .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #E2E8F0;
}

.audit-page .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: #909090;
    font-family: 'Inter', sans-serif;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E2E8F0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}

.audit-page .form-select:focus {
    outline: none;
    border-color: #4361EE;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

/* Checkbox Style */
.audit-page .form-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audit-page .form-checkbox:checked {
    background-color: #4361EE;
    border-color: #4361EE;
}

.audit-page .form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Maintenance Page */
/* Service Card Hover Effects */
.maintenance-page .service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.maintenance-page .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

/* Status Indicator */
.maintenance-page .status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.maintenance-page .status-green {
    background-color: #06D6A0;
    box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(6, 214, 160, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0);
    }
}

/* Tech Stack Icons */
.maintenance-page .tech-icon {
    transition: all 0.3s ease;
}

.maintenance-page .tech-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(67, 97, 238, 0.5));
}

/* Support Ticket Animation */
.maintenance-page .ticket-card {
    transition: all 0.3s ease;
}

.maintenance-page .ticket-card:hover {
    border-color: #4361EE;
    transform: translateX(5px);
}

/* Grid Background */
.maintenance-page .grid-pattern {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C92AC" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Checkmark Animation */
.maintenance-page .checkmark {
    display: inline-block;
    transform: rotate(45deg);
    height: 12px;
    width: 8px;
    border-bottom: 3px solid #06D6A0;
    border-right: 3px solid #06D6A0;
    margin-right: 10px;
}

/* Feature List Animation */
.maintenance-page .feature-item {
    transition: all 0.3s ease;
}

.maintenance-page .feature-item:hover {
    transform: translateX(10px);
}

/* Portfolio Page */
/* Additional styles for portfolio */
.portfolio-page .portfolio-filter {
    transition: all 0.3s ease;
}

.portfolio-page .portfolio-filter.active {
    background: linear-gradient(45deg, #4361EE, #7209B7);
    color: white;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
}

.portfolio-page .portfolio-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.portfolio-page .portfolio-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    display: none;
}

.portfolio-page .portfolio-image {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-page .portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-page .portfolio-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    transition: all 0.3s ease;
}

.portfolio-page .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Modal styles */
.portfolio-page .portfolio-modal {
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Loading animation */
.portfolio-page .loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Modal Image Styles */
.portfolio-page .modal-image-container {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.portfolio-page .modal-image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.portfolio-page .image-loading {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-page .image-loading.hidden {
    display: none;
}

/* Modal Navigation */
.portfolio-page .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.portfolio-page .modal-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-page .modal-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.portfolio-page .modal-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Policy Page Specific */
.policy-page .policy-content h2 {
    color: #E2E8F0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-page .policy-content h3 {
    color: #CBD5E1;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.policy-page .policy-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.policy-page .policy-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.policy-page .policy-content li {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.policy-page .policy-content p {
    margin-bottom: 1rem;
    color: #d5d5d5;
    line-height: 1.6;
}

.policy-page .last-updated {
    background: rgba(67, 97, 238, 0.1);
    border-left: 4px solid #4361EE;
}

/* Service Card Hover Effects */
.tax-page .service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tax-page .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

/* Process Step Animation */
.tax-page .process-step {
    transition: all 0.3s ease;
}

.tax-page .process-step:hover {
    transform: scale(1.05);
}

/* Grid Background */
.tax-page .grid-pattern {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C92AC" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

/* Terms Page */
.terms-page .terms-content h2 {
    color: #E2E8F0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.terms-page .terms-content h3 {
    color: #CBD5E1;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.terms-page .terms-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.terms-page .terms-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.terms-page .terms-content li {
    margin-bottom: 0.5rem;
    color: #ededee;
}

.terms-page .terms-content p {
    margin-bottom: 1rem;
    color: #ededee;
    line-height: 1.6;
}

.terms-page .highlight-box {
    background: rgba(67, 97, 238, 0.1);
    border-left: 4px solid #4361EE;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.terms-page .important-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid #F59E0B;
}
.main-nav .desk-nav .parent-nav.active,
.main-nav .desk-nav a.active {
    border-bottom: 2px solid #3b82f6;
}
form button i.fa-spinner {
    display:inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .grid {
        gap: 1rem;
    }
    
    .glass-dark, .glass {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}
@media (max-width: 768px) {
    html {
        scroll-behavior: auto !important;
    }
                
    .shine::after {
        content: none !important;
    }
    
    .glass, .glass-dark {
        background: rgba(15, 23, 42, 0.9) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .text-5xl, .text-4xl {
        font-size: 1.875rem !important;
        line-height: 2rem !important;
    }
    
    .text-7xl {
        font-size: 2.5rem !important;
    }
    .px-6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .gap-6 {
        gap: 0.5rem !important;
    }
    .p-12 {
        padding: 2rem !important;
    }
    p.text-xl {
        font-size: 1rem !important;
        line-height: 1.5rem !important;
    }
    .logo {
        max-width:140px;
        transition: all 0.3s ease;
    }
    nav.glass-dark {
        padding: 6px 0;
         margin: 0;
    }
    nav.glass-dark .logo {
        max-width: 100px;
    }
    .ewd-page .process-step::after {
        display: none;
    }
    a.px-8 {
        font-size: 15px;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
        justify-content: center;
    }
    .text-lg {
        font-size: 1rem !important;
        line-height: 1.55rem !important;
    }
    .text-sm {
        font-size: 0.775rem !important;
        line-height: 1.25rem !important;
    }
    .ewd-page .price-badge {
        top: 6px;
        right: 6px;
    }
    td.p-6 {
        padding: 1rem;
    }
    h4.font-bold {
        font-size: 15px !important;
        line-height: 18px !important;
    }
    .text-xl {
        font-size: 1rem !important;
        line-height: 1.25rem !important;
    }
    footer {
        text-align: center;
    }
    footer .flex {
        justify-content: center;
        display: flex;
    }
    .footer-logo {
        max-width: 120px;
        margin: 0 auto 15px;
    }
    h3.text-xl.font-bold {
        font-size: 1rem !important;
        line-height: 1.25rem !important;
    }
    .main-nav .mob-nav .active {
        padding: 4px 10px;
        background: #ffffff24;
        border-radius: 20px;
    }
}