/* Inquiry Modal (Professional, Reusable) */
.dn-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(11, 23, 40, 0.6);
    z-index: 2000;
    padding: 20px;
    font-family: var(--font-inter);
    transition: opacity 0.2s;
}
.dn-modal.show { display: flex; }
.dn-modal-dialog {
    background: var(--white);
    max-width: 420px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(24,50,102,0.18), 0 2px 8px rgba(24,50,102,0.08);
    padding: 24px 22px 18px 22px;
    position: relative;
    animation: modalPopIn 0.25s cubic-bezier(.4,1.4,.6,1) 1;
}
@keyframes modalPopIn {
    0% { transform: scale(0.96) translateY(30px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.dn-modal-title {
    margin: 0 0 18px 0;
    color: var(--dark-blue);
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.dn-modal p {
    color: var(--slate-500);
    margin-bottom: 22px;
    font-size: 1.04rem;
}
.dn-modal-close {
    position: absolute; right: 14px; top: 12px; background: transparent; border: 0; font-size: 1.5rem; color: var(--slate-400); cursor: pointer; transition: color 0.2s; line-height: 1;
}
.dn-modal-close:hover { color: var(--primary-blue); }
.dn-modal-form .form-group { margin-bottom: 10px; }
.dn-modal-form input, .dn-modal-form textarea, .dn-modal-form select {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--slate-200);
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark-blue);
    background: var(--slate-50);
    margin-bottom: 0;
    transition: border-color 0.2s;
}
.dn-modal-form input:focus, .dn-modal-form textarea:focus, .dn-modal-form select:focus {
    border-color: var(--primary-blue);
    outline: none;
}
.dn-modal-form textarea { min-height: 80px; resize: vertical; }
.dn-modal-form button[type="submit"] {
    margin-top: 6px;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(13,135,236,0.07);
}
.dn-modal-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 0 24px 0;
    color: #0a7c3a;
    font-size: 1.08rem;
    font-weight: 500;
    min-height: 180px;
}
.dn-success-anim {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.dn-success-check {
    stroke: #16a34a;
    stroke-width: 3.5;
    background: none;
    display: block;
}
.dn-success-circle {
    stroke: #d1fae5;
    stroke-width: 3.5;
    animation: dn-success-circle 0.5s ease;
}
.dn-success-checkmark {
    stroke: #16a34a;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    transition: stroke-dashoffset 0.6s cubic-bezier(.4,1.4,.6,1);
}
@keyframes dn-success-circle {
    0% { stroke-dasharray: 0 160; }
    100% { stroke-dasharray: 160 0; }
}
.dn-success-message {
    margin-top: 8px;
    color: #183266;
    font-size: 1.08rem;
    font-weight: 600;
}
}
@media (max-width: 480px) {
    .dn-modal-dialog { padding: 10px 4px 8px 4px; }
}
/* Custom CSS for DigitalNext Pages - Apple/Meta Inspired Design */

:root {
    --primary-blue: #0d87ec;
    --dark-blue: #183266;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --white: #ffffff;
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-inter);
    color: var(--slate-600);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-blue);
    font-weight: 700;
    letter-spacing: -0.025em; /* tight tracking */
}

/* Utilities */
.text-primary-blue { color: var(--primary-blue) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }
.bg-slate-50 { background-color: var(--slate-50) !important; }
.bg-blue-50 { background-color: #eff6ff !important; }
.bg-dark-blue { background-color: var(--dark-blue) !important; }

.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

.shadow-soft { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); }
.shadow-medium { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025); }
.shadow-large { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02); }
.drop-shadow-xl { filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); }

.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }



/* Product-hero-section */
.product-hero-section {
    padding-top: 160px;
    padding-bottom: 80px; 
    background: var(--slate-50);
    position: relative;
    z-index: 10;
}

.product-hero-section .hero-box {
    margin-top: 50px;
    padding: 4rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0b224f 100%);
    border-radius: 2rem;
    box-shadow: 0 20px 40px -10px rgba(24, 50, 102, 0.3);
}

