:root {
    --primary-color: #0057b7; /* Updated blue from AISOD logo */
    --primary-light: #3379c9; /* Lighter shade of the AISOD blue */
    --primary-dark: #003f8a; /* Darker shade of the AISOD blue */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), #4b6fff);
    --secondary-color: #00377d;
    --text-color: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --animation-timing: 0.3s ease;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary-color);
    color: white;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
    font-weight: var(--regular-weight);
    font-size: 16px;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--heading-weight);
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

/* Improved Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 87, 183, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styles */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

/* Remove old logo styles */
.logo-icon {
    display: none;
}

.logo-dot {
    display: none;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 3rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.nav-links a:hover i,
.nav-links a.active i {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0057b7;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-action {
    display: flex;
    align-items: center;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 35px;
    height: 25px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 1.5rem;
}

.mobile-nav-links li {
    margin-bottom: 1.2rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a i {
    width: 24px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #0057b7;
    transform: translateX(5px);
}

.mobile-nav-action {
    margin-top: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-action .cta-button {
    width: 100%;
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f7;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .menu-container {
        margin-left: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }
    
    .menu-container {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Fix Hero Section for New Nav */
.hero {
    padding-top: 5rem; /* Ensure content doesn't get hidden under fixed navbar */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #f6f7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: var(--heading-weight);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(to right, #0057b7, #4b6fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    background: radial-gradient(rgba(99,102,241,0.15), rgba(99,102,241,0.05));
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -100px;
    background: radial-gradient(rgba(79,70,229,0.15), rgba(79,70,229,0.05));
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    background: radial-gradient(rgba(99,102,241,0.1), rgba(99,102,241,0.02));
}

.hero-code-mockup {
    flex: 1;
    max-width: 550px;
    margin: 0;
    background: rgba(24,28,42,0.90);
    border-radius: 1.2rem;
    box-shadow: 0 8px 32px rgba(99,102,241,0.18), 0 0 24px 4px rgba(99,102,241,0.4);
    position: relative;
    overflow: hidden;
    border: 1.5px solid rgba(99,102,241,0.25);
    backdrop-filter: blur(8px);
    animation: code-glow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.typing-glow {
    box-shadow: 0 8px 40px rgba(99,102,241,0.3), 0 0 30px 8px rgba(99,102,241,0.5);
}

.code-editor-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(24,28,42,0.95);
    border-bottom: 1px solid rgba(99,102,241,0.25);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff605c;
}

.code-dots span:nth-child(2) {
    background: #ffbd44;
}

.code-dots span:nth-child(3) {
    background: #00ca4e;
}

.code-title {
    margin-left: auto;
    color: #8b93a7;
    font-size: 0.85rem;
}

@keyframes code-glow {
    0% { box-shadow: 0 8px 32px rgba(99,102,241,0.18), 0 0 24px 4px rgba(99,102,241,0.3); }
    100% { box-shadow: 0 8px 48px rgba(99,102,241,0.28), 0 0 48px 8px rgba(99,102,241,0.5); }
}

.hero-code-mockup pre {
    margin: 0;
    color: #e0e6f6;
    font-family: 'Fira Mono', 'Consolas', monospace;
    font-size: 1.1rem;
    background: none;
    border: none;
    white-space: pre-wrap;
    word-break: break-word;
    padding: 1.5rem;
}

/* Syntax highlighting */
.token-keyword { color: #0057b7; font-weight: 600; }
.token-string { color: #34d399; }
.token-comment { color: #9ca3af; font-style: italic; }
.token-function { color: #0065d2; }
.token-variable { color: #f59e42; }

#animated-code .cursor {
    display: inline-block;
    width: 10px;
    background: #a5b4fc;
    animation: blink 1s steps(1) infinite;
    border-radius: 2px;
    margin-left: 2px;
    height: 1.2em;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Buttons */
button {
    cursor: pointer;
}

.cta-button, .primary-button {
    background: linear-gradient(135deg, #0057b7, #4b6fff);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-button:before, .cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003f8a, #0057b7);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.primary-button:hover:before, .cta-button:hover:before {
    opacity: 1;
}

.secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.85rem 2rem;
    border-radius: 0.7rem;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.primary-button:hover, .cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 24px rgba(99,102,241,0.18);
}

.secondary-button:hover {
    color: #fff;
    border-color: var(--primary-color);
}

.secondary-button:hover:before {
    width: 100%;
}

.primary-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(79,70,229,0.15));
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--heading-weight);
    letter-spacing: -0.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.8);
    padding: 3rem 2rem;
    border-radius: 1.2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(99,102,241,0.08);
    border: 1.5px solid rgba(99,102,241,0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(79,70,229,0.04));
    clip-path: circle(0% at 0% 100%);
    transition: all 0.6s ease;
    z-index: -1;
}

.feature-card:hover::before {
    clip-path: circle(150% at 0% 100%);
}

.feature-card:hover {
    box-shadow: 0 15px 50px rgba(99,102,241,0.15);
    transform: translateY(-12px);
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 87, 183, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-container i {
    font-size: 1.5rem;
    color: #0057b7;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .icon-container i {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.feature-card p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.testimonial-track {
    display: flex;
    position: relative;
    gap: 2rem;
    padding: 1rem 0.5rem;
    margin: 1rem -0.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    width: 100%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.5s ease;
    border: 1px solid rgba(99,102,241,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote-mark {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    flex-shrink: 0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.client-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99,102,241,0.2);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-shapes .shape-1 {
    background: rgba(255,255,255,0.1);
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}

.cta-shapes .shape-2 {
    background: rgba(255,255,255,0.1);
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
}

/* Pricing Section */
.pricing {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f6f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount {
    background: var(--success-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99,102,241,0.08);
    transform: translateY(50px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.reveal-card {
    transform: translateY(0);
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99,102,241,0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured.reveal-card {
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 1.2rem;
    right: -3rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 3.5rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(99,102,241,0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 0.2rem;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.package-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 80%;
    margin: 0 auto;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.7rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.2);
}

/* Add-ons Section */
.add-ons {
    margin-top: 6rem;
    text-align: center;
}

.add-ons h3 {
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.add-on-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(99,102,241,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.add-on-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(99,102,241,0.15);
}

.add-on-card .icon-container {
    margin-bottom: 1.5rem;
}

.add-on-card h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.3rem;
}

.add-on-card p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.add-on-card .price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: auto;
}

/* Footer */
footer {
    background-color: #131c2a;
    color: #fff;
    position: relative;
    padding: 0;
}

.footer-top-border {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #0057b7, #4b6fff, #0057b7);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    position: relative;
}

.back-to-top-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

#backToTopBtn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0057b7, #4b6fff);
    border: none;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#backToTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTopBtn:hover {
    background: linear-gradient(135deg, #003f8a, #0057b7);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 87, 183, 0.4);
}

@media (max-width: 768px) {
    .back-to-top-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    #backToTopBtn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* Company Block */
.company-block {
    min-width: 250px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b4bcd0;
    margin-bottom: 24px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3b82f6;
    transform: translateY(-5px);
}

/* Links Block */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b4bcd0;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-right: 10px;
    color: #3b82f6;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Websites Block */
.website-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Block */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: #3b82f6;
    font-size: 16px;
    margin-right: 12px;
    margin-top: 3px;
}

.contact-info span {
    color: #b4bcd0;
    font-size: 15px;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-nav {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #b4bcd0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 10px;
}

.footer-nav a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.separator {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.copyright {
    color: #8494ab;
    font-size: 14px;
}

.copyright a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-block {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 20px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-block {
        grid-column: span 1;
    }
    
    .website-grid {
        gap: 5px;
    }
    
    .back-to-top-wrapper {
        top: -22px;
        right: 10px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        max-width: 800px;
    }
    
    .hero-text {
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-code-mockup {
        margin: 2.5rem auto 0;
        width: 100%;
        max-width: 600px;
    }
    
    .cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        min-height: auto;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-code-mockup {
        margin: 2rem auto 0;
        max-width: 100%;
    }
    .nav-container {
        padding: 0.75rem 1.5rem;
    }
    .mobile-menu-btn {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .secondary-button {
        margin-left: 0;
    }
    
    .pricing-grid, .feature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 1rem;
    }
    
    .client-image {
        width: 50px;
        height: 50px;
    }
    
    .client-details h4 {
        font-size: 1rem;
    }
    
    .testimonial-track {
        min-height: 350px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Enterprise Package */
.pricing-card.enterprise {
    background: linear-gradient(to bottom right, rgba(255,255,255,0.95), rgba(249,250,251,0.9));
    border: 1px solid rgba(99,102,241,0.2);
    box-shadow: 0 12px 40px rgba(99,102,241,0.12);
    position: relative;
    overflow: hidden;
}

.enterprise-tag {
    position: absolute;
    top: 1.2rem;
    right: -3rem;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    color: white;
    padding: 0.5rem 3.5rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(99,102,241,0.3);
    z-index: 1;
}

.custom-price {
    font-size: 1.8rem;
    font-weight: var(--bold-weight);
    color: var(--primary-color);
    margin: 1rem 0;
}

.custom-price span {
    border-bottom: 2px dashed var(--primary-color);
    padding-bottom: 0.2rem;
}

.enterprise-info {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 5rem;
    padding: 2.5rem;
    background: rgba(255,255,255,0.8);
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.enterprise-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.enterprise-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.enterprise-cta {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.85rem 2rem;
    border-radius: 0.7rem;
    font-weight: var(--bold-weight);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 auto;
}

.enterprise-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99,102,241,0.2);
}

@media (max-width: 768px) {
    .enterprise-tag {
        transform: rotate(45deg) scale(0.9);
        right: -4rem;
    }
    
    .enterprise-info {
        padding: 1.5rem;
        margin: 2rem auto 4rem;
    }
}

/* Improved Pricing Section */
.pricing-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.view-toggle {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 0.8rem;
    padding: 0.3rem;
    margin: 0 auto;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-weight: var(--bold-weight);
    color: var(--text-light);
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-view {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-view.active {
    display: block;
    opacity: 1;
}

/* Plan Icons */
.plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 87, 183, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.plan-icon i {
    font-size: 1.2rem;
    color: #0057b7;
    transition: all 0.3s ease;
}

.pricing-card:hover .plan-icon {
    background-color: #0057b7;
    transform: scale(1.1);
}

.pricing-card:hover .plan-icon i {
    color: white;
}

/* Table View Styles */
.comparison-table-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 1rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--text-color);
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: #f9fafb;
    padding: 1.5rem 1rem;
    font-weight: var(--bold-weight);
    text-align: center;
    vertical-align: top;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th:first-child {
    text-align: left;
    border-top-left-radius: 1rem;
}

.comparison-table th:last-child {
    border-top-right-radius: 1rem;
}

.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: var(--bold-weight);
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 1rem;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 1rem;
}

.comparison-table .plan-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
}

.comparison-table .price {
    margin: 0.7rem 0 0;
    font-size: 1.2rem;
}

.comparison-table .custom-price span {
    font-size: 1.2rem;
    padding-bottom: 0;
}

.comparison-table .fa-check {
    color: var(--success-color);
}

.comparison-table .fa-times {
    color: var(--text-light);
}

.comparison-table .featured-column {
    background: rgba(99,102,241,0.03);
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(99,102,241,0.1);
    z-index: 1;
}

.popular-tag-table {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(99,102,241,0.3);
    white-space: nowrap;
}

.action-row {
    background: #f9fafb;
}

.action-row td {
    padding: 1.5rem 1rem;
    border-bottom: none;
}

.action-row .pricing-cta {
    width: auto;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
}

/* Improved Feature List Styling */
.features-list {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    line-height: 1.4;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.features-list li.unavailable {
    color: var(--text-light);
    opacity: 0.7;
}

.features-list li.unavailable i {
    color: #d1d5db;
}

@media (max-width: 1024px) {
    .pricing-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .comparison-table .plan-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .comparison-table .price {
        font-size: 1rem;
    }
    
    .action-row .pricing-cta {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .comparison-table-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table th {
        white-space: nowrap;
    }
    
    .comparison-table .featured-column {
        transform: scale(1);
    }
}

/* Improved Add-ons Section */
.add-ons-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f6f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.add-ons-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-filter {
    display: flex;
    background: #f3f4f6;
    border-radius: 0.8rem;
    padding: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    background: transparent;
    border: none;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-weight: var(--bold-weight);
    color: var(--text-light);
    border-radius: 0.6rem;
    transition: all 0.3s ease;
    margin: 0.2rem;
}

.category-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.add-ons-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.add-on-card {
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99,102,241,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.add-on-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(99,102,241,0.15);
}

.add-on-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, var(--success-color), #0ea5e9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.add-on-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.add-on-card .icon-container {
    margin: 0.5rem auto 1.5rem;
    width: 70px;
    height: 70px;
}

.add-on-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    text-align: center;
}

.add-on-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.add-on-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.add-on-features span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.add-on-features i {
    color: var(--success-color);
}

.add-on-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.add-on-footer .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.add-on-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-on-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.add-on-btn.selected {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.add-on-btn.selected:hover {
    background: #0d9488;
    border-color: #0d9488;
}

/* Add-ons Summary Section */
.add-ons-summary {
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 4rem auto 2rem;
    border: 1px solid rgba(99,102,241,0.1);
    overflow: hidden;
}

.summary-container {
    padding: 2.5rem;
}

.summary-container h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

.selected-add-ons {
    background: #f9fafb;
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    min-height: 100px;
}

.empty-selection {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.selected-item:last-child {
    border-bottom: none;
}

.selected-item-name {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.selected-item-icon {
    width: 30px;
    height: 30px;
    background: rgba(99,102,241,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.selected-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.remove-item:hover {
    color: var(--danger-color);
}

.summary-total {
    margin-bottom: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.total-row.total {
    border-top: 2px solid rgba(0,0,0,0.1);
    padding-top: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-color);
}

.customize-cta {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Hide add-ons by category */
.add-on-card.hidden {
    display: none;
}

/* Media Queries for Add-ons Section */
@media (max-width: 1024px) {
    .add-ons-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .add-ons-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .add-on-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .add-on-btn {
        width: 100%;
    }
    
    .category-filter {
        flex-wrap: wrap;
    }
    
    .category-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .summary-container {
        padding: 1.5rem;
    }
}

/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-view-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: #f3f4f6;
    border-radius: 0.8rem;
    padding: 0.4rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-view-toggle .view-btn {
    background: transparent;
    border: none;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-weight: var(--bold-weight);
    color: var(--text-light);
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}

.testimonial-view-toggle .view-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-view {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-view.active {
    display: block;
    opacity: 1;
}

/* COMPLETELY NEW TESTIMONIAL DESIGN */

/* Testimonial Showcase */
.testimonial-showcase {
    padding: 7rem 2rem;
    background: linear-gradient(to right, #fafafa, #f3f4f9);
    color: #1f2937;
}

.testimonial-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(99,102,241,0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Featured Testimonial */
.testimonial-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote svg {
    color: rgba(99,102,241,0.1);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
}

.testimonial-quote h3 {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    color: #1f2937;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-results {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.testimonial-feature:hover .testimonial-image img {
    transform: scale(1.05);
}

/* Package badges */
.package-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
}

.package-badge.standard {
    background: rgba(79,70,229,0.1);
    color: #4f46e5;
}

.package-badge.premium {
    background: rgba(139,92,246,0.1);
    color: #8b5cf6;
}

.package-badge.basic {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.package-badge.enterprise {
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
}

.package-badge.starter {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
}

/* Testimonial Row */
.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99,102,241,0.1);
}

.testimonial-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.industry-tag {
    background: #f3f4f6;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-item blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    font-style: italic;
    quotes: """ """ "'" "'";
}

.testimonial-item blockquote::before {
    content: open-quote;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 0;
    margin-right: 0.2rem;
    vertical-align: -0.3rem;
}

.testimonial-item blockquote::after {
    content: close-quote;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 0;
    margin-left: 0.2rem;
    vertical-align: -0.3rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.author-compact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-compact img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-compact div {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-role {
    color: #6b7280;
    font-size: 0.8rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #f59e0b;
    letter-spacing: -1px;
}

.rating-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
}

/* Video Feature */
.video-feature {
    margin: 2rem 0;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.video-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.video-feature:hover .video-container img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-container:hover .video-play svg {
    transform: scale(1.1);
}

.video-caption {
    padding: 1.5rem;
}

.video-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-length {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Client Mosaic */
.client-mosaic {
    margin: 3rem 0;
    text-align: center;
}

.client-mosaic h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.client-logo {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 5rem;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99,102,241,0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 2.5rem;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99,102,241,0.1);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-description {
    color: #6b7280;
    font-size: 1rem;
}

/* CTA Banner */
.testimonial-cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.testimonial-cta-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-cta-banner .cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-cta-banner .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonial-feature {
        grid-template-columns: 1fr;
    }
    
    .testimonial-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-content {
        padding: 3rem;
        order: 2;
    }
    
    .testimonial-image {
        height: 300px;
        order: 1;
    }
}

@media (max-width: 768px) {
    .testimonial-row {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-quote h3 {
        font-size: 1.2rem;
    }
    
    .result-stat .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-cta-banner {
        padding: 2rem;
    }
    
    .testimonial-cta-banner h3 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Additional Testimonial Animations */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-feature {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-quote h3 {
    position: relative;
    z-index: 1;
}

.testimonial-quote h3:after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: 4px;
    height: 8px;
    background: rgba(99,102,241,0.1);
    z-index: -1;
    transition: all 0.3s ease;
}

.testimonial-feature:hover .testimonial-quote h3:after {
    height: 12px;
    background: rgba(99,102,241,0.2);
}

.stat-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
}

.stat-card:hover:before {
    height: 8px;
}

.stat-card.animate .stat-number {
    animation: countAnimation 2s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes countAnimation {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.stats-container {
    position: relative;
}

.stats-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), transparent);
    top: -2rem;
}

.testimonial-item blockquote {
    position: relative;
    z-index: 1;
}

.testimonial-item blockquote:before,
.testimonial-item blockquote:after {
    transition: all 0.3s ease;
}

.testimonial-item:hover blockquote:before,
.testimonial-item:hover blockquote:after {
    color: var(--secondary-color);
}

.package-badge {
    transition: all 0.3s ease;
}

.testimonial-item:hover .package-badge {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(99,102,241,0.15);
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-container:hover:after {
    opacity: 0.6;
}

.video-play svg {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
    position: relative;
}

.client-logo img {
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.testimonial-cta-banner .cta-button {
    position: relative;
    overflow: hidden;
}

.testimonial-cta-banner .cta-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonial-cta-banner .cta-button:hover:after {
    transform: scale(1);
    opacity: 1;
}

/* Contact Section Styles */
.contact-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.ai-assistant-container {
    grid-column: 2;
    max-width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(99,102,241,0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.6;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(99,102,241,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}



.map-container {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-card {
        flex: 1 1 30%;
        min-width: 250px;
    }
    
    .ai-assistant-container {
        grid-column: 1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }
    
    .contact-section {
        padding: 5rem 1.5rem;
    }
}

/* Animated Robot in Contact Section */
.ai-assistant-container {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.robot-container {
    height: 280px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.robot {
    position: relative;
    z-index: 2;
    animation: floatRobot 4s ease-in-out infinite;
}

@keyframes floatRobot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.robot-head {
    width: 100px;
    height: 90px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.robot-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
    border-radius: 50% 50% 45% 45%;
    opacity: 0.6;
}

.eyes {
    display: flex;
    justify-content: space-between;
    width: 60px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.eye {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: blinkEyes 4s infinite;
}

@keyframes blinkEyes {
    0%, 45%, 55%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

.eye::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    animation: lookAround 8s infinite;
}

@keyframes lookAround {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(3px, -3px); }
    50% { transform: translate(-3px, 0); }
    75% { transform: translate(0, 3px); }
}

.antenna {
    width: 8px;
    height: 20px;
    background: #4f46e5;
    position: absolute;
    top: -18px;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.antenna::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f59e0b;
    border-radius: 50%;
    top: -10px;
    left: -2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.mouth {
    width: 30px;
    height: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    animation: talk 4s infinite;
}

@keyframes talk {
    0%, 100% { height: 8px; }
    10%, 30%, 50%, 70%, 90% { height: 3px; width: 20px; }
    20%, 40%, 60%, 80% { height: 8px; width: 35px; }
}

.robot-body {
    width: 120px;
    height: 100px;
    background: linear-gradient(to bottom, #6366f1, #4338ca);
    border-radius: 20px 20px 25px 25px;
    margin-top: -10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.robot-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    opacity: 0.5;
}

.chest-panel {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.button {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    position: relative;
}

.button:nth-child(1) {
    animation: glow 2s infinite;
    background: #10b981;
}

.button:nth-child(2) {
    animation: glow 3s infinite;
    background: #f59e0b;
    animation-delay: 0.5s;
}

.button:nth-child(3) {
    animation: glow 4s infinite;
    background: #ef4444;
    animation-delay: 1s;
}

@keyframes glow {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }
}

.robot-arms {
    position: absolute;
    width: 100%;
    top: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 0;
}

.arm {
    width: 20px;
    height: 65px;
    background: #4338ca;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.arm.left {
    transform-origin: top;
    margin-left: -10px;
    animation: waveLeft 6s infinite;
}

.arm.right {
    transform-origin: top;
    margin-right: -10px;
    animation: waveRight 5s infinite;
    animation-delay: 2s;
}

@keyframes waveLeft {
    0%, 100% { transform: rotate(0); }
    30%, 40% { transform: rotate(-25deg); }
}

@keyframes waveRight {
    0%, 100% { transform: rotate(0); }
    60%, 70% { transform: rotate(25deg); }
}

.shadow {
    position: absolute;
    bottom: 0;
    width: 140px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: shadowMove 4s ease-in-out infinite;
}

@keyframes shadowMove {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(0.8); opacity: 0.2; }
}

.chat-bubble {
    position: relative;
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.chat-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f3f4f6;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.message {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.ai-chat-controls {
    text-align: center;
    width: 100%;
}

.ai-chat-controls h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.ai-chat-controls p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.chat-button i {
    font-size: 1.2rem;
}

/* Contact Section Updated Layout */
@media (max-width: 1024px) {
    .ai-assistant-container {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .robot {
        transform: scale(0.9);
    }
    
    .ai-assistant-container {
        padding: 1.5rem;
    }
    
    .chat-bubble {
        max-width: 100%;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.5) 0%, rgba(243, 244, 246, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 35%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                      radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.faq-item {
    border-bottom: 1px solid rgba(203, 213, 225, 0.5);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    transition: color 0.3s ease;
    max-width: 90%;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-icon i {
    color: var(--primary-color);
    font-size: 1rem;
    position: absolute;
    transition: all 0.3s ease;
}

.faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .fa-minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-answer p {
    padding: 0 30px 24px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item:hover .faq-question h3 {
    color: #0057b7;
}

.faq-question:hover {
    background-color: rgba(249, 250, 251, 0.8);
}

.faq-item.active .faq-question {
    background-color: rgba(249, 250, 251, 0.8);
    border-left: 4px solid #0057b7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 70px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        max-width: 85%;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(243, 244, 246, 0.8) 0%, rgba(249, 250, 251, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 10% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item.visible {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 41, 55, 0.85);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.portfolio-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.3);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.view-project {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

.portfolio-cta p {
    margin-bottom: 15px;
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 70px 20px;
    }
    
    .portfolio-filter {
        gap: 8px;
        margin: 30px 0;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 220px;
    }
}

/* Solutions Section Styles */
.solutions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
                      radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.solutions-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.solution-card .icon-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.solution-features i {
    color: var(--success-color);
    font-size: 1rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: auto;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.learn-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--secondary-color);
    gap: 0.8rem;
}

.learn-more-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.learn-more-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.solutions-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    padding: 3rem;
    border-radius: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.08);
    margin-top: 3rem;
}

.solutions-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.solutions-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 70px 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        margin: 3rem 0;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .solutions-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solutions-cta {
        padding: 1.5rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: flex-start;
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    max-height: 450px;
    width: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.image-card {
    position: absolute;
    bottom: 1.5rem;
    right: -1rem;
    background: rgba(255, 255, 255, 0.97);
    padding: 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 87, 183, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    max-width: 180px;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image:hover .image-card {
    transform: translateY(-10px);
}

.image-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0057b7, #4b6fff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 87, 183, 0.25);
    transition: all 0.3s ease;
}

.about-image:hover .image-card-icon {
    transform: rotate(15deg) scale(1.1);
}

.image-card-content {
    display: flex;
    flex-direction: column;
}

.image-card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0057b7;
    line-height: 1;
    background: linear-gradient(90deg, #0057b7, #4b6fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.image-card-text {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-container {
    margin: 2rem 0;
}

.values-container h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.value-card[data-value-index="1"] {
    animation: valueCardReveal 0.6s ease forwards;
    animation-delay: 0.1s;
}

.value-card[data-value-index="2"] {
    animation: valueCardReveal 0.6s ease forwards;
    animation-delay: 0.2s;
}

.value-card[data-value-index="3"] {
    animation: valueCardReveal 0.6s ease forwards;
    animation-delay: 0.3s;
}

.value-card[data-value-index="4"] {
    animation: valueCardReveal 0.6s ease forwards;
    animation-delay: 0.4s;
}

@keyframes valueCardReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Responsive adjustments for values section */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .value-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Team Section Styles */
.team-section {
    margin-top: 5rem;
    text-align: center;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.08);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s forwards;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.3s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }
.team-member:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.08);
}

.team-member h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.2rem;
    color: var(--text-color);
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f7;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        order: 2;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin: -3rem auto 0;
        z-index: 2;
    }
}

/* COMPLETELY REBUILT FOOTER */
footer {
    background-color: #131c2a;
    color: #fff;
    position: relative;
    padding: 0;
}

.footer-top-border {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #0057b7, #4b6fff, #0057b7);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    position: relative;
}

.back-to-top-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

#backToTopBtn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0057b7, #4b6fff);
    border: none;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#backToTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTopBtn:hover {
    background: linear-gradient(135deg, #003f8a, #0057b7);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 87, 183, 0.4);
}

@media (max-width: 768px) {
    .back-to-top-wrapper {
        bottom: 20px;
        right: 20px;
    }
    
    #backToTopBtn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* Company Block */
.company-block {
    min-width: 250px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b4bcd0;
    margin-bottom: 24px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3b82f6;
    transform: translateY(-5px);
}

/* Links Block */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b4bcd0;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-right: 10px;
    color: #3b82f6;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Websites Block */
.website-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Block */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: #3b82f6;
    font-size: 16px;
    margin-right: 12px;
    margin-top: 3px;
}

.contact-info span {
    color: #b4bcd0;
    font-size: 15px;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-nav {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #b4bcd0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 10px;
}

.footer-nav a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.separator {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.copyright {
    color: #8494ab;
    font-size: 14px;
}

.copyright a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-block {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 20px 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-block {
        grid-column: span 1;
    }
    
    .website-grid {
        gap: 5px;
    }
    
    .back-to-top-wrapper {
        top: -22px;
        right: 10px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}

/* Mobile menu improvements to avoid logo duplication */
@media (max-width: 768px) {
    .mobile-menu.active .mobile-menu-header {
        margin-top: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu.active .mobile-menu-header .logo {
        display: none; /* Hide duplicated logo in mobile menu */
    }
    
    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .mobile-menu {
        padding-top: 60px; /* Add more space at top of mobile menu */
    }
}

/* Enhanced mobile menu styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .mobile-menu {
        padding-top: 70px;
    }
    
    .mobile-menu-header {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        padding: 20px;
        z-index: 1001;
    }
    
    .mobile-close-btn {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        color: white;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    
    .mobile-nav-links {
        margin-top: 20px;
    }
    
    .mobile-nav-links li {
        margin-bottom: 15px;
    }
    
    .mobile-nav-links a {
        font-size: 18px;
        padding: 12px 25px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-action {
        margin-top: 40px;
    }
}

/* Mobile button optimizations */
@media (max-width: 768px) {
    /* Primary buttons */
    .cta-button, .primary-button {
        padding: 10px 16px;
        font-size: 14px;
        min-width: 120px;
    }
    
    /* Secondary buttons */
    .secondary-button {
        padding: 9px 16px;
        font-size: 14px;
        min-width: 120px;
    }
    
    /* Hero buttons group */
    .cta-group {
        gap: 12px;
    }
    
    /* Pricing card buttons */
    .pricing-cta {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Add-on buttons */
    .add-on-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Enterprise info button */
    .enterprise-cta {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Portfolio and solutions buttons */
    .view-project, .learn-more-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    /* Category and filter buttons */
    .category-btn, .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
        margin: 0 4px 8px 4px;
    }
    
    /* View toggle buttons */
    .view-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* Summary button */
    .customize-cta {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Testimonial CTA banner button */
    .testimonial-cta-banner .cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Enhanced mobile optimizations for pricing section */
@media (max-width: 768px) {
    /* Pricing controls */
    .pricing-controls {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    /* Pricing toggle */
    .pricing-toggle {
        font-size: 14px;
    }
    
    /* Pricing cards adjustments */
    .pricing-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .pricing-header h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .price .amount {
        font-size: 32px;
    }
    
    .price .currency {
        font-size: 16px;
    }
    
    .price .period {
        font-size: 14px;
    }
    
    .package-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .features-list {
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .features-list li {
        padding: 6px 0;
    }
    
    /* Plan icons */
    .plan-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    /* Comparison table adjustments */
    .comparison-table th {
        padding: 10px 5px;
        font-size: 13px;
    }
    
    .comparison-table td {
        padding: 8px 5px;
        font-size: 13px;
    }
    
    .comparison-table .price {
        font-size: 16px;
        margin: 5px 0;
    }
    
    .comparison-table .price .amount {
        font-size: 18px;
    }
    
    .comparison-table .price .currency {
        font-size: 13px;
        top: -5px;
    }
    
    .comparison-table .price .period {
        font-size: 12px;
    }
    
    /* Action buttons in table */
    .comparison-table .action-row .pricing-cta {
        padding: 6px 10px;
        font-size: 12px;
        min-width: unset;
    }
}

/* Further mobile optimizations for Add-ons and Hero CTAs */
@media (max-width: 480px) {
    /* Hero section CTA buttons */
    .hero .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero .primary-button,
    .hero .secondary-button {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        margin-bottom: 8px;
    }
    
    /* Add-ons section adjustments */
    .add-on-card {
        padding: 15px;
    }
    
    .add-on-content h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .add-on-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .add-on-features {
        margin-bottom: 12px;
    }
    
    .add-on-features span {
        font-size: 12px;
        margin-right: 8px;
        margin-bottom: 5px;
    }
    
    .add-on-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .add-on-footer .price {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .add-on-btn {
        width: 100%;
        text-align: center;
        padding: 8px;
        font-size: 13px;
    }
    
    /* Category filter buttons */
    .category-filter {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-btn {
        padding: 5px 10px;
        font-size: 12px;
        margin: 0 3px 6px 3px;
    }
    
    /* Summary section */
    .add-ons-summary .summary-container {
        padding: 15px;
    }
    
    .summary-total {
        font-size: 14px;
    }
    
    .total-row.total {
        font-size: 16px;
    }
    
    .customize-cta {
        width: 100%;
        text-align: center;
    }
}

/* Solutions and Portfolio mobile optimizations */
@media (max-width: 768px) {
    /* Solutions section */
    .solution-card {
        padding: 20px;
    }
    
    .solution-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .solution-card p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .solution-features {
        margin-bottom: 15px;
    }
    
    .solution-features li {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .solutions-cta {
        padding: 20px;
    }
    
    .solutions-cta h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .solutions-cta p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    /* Portfolio section */
    .portfolio-filter {
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        justify-content: flex-start;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 13px;
        margin: 0 4px;
        flex-shrink: 0;
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .overlay-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .overlay-content p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .portfolio-tag {
        padding: 4px 10px;
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .view-project {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .portfolio-cta p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    /* For very small screens */
    .solution-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .solutions-cta {
        padding: 15px;
        margin-top: 15px;
    }
    
    .portfolio-filter {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .portfolio-image {
        height: 180px;
    }
}

/* Testimonials and Footer mobile optimizations */
@media (max-width: 768px) {
    /* Testimonial section */
    .testimonial-feature {
        padding: 20px;
    }
    
    .testimonial-quote h3 {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .result-stat .stat-number {
        font-size: 24px;
    }
    
    .result-stat .stat-label {
        font-size: 12px;
    }
    
    .testimonial-author {
        margin-top: 15px;
    }
    
    .author-info img {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 14px;
    }
    
    .author-info p {
        font-size: 12px;
    }
    
    .package-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .testimonial-item {
        padding: 15px;
    }
    
    .testimonial-item blockquote {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .author-compact img {
        width: 35px;
        height: 35px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 12px;
    }
    
    .video-feature {
        margin-top: 20px;
    }
    
    .video-caption h4 {
        font-size: 15px;
    }
    
    .testimonial-cta-banner {
        padding: 20px;
        margin-top: 30px;
    }
    
    .testimonial-cta-banner h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .testimonial-cta-banner p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    /* Footer buttons and links */
    .footer-nav a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    /* Smaller buttons for very small screens */
    .testimonial-cta-banner .cta-button {
        width: 100%;
        max-width: 200px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    .footer-nav a {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 6px;
    }
}

.particles-js-canvas-el {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Fix for button links alignment */
a.pricing-cta, a.primary-button {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.action-row a.pricing-cta {
    display: inline-block;
    min-width: 120px;
}

/* Fix for button links alignment and styling */
a.pricing-cta, a.primary-button, a.secondary-button {
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    cursor: pointer;
}

a.primary-button {
    width: auto;
}

.cta-group a.primary-button, 
.cta-group a.secondary-button {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-row a.pricing-cta {
    display: inline-block;
    min-width: 120px;
    padding: 8px 14px;
}

/* Values Section with Image */
.values-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.values-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 400px;
}

.core-values-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.values-image:hover .core-values-image {
    transform: scale(1.05);
}

.values-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    transition: all 0.3s ease;
}

.values-image-content {
    color: white;
}

.values-image-content h5 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.values-image-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Responsive adjustments for values section with image */
@media (max-width: 1024px) {
    .values-grid-container {
        grid-template-columns: 1fr;
    }
    
    .values-image {
        min-height: 350px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-image {
        min-height: 280px;
    }
    
    .values-image-overlay {
        padding: 1.5rem;
    }
    
    .values-image-content h5 {
        font-size: 1.2rem;
    }
}
/ *   D e p o s i t   I n f o   B o x   * /   . d e p o s i t - i n f o - b o x   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   f l e x - s t a r t ;   m a x - w i d t h :   9 0 0 p x ;   m a r g i n :   0   a u t o   3 r e m ;   p a d d i n g :   1 . 5 r e m ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   r g b a ( 0 ,   8 7 ,   1 8 3 ,   0 . 0 5 ) ,   r g b a ( 7 5 ,   1 1 1 ,   2 5 5 ,   0 . 0 5 ) ) ;   b o r d e r - r a d i u s :   1 r e m ;   b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - p r i m a r y - c o l o r ) ;   b o x - s h a d o w :   0   5 p x   2 0 p x   r g b a ( 0 ,   8 7 ,   1 8 3 ,   0 . 0 8 ) ;   }   . d e p o s i t - i n f o - i c o n   {   f l e x - s h r i n k :   0 ;   w i d t h :   4 0 p x ;   h e i g h t :   4 0 p x ;   m a r g i n - r i g h t :   1 . 2 r e m ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y - c o l o r ) ,   v a r ( - - p r i m a r y - l i g h t ) ) ;   b o r d e r - r a d i u s :   5 0 % ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   c o l o r :   w h i t e ;   f o n t - s i z e :   1 . 2 5 r e m ;   }   . d e p o s i t - i n f o - c o n t e n t   {   f l e x - g r o w :   1 ;   }   . d e p o s i t - i n f o - c o n t e n t   h 4   {   f o n t - s i z e :   1 . 1 r e m ;   m a r g i n - b o t t o m :   0 . 5 r e m ;   c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;   }   . d e p o s i t - i n f o - c o n t e n t   p   {   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   f o n t - s i z e :   0 . 9 5 r e m ;   l i n e - h e i g h t :   1 . 5 ;   m a r g i n - b o t t o m :   0 ;   }   @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {   . d e p o s i t - i n f o - b o x   {   f l e x - d i r e c t i o n :   c o l u m n ;   a l i g n - i t e m s :   c e n t e r ;   t e x t - a l i g n :   c e n t e r ;   p a d d i n g :   1 . 2 r e m ;   }   . d e p o s i t - i n f o - i c o n   {   m a r g i n - r i g h t :   0 ;   m a r g i n - b o t t o m :   1 r e m ;   }   . d e p o s i t - i n f o - c o n t e n t   h 4   {   f o n t - s i z e :   1 r e m ;   }   . d e p o s i t - i n f o - c o n t e n t   p   {   f o n t - s i z e :   0 . 9 r e m ;   }   }  
 /*
Deposit
Info
Box
*/
.deposit-info-box { display: flex; align-items: flex-start; max-width: 900px; margin: 0 auto 3rem; padding: 1.5rem; background: linear-gradient(to right, rgba(0, 87, 183, 0.05), rgba(75, 111, 255, 0.05)); border-radius: 1rem; border-left: 4px solid var(--primary-color); box-shadow: 0 5px 20px rgba(0, 87, 183, 0.08); }
.deposit-info-icon { flex-shrink: 0; width: 40px; height: 40px; margin-right: 1.2rem; background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; }
.deposit-info-content { flex-grow: 1; } .deposit-info-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-color); } .deposit-info-content p { color: var(--text-light); font-size: 0.95rem; line-height: 1.5; margin-bottom: 0; }
@media (max-width: 768px) { .deposit-info-box { flex-direction: column; align-items: center; text-align: center; padding: 1.2rem; } .deposit-info-icon { margin-right: 0; margin-bottom: 1rem; } .deposit-info-content h4 { font-size: 1rem; } .deposit-info-content p { font-size: 0.9rem; } }
