﻿
.hero-section {
    position: relative;
    padding: 5rem 0;
}

.hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.05;
    z-index: -1;
}

.hero-container {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

[data-bs-theme="dark"] .hero-title {
    color: #e3e3e3;
}

.hero-title .highlight {
    color: #2563eb;
}

.hero-description {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.75;
}

[data-bs-theme="dark"] .hero-description {
    color: #8ea2c1;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-primary-button {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
    display: inline-block;
}

    .hero-primary-button:hover {
        background: #1d4ed8;
        color: #ffffff;
        text-decoration: none;
    }

.hero-secondary-button {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

    .hero-secondary-button:hover {
        background: #2563eb;
        color: #ffffff;
        text-decoration: none;
    }

.hero-contact-card {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.hero-contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.hero-contact-subtitle {
    color: #6b7280;
}

[data-bs-theme="dark"] .hero-contact-title {
    color: #e3e3e3;
}

[data-bs-theme="dark"] .hero-contact-subtitle {
    color: #8ea2c1;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.hero-contact-icon {
    background: #2563eb;
    padding: 0.75rem;
    border-radius: 9999px;
    margin-right: 1rem;
}

    .hero-contact-icon svg {
        width: 1.5rem;
        height: 1.5rem;
        color: #ffffff;
    }

.hero-contact-item.green {
    background: #f0fdf4;
}

.hero-contact-icon.green {
    background: #16a34a;
}

.hero-contact-text {
    text-align: left;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.hero-contact-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .hero-contact-link.green {
        color: #16a34a;
    }

    .hero-contact-link:hover {
        text-decoration: underline;
    }

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

:root {
    --faq-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --faq-text-color: #333;
    --accordion-bg: rgba(255, 255, 255, 0.4);
    --accordion-border: rgba(255, 255, 255, 0.8);
    --accordion-content-bg: rgba(255, 255, 255, 0.15);
    --accordion-content-border: rgba(255, 255, 255, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --ways-icon-color: black;
}

[data-bs-theme="dark"] {
    --faq-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a3a 100%);
    --faq-text-color: #e0e0e0;
    --accordion-bg: rgba(40, 40, 40, 0.4);
    --accordion-border: rgba(100, 100, 100, 0.5);
    --accordion-content-bg: rgba(40, 40, 40, 0.3);
    --accordion-content-border: rgba(100, 100, 100, 0.4);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --ways-icon-color: white;
}

.ways-section {
    padding: 3rem 0;
}

.ways-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    background: transparent;
}

.ways-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ways-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--faq-text-color);
    margin-bottom: 1rem;
}

.ways-description {
    font-size: 1.25rem;
    color: var(--faq-text-color);
    max-width: 40rem;
    margin: 0 auto;
    opacity: 0.9;
}

[data-bs-theme="dark"] .ways-description {
    color: #8ea2c1;
}

.ways-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ways-glassy-card {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.4), rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(147, 197, 253, 0.5);
    box-shadow: 0 4px 16px rgba(16, 17, 36, 0.2);
    border-radius: 12px;
    overflow: hidden;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    transform: translateY(0);
}

    .ways-glassy-card:hover {
        transform: translateY(-0.25rem);
        box-shadow: 0 6px 20px rgba(16, 17, 36, 0.3);
        border-color: rgba(147, 197, 253, 0.7);
    }

@supports not (backdrop-filter: blur(12px)) {
    .ways-glassy-card {
        background: linear-gradient(135deg, rgba(219, 234, 254, 0.7), rgba(255, 255, 255, 0.5));
    }
}

[data-bs-theme="dark"] .ways-glassy-card {
    background: rgba(255, 255, 255, 0.05);
}

.ways-icon-container {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .ways-icon-container.blue {
        background: #dbeafe;
    }

    .ways-icon-container.green {
        background: #d1fae5;
    }

    .ways-icon-container.red {
        background: #fee2e2;
    }

.ways-icon {
    width: 2rem;
    height: 2rem;
}

    .ways-icon.blue {
        color: #2563eb;
    }

    .ways-icon.green {
        color: #16a34a;
    }

    .ways-icon.red {
        color: #dc2626;
    }

.ways-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--faq-text-color);
    margin-bottom: 0.75rem;
}

.ways-card-text {
    color: var(--faq-text-color);
    line-height: 1.75;
    opacity: 0.9;
}

.ways-card-link {
    color: var(--faq-text-color);
    font-weight: 600;
    transition: color 0.2s ease;
    text-decoration: none;
}

    .ways-card-link:hover {
        text-decoration: none;
    }

    .ways-card-link.blue:hover {
        color: #2563eb;
    }

    .ways-card-link.green:hover {
        color: #16a34a;
    }

    .ways-card-link.red:hover {
        color: #dc2626;
    }

.ways-card-subtext {
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

    .ways-card-subtext.blue {
        color: #2563eb;
    }

    .ways-card-subtext.green {
        color: #16a34a;
    }

    .ways-card-subtext.red {
        color: #dc2626;
    }


.ways-stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ways-stats-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--faq-text-color);
    margin-bottom: 1rem;
}

