/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */



/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #fef5f8 0%, #f8f4ff 100%); */
    background-image: url(/img/banner2.png);
    overflow: hidden;
    padding: 100px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

/* Subheading */
.hero-subheading {
    font-size: 25px;
    color: #6c6c6c;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}

/* Main Title */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #2d2d2d;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Description */
.hero-description {
    font-size: 18px;
    color: #6c6c6c;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing */
.hero-pricing {
    font-size: 25px;
    font-weight: 600;
    color: #E91E63;
    margin-bottom: 25px;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.4);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #E91E63;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #E91E63;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #E91E63;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* Platform Icons */
.platform-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.platform-item {
    text-align: center;
}

.platform-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.platform-icon:hover {
    transform: translateY(-5px);
}

.platform-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.4);
}

.platform-name {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
}

/* Background Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 1;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    top: -100px;
    left: -100px;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    bottom: -150px;
    right: -150px;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    top: 50%;
    left: 10%;
}

.hero-blob-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    top: 20%;
    right: 15%;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.floating-icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 25%;
    right: 10%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-icon-3 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.floating-icon-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 3s;
}

.floating-icon-5 {
    top: 45%;
    right: 5%;
    animation-delay: 4s;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.floating-icon-6 {
    bottom: 25%;
    left: 12%;
    animation-delay: 5s;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   HERO SECTION RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subheading {
        font-size: 15px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .hero-pricing {
        font-size: 28px;
    }
    
    .platform-icons {
        gap: 40px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-subheading {
        font-size: 25px;
        margin-bottom: 20px;
        padding-top: 25px;
    }

}
@media (max-width: 768px) {
    .hero-section {
        padding: 122px 20px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subheading {
        font-size: 23px;
        margin-bottom: 20px;
        padding-top: 10px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .hero-pricing {
        font-size: 25px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 35px;
        font-size: 16px;
    }
    
    .platform-icons {
        gap: 30px;
    }
    
    .platform-icon {
        width: 80px;
        height: 80px;
    }
    
    .platform-icon img {
        width: 55px;
        height: 55px;
    }
    
    .icon-badge {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .platform-name {
        font-size: 20px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    /* .hero-subheading {
        font-size: 13px;
    } */
    
    /* .hero-description {
        font-size: 15px;
    } */
    
    .hero-pricing {
        font-size: 25px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 250px;
    }
    
    .platform-icons {
        gap: 25px;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
    }
    
    .platform-icon img {
        width: 50px;
        height: 50px;
    }
    
    .hero-blob {
        filter: blur(60px);
    }
    
    .floating-icon {
        display: none;
    }
}