.product-hero-section .hero-pattern-overlay {
 background: radial-gradient(circle, rgba(13, 135, 236, 0.15) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.product-hero-section .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 3rem;
}

.product-hero-section .text-highlight {
    color: #ffcb00; /* Yellow/Gold highlight */
    background: linear-gradient(to right, #ffcb00, #ff9500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-hero-section .hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-tech-primary {
    background-color: #ffcb00;
    color: var(--dark-blue);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 203, 0, 0.3);
    display: inline-block;
}

.btn-tech-primary:hover {
    background-color: #e6b800;
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 203, 0, 0.4);
}

.btn-tech-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.btn-tech-outline:hover {
    background-color: white;
    color: var(--dark-blue) !important;
    border-color: white;
}

.product-hero-section .hero-glow-tech {
    position: absolute;
    inset: -0.5rem -2rem;
    background: radial-gradient(circle, rgba(13, 135, 236, 0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.product-hero-section .hero-image-wrapper {
    max-width: 350px;
    margin: 0 auto;
}

.product-hero-section .product-hero-image {
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .product-hero-section { padding-top: 220px; padding-bottom: 100px; } /* Removed margin */
    .product-hero-section .hero-title { font-size: 2rem; }
    .product-hero-section .hero-box { margin-bottom: 0; } 
}

@media (max-width: 991px) {
    .product-hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .product-hero-section .hero-box {
        padding: 3rem 2rem;
        margin-top: 30px;
        text-align: center;
    }

    .product-hero-section .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .product-hero-section .hero-description {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .product-hero-section .d-flex {
        justify-content: center !important;
    }

    .product-hero-section .hero-image-wrapper {
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .product-hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .product-hero-section .hero-box {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
        margin-top: 50px;
    }

    .product-hero-section .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem !important;
    }

    .product-hero-section .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .btn-tech-primary, 
    .btn-tech-outline {
        width: 100%;
        display: block;
    }

    .product-hero-section .hero-image-wrapper {
        max-width: 180px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
    }

    /* General Mobile Card Fixes */
    .pricing-card, .solution-card, .feature-card, .support-card {
        padding: 1.5rem !important;
    }

    /* FAQ Mobile Fix */
    .faq-button {
        padding: 1rem 1.25rem;
    }
    .faq-content {
        padding: 0 1.25rem 1.5rem;
    }
}



.btn-primary-custom {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(13, 135, 236, 0.3);
}

.btn-primary-custom:hover {
    background-color: #0b74cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(13, 135, 236, 0.4);
}

.btn-outline-custom {
    background-color: white;
    color: var(--dark-blue);
    border: 1px solid var(--slate-200);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover,
.btn-outline-custom.active {
    background-color: var(--primary-blue);
    color: white !important;
    border-color: var(--primary-blue);
    box-shadow: 0 4px 6px -1px rgba(13, 135, 236, 0.3);
}

/* Ringtone Card */
.ringtone-card {
    background: white;
    border: 1px solid var(--slate-100);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ringtone-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ringtone-cover {
    height: 160px; /* Reduced height */
    background-size: cover;
    background-position: center;
    position: relative;
}

.ringtone-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ringtone-card:hover .ringtone-overlay {
    opacity: 1;
}

.btn-play-custom {
    background: none;
    border: none;
    color: var(--primary-blue);
    padding: 0;
    margin: 0;
    line-height: 1;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-play-custom i {
    font-size: 3rem !important; /* Force large size on the icon */
    line-height: 1 !important;
    display: block;
}

.btn-play-custom:hover {
    transform: scale(1.1);
    color: var(--dark-blue);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.audio-controls input[type=range] {
    accent-color: var(--primary-blue);
    height: 6px;
}

/* Enhance slider thumb usability */
.form-range::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    cursor: pointer;
    transition: transform 0.1s;
}

.form-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.hero-glow-tech {
    position: absolute;
    inset: -0.5rem -2rem;
    background: radial-gradient(circle, rgba(13, 135, 236, 0.3) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

@media (min-width: 992px) {
    .pos-hero-section { padding-top: 220px; padding-bottom: 100px; } /* Removed margin */
    .hero-title { font-size: 3.75rem; }
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px -5px rgba(13, 135, 236, 0.1);
    transform: translateY(-3px);
}

.feature-icon {
    background-color: #eff6ff; /* blue-50 */
    color: var(--primary-blue);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 0;
}

/* Home Page Specific Feature Card Overrides */
.services-section .services .feature-card {
    overflow: hidden;
}

.services-section .services .feature-card:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px -5px rgba(13, 135, 236, 0.3);
}

.services-section .services .feature-card:hover h6 {
    color: white !important;
}

.services-section .services .feature-card .feature-icon {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
}

.services-section .services .feature-card .feature-icon i {
    font-size: 2.5rem !important;
    color: inherit !important;
    margin-block-end: 0 !important;
}

.services-section .services .feature-card:hover .feature-icon {
    background-color: white;
    color: var(--primary-blue);
}

.services-section .services .feature-card span {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background-color: var(--slate-100);
    color: var(--slate-500);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.services-section .services .feature-card:hover span {
    background-color: #ffcb00;
    color: var(--dark-blue);
}

/* Solution Cards */
.solution-card {
    background-color: var(--slate-50);
    border: 1px solid var(--slate-100); /* Added border for definition */
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.solution-card:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(13, 135, 236, 0.15); /* Colored shadow on hover */
}

.solution-card .icon-box {
    width: 4rem;
    height: 4rem;
    background-color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.solution-card:hover .icon-box {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.solution-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color 0.3s ease;
}

.solution-card:hover h3 { color: white; }
.solution-card:hover p { color: #dbeafe; } /* blue-100 */
.solution-card:hover svg { color: var(--primary-blue); } /* Keep icon blue inside white box */

/* Core Feature Cards (CRM Page) */
.core-feature-card {
    background-color: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.core-feature-card .icon-box {
    width: 4rem;
    height: 4rem;
    background-color: var(--slate-50);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.core-feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(13, 135, 236, 0.15);
    background-color: var(--white); /* Keep white background */
}

.core-feature-card:hover .icon-box {
    background-color: var(--primary-blue); /* Icon background blue */
    box-shadow: 0 10px 15px -3px rgba(13, 135, 236, 0.3);
}

.core-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.core-feature-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color 0.3s ease;
}

.core-feature-card:hover h3 { color: var(--primary-blue); } /* Title blue */
.core-feature-card:hover p { color: var(--slate-500); } /* Text normal */
.core-feature-card:hover i { color: white !important; } /* Icon white */
.core-feature-card:hover .text-primary-blue { color: white !important; }

/* Pricing */
.pricing-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--slate-100);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    background-color: var(--dark-blue);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular .popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffcb00;
    color: var(--dark-blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-bottom-left-radius: 0.75rem;
    text-transform: uppercase;
}

.pricing-card.popular h3, .pricing-card.popular .price { color: white; }
.pricing-card.popular p { color: #bfdbfe; } /* blue-200 */
.pricing-card.popular li { color: #dbeafe; } /* blue-100 */
.pricing-card.popular li svg { color: #ffcb00; }

.price-tag {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-old {
    text-decoration: line-through;
    color: var(--slate-400);
    font-size: 1.125rem;
    margin-right: 0.5rem;
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-button {
    width: 100%;
    padding: 1.25rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.125rem;
    cursor: pointer; /* Added cursor pointer */
    transition: color 0.2s ease;
}

.faq-button:hover {
    color: var(--primary-blue);
}

.faq-button:focus { outline: none; }

.faq-content {
    padding: 0 2rem 1.5rem;
    color: var(--slate-600);
    line-height: 1.6;
    display: none;
}

.faq-content.show { display: block; }

.rotate-180 { transform: rotate(180deg); }

/* CTA Section */
.cta-section {
    padding: 2rem !important;
    background-color: var(--slate-50);
}

.cta-box {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0b224f 100%);
    border-radius: 2rem;
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 40px -10px rgba(24, 50, 102, 0.3);
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem !important;
    text-align: center;
    width: 100%;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem !important;
    max-width: 700px;
    line-height: 1.5;
    text-align: center !important;
    width: 100%;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.cta-pattern-overlay {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 135, 236, 0.15) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem !important;
    }
    .cta-description {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .cta-box { padding: 3rem; }
}

/* Support Icons */
.support-card {
    padding: 2rem;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-100); /* Added border */
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-card:hover { 
    background-color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px -5px rgba(13, 135, 236, 0.1);
    transform: translateY(-3px);
}

.support-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-blue);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Contact Form */
.contact-section {
    background-color: var(--slate-50) !important;
    padding: 5rem 0;
}

.contact-form-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
}

.form-control-custom {
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(13, 135, 236, 0.1);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--slate-400);
}

/* Footer - White Version */
footer {
    background-color: white;
    color: var(--slate-600);
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--slate-100);
}

footer .section-title.mail {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

footer .section-title.mail:hover {
    color: var(--primary-blue);
}

footer .footer-title {
    color: var(--dark-blue);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

footer .footer-list-item {
    margin-bottom: 0.75rem;
}

footer .footer-list-item a {
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1rem;
}

footer .footer-list-item a:hover {
    color: var(--primary-blue);
}

footer .footer-info p, footer .footer-info a {
    color: var(--slate-600);
    font-size: 0.95rem;
    text-decoration: none;
}

footer hr {
    border-color: var(--slate-200);
    margin: 3rem 0;
}

footer .copyright p {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-bottom: 0;
}

footer .social-icons li {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--slate-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

footer .social-icons li:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

footer .social-icons i {
    color: var(--dark-blue);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

footer .social-icons li:hover i {
    color: white;
}

/* Support Tools */
.support-tool-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Increased spacing */
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    color: var(--dark-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.support-tool-btn:hover {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.support-tool-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.support-tool-btn:hover svg {
    transform: scale(1.1);
}

/* Zoom Brand */
.support-tool-btn.zoom:hover {
    border-color: #2D8CFF;
    color: #2D8CFF;
}
.support-tool-btn.zoom svg path {
    fill: #2D8CFF;
}

/* AnyDesk Brand */
.support-tool-btn.anydesk:hover {
    border-color: #EF3024;
    color: #EF3024;
}
.support-tool-btn.anydesk svg path {
    fill: #EF3024;
}

/* AnyView Brand */
.support-tool-btn.anyview:hover {
    border-color: #00B050;
    color: #00B050;
}
.support-tool-btn.anyview svg path {
    fill: #00B050;
}

/* TeamViewer Brand */
.support-tool-btn.teamviewer:hover {
    border-color: #0E80C8;
    color: #0E80C8;
}
.support-tool-btn.teamviewer svg path {
    fill: #0E80C8;
}

/* Mobile and Tablet Responsive Fixes Removed - Replaced by .product-hero-section queries */

.btn-gradient-primary {
    background: linear-gradient(90deg, #2b70fa 0%, #facc15 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 112, 250, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(43, 112, 250, 0.4);
    color: white;
    background: linear-gradient(90deg, #1d4ed8 0%, #eab308 100%);
}

/* Slick Slider Arrows */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.slick-prev i, .slick-next i {
    font-size: 1.25rem;
    line-height: 1;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.slick-prev:hover i, .slick-next:hover i {
    color: white;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/* Adjust slider container to prevent arrow clipping */
.service-slider {
    padding-left: 20px;
    padding-right: 20px;
}

/* Horizontal Solution Card */
.solution-card.horizontal {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1.5rem 2rem;
}

.solution-card.horizontal .icon-box {
    margin: 0 1.5rem 0 0;
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
}

.solution-card.horizontal h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.solution-card.horizontal p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Fix double arrows in Slick Slider */
.slick-prev:before, .slick-next:before {
    content: none !important;
    display: none !important;
}

/* Technology Page Hero Animation */
.tech-hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 300px;
}

.tech-branding-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 100%;
    max-width: 300px; /* Large background icon */
    opacity: 1;
}

.tech-robot-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 300px;
}

.animate-float-slow {
    animation: floatUpDn 6s ease-in-out infinite;
}

@keyframes floatUpDn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Demo Link Cards */
.demo-link-card {
    transition: all 0.3s ease;
}
.demo-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}
.demo-link-card:hover .action-icon {
    transform: translateX(5px);
}
.action-icon {
    transition: transform 0.3s ease;
}


/* Hero Video Styling to match original Image */
.hero-section .hero-bg video {
    height: 100%;
    width: 100%;
    max-height: 460px !important;
    object-fit: cover; /* Ensure video covers area appropriately if aspect ratio differs */
}

/* Remove default hero background image to allow video background */
.hero-section {
    background-image: none !important;
}