.ways-stats-description {
    font-size: 1.25rem;
    color: var(--faq-text-color);
    opacity: 0.9;
}

[data-bs-theme="dark"] .ways-stats-description {
    color: #8ea2c1;
}

.ways-stats-grid {
    display: grid;
    gap: 2rem;
}

.ways-stats-item {
    text-align: center;
}

.ways-stats-icon-container {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .ways-stats-icon-container.blue {
        background: #dbeafe;
    }

    .ways-stats-icon-container.green {
        background: #d1fae5;
    }

    .ways-stats-icon-container.purple {
        background: #ede9fe;
    }

    .ways-stats-icon-container.red {
        background: #fee2e2;
    }

.ways-stats-icon {
    width: 2rem;
    height: 2rem;
}

    .ways-stats-icon.blue {
        color: #2563eb;
    }

    .ways-stats-icon.green {
        color: #16a34a;
    }

    .ways-stats-icon.purple {
        color: #7c3aed;
    }

    .ways-stats-icon.red {
        color: #dc2626;
    }

.ways-stats-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--faq-text-color);
    margin-bottom: 0.5rem;
}

.ways-stats-text {
    color: var(--faq-text-color);
    opacity: 0.9;
}

.ways-social-container {
    text-align: center;
    margin-top: 4rem;
}

.ways-social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--faq-text-color);
    margin-bottom: 1.5rem;
}

.ways-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.ways-social-link {
    background: var(--accordion-bg);
    padding: 1rem;
    border-radius: 9999px;
    border: 1px solid var(--accordion-border);
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: all 0.3s ease;
    transform: translateY(0);
}

    .ways-social-link:hover {
        box-shadow: 0 10px 15px var(--shadow-color);
        transform: translateY(-0.25rem);
    }

.ways-social-icon {
    width: 2rem;
    height: 2rem;
    fill: var(--ways-icon-color);
}

    .ways-social-icon.linkedin {
        color: transparent;
    }

    .ways-social-icon.twitter {
        color: transparent;
    }

    .ways-social-icon.facebook {
        color: transparent;
    }

@media (min-width: 768px) {
    .ways-title {
        font-size: 2.5rem;
    }

    .ways-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ways-stats-container {
        padding: 3rem;
    }
}

@media (min-width: 556px) {
    .ways-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .ways-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* faqs started */
:root {
    --faq-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --faq-text-color: #333;
    --accordion-bg: rgba(255, 255, 255, 0.4);
    --accordion-border: rgba(255, 255, 255, 0.8);
    --accordion-content-bg: rgba(255, 255, 255, 0.15);
    --accordion-content-border: rgba(255, 255, 255, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] {
    --faq-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a3a 100%);
    --faq-text-color: #e0e0e0;
    --accordion-bg: rgba(40, 40, 40, 0.4);
    --accordion-border: rgba(100, 100, 100, 0.5);
    --accordion-content-bg: rgba(40, 40, 40, 0.3);
    --accordion-content-border: rgba(100, 100, 100, 0.4);
    --shadow-color: rgba(0, 0, 0, 0.3);
}


.glassmorphic-faq-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.5s ease;
    background: transparent;
    color: var(--faq-text-color);
    padding: 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 2rem;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cstm-acc-container {
    width: 100%;
    margin: 0 auto;
}

.cstm-acc-item {
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.cstm-acc-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: var(--accordion-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accordion-border);
    border-radius: 12px;
}

    .cstm-acc-header.active {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.cstm-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cstm-acc-content-inner {
    padding: 20px;
    background: var(--accordion-content-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accordion-content-border);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.cstm-acc-header:hover {
    transform: translateY(-2px);
}

.cstm-acc-title {
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    margin-right: 20px;
}

.cstm-acc-icon {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.cstm-acc-header.active .cstm-acc-icon {
    transform: rotate(180deg);
}

.cstm-acc-content-inner p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cstm-acc-content-inner a {
    color: #007bff;
    text-decoration: none;
}

    .cstm-acc-content-inner a:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .glassmorphic-faq-container {
        padding: 20px;
    }

    .cstm-acc-header {
        padding: 15px;
    }

    .cstm-acc-content-inner {
        padding: 15px;
    }

    .cstm-acc-title {
        font-size: 1.1rem;
    }

    .faq-header {
        font-size: 1.5rem;
    }
}

.heading-underline {
    width: 6rem;
    height: .25rem;
    background: linear-gradient(to right, #60a5fa, #2563eb, #60a5fa);
    border-radius: 9999px;
    margin: 0 auto;
}

.faq-radial-gradient-1 {
    background: radial-gradient(circle at 30% 20%, rgb(59 157 246 / 29%), transparent 50%);
    pointer-events: none;
}

[data-bs-theme="dark"] .faq-radial-gradient-1 {
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, .15), transparent 50%);
    pointer-events: none;
}

.faq-radial-gradient-2 {
    background: radial-gradient(circle at 70% 80%, rgb(162 207 255 / 56%), transparent 50%);
    pointer-events: none;
}

[data-bs-theme="dark"] .faq-radial-gradient-2 {
    background: radial-gradient(circle at 70% 80%, rgba(99, 102, 241, .1), transparent 50%);
    pointer-events: none;
}

