/* Modern Hero Banner CSS - Completely Redesigned */
.modern-hero-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.hero-floating-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
}

.floating-circle-1 {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
    filter: blur(40px);
}

.floating-circle-2 {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite reverse;
    filter: blur(50px);
}

.floating-circle-3 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 9s ease-in-out infinite;
    filter: blur(45px);
}

.hero-main-container {
    position: relative;
    z-index: 2;
}

.hero-text-area {
    padding: 40px 0;
}

.hero-trust-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.15));
    backdrop-filter: blur(10px);
    padding: 14px 32px;
    border-radius: 50px;
    color: #93c5fd;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 32px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-main-title {
font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: -0.04em;
  background: #1f2937  ;
    background-image: none;
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;}

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

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 50px;
    max-width: 580px;
    font-weight: 400;
}

.hero-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-primary-btn {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 22px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    border: none;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

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

.hero-primary-btn:hover::before {
    left: 100%;
}

.hero-primary-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    padding: 22px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    color: white;
    text-decoration: none;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 60px;
}

.hero-rating-stars {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-star-group {
    display: flex;
    gap: 4px;
}

.hero-star {
    color: #fbbf24;
    font-size: 20px;
}

.hero-rating-text {
    color: #f0f9ff;
    font-weight: 700;
    margin-left: 10px;
    font-size: 1.1rem;
}

.hero-divider {
    width: 2px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-customer-count {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-users-icon {
    color: #60a5fa;
    font-size: 24px;
}

.hero-customer-text {
    color: #f0f9ff;
    font-weight: 700;
    font-size: 1.05rem;
}

.hero-image-area {
    position: relative;
    padding: 40px 0;
}

.hero-image-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1500px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.6s ease;
    border: 3px solid rgba(59, 130, 246, 0.3);
}

.hero-image-container:hover {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-main-image:hover {
    transform: scale(1.08);
}

.hero-stats-card {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 35px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    color: #1e3a8a;
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 8px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-floating-icon-1 {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    animation: heroPulse 2.5s infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-floating-icon-2 {
    position: absolute;
    bottom: 110px;
    left: -25px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.2));
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    animation: heroBounce 2s infinite;
}

.hero-scroll-text {
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

@keyframes heroBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes heroPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 25px 60px rgba(59, 130, 246, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 3.2rem !important;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-image-area {
        margin-top: 50px;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 25px !important;
    }

    .hero-buttons-wrapper {
        justify-content: center;
    }

    .hero-primary-btn {
        padding: 18px 36px;
        font-size: 1rem;
    }
}
