.text-gradient {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-soft {
    background-color: rgba(59, 130, 246, 0.1);
}

.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero .content {
    position: relative;
    z-index: 1;
}

.hero .badge {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero .badge:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.hero .description {
    max-width: 90%;
}

@media (max-width: 991.98px) {
    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .main-image {
        transform: none;
    }

    .main-image:hover {
        transform: translateY(-5px);
    }

    .floating-shape {
        display: none;
    }
}

.hero .btn-primary {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border: none;
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    background: linear-gradient(45deg, #2563eb, #3b82f6);
}

.hero .btn-outline-primary {
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(10px);
}

.hero .btn-outline-primary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.trust-badges {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges .trust-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.trust-badges .trust-item:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.trust-badges .trust-item i {
    color: #60a5fa;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.main-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.main-image {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
}

.main-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    backdrop-filter: blur(10px);
    z-index: 1;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.shape-1 {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -30px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 120px;
    height: 120px;
    bottom: 30px;
    left: -40px;
    animation: float 10s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 40px;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
}

.feature-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
}

.feature-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 220px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card .icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card .icon-wrapper i {
    font-size: 1.4rem;
    color: #60a5fa;
}

.feature-card .content {
    flex-grow: 1;
}

.feature-card .content h6 {
    color: #ffffff;
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
}

.feature-card .content p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.card-1 {
    top: 5%;
    right: -120px;
    animation: slideIn 0.5s ease-out forwards;
}

.card-2 {
    top: 45%;
    left: -120px;
    animation: slideIn 0.5s ease-out 0.2s forwards;
}

.card-3 {
    bottom: 5%;
    right: -120px;
    animation: slideIn 0.5s ease-out 0.4s forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .feature-cards {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .feature-card {
        position: relative !important;
        width: 100%;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        opacity: 1;
        transform: none;
    }

    .feature-card:hover {
        transform: translateY(-3px);
    }

    .floating-shape {
        display: none;
    }
}

.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.testimonial-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-item:hover::before {
    opacity: 1;
}

.client-img-wrapper {
    position: relative;
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #10B981;
    border: 2px solid #0f172a;
    border-radius: 50%;
}

.badge.bg-primary-soft {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge.bg-primary-soft:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonial-item {
        margin-bottom: 1.5rem;
    }
}

.call-to-action .floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    backdrop-filter: blur(10px);
    z-index: 1;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.call-to-action .shape-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
    animation: float 8s ease-in-out infinite;
}

.call-to-action .shape-2 {
    width: 100px;
    height: 100px;
    bottom: 30px;
    left: -40px;
    animation: float 10s ease-in-out infinite;
}

.call-to-action .main-image {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.call-to-action .main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.call-to-action .feature-item {
    transition: all 0.3s ease;
}

.call-to-action .feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

.call-to-action .floating-card {
    transition: all 0.3s ease;
}

.call-to-action .floating-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
}

.portfolio {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    pointer-events: none;
}

.portfolio::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #60a5fa;
}

.portfolio-item:hover .icon-wrapper {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
}

.card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-body {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

.badge.bg-primary-soft {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.badge.bg-primary-soft:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.card:hover .card-body {
    background: rgba(15, 23, 42, 0.9);
}

.card:hover .badge.bg-primary-soft {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-title h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .portfolio {
        padding: 80px 0;
    }
}

.faq {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    pointer-events: none;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.faq-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
}

.faq-icon i {
    font-size: 1.5rem;
}

.faq-arrow {
    color: rgba(59, 130, 246, 0.1);
    position: absolute;
    right: -50px;
    bottom: -50px;
    transform: rotate(15deg);
}

@media (max-width: 991.98px) {
    .faq {
        padding: 80px 0;
    }

    .faq-arrow {
        display: none;
    }
}
