﻿#subscriptionModal .modal-content {
    border: none;
    border-radius: 15px;
}

#subscriptionModal .modal-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#subscriptionModal .form-control,
#subscriptionModal .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

#subscriptionModal .btn-primary {
    padding: 0.75rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border: none;
    transition: transform 0.3s ease;
}

    #subscriptionModal .btn-primary:hover {
        transform: translateY(-2px);
    }

.bg-gradient-primary {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
}

.beta-signup-section {
    position: relative;
    background: linear-gradient(135deg, #18184a 0%, #19398a 100%);
    overflow: hidden;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    opacity: 0.9;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.beta-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.beta-form .form-control,
.beta-form .form-select {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 10px;
    height: 60px;
}

.beta-form .form-floating label {
    padding: 1rem;
}

.beta-form .btn-light {
    background: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: #1a237e;
    transition: all 0.3s ease;
}

    .beta-form .btn-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.beta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape-circle-1,
.shape-circle-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.shape-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.shape-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a237e;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .floating-icon.icon-1 {
        top: 15%;
        right: 10%;
        animation: float 3s ease-in-out infinite;
    }

    .floating-icon.icon-2 {
        bottom: 15%;
        left: 10%;
        animation: float 3s ease-in-out infinite 1.5s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .beta-signup-section {
        padding: 4rem 1rem;
    }

    .beta-form-wrapper {
        padding: 1.5rem;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }
}
/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    min-height: 400px;
}

.featured-icon-wrapper {
    min-height: 400px;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-shapes .shape-1,
.blog-shapes .shape-2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.blog-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.blog-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

/* Blog Cards */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

.icon-wrapper {
    transition: transform 0.3s ease;
}

.blog-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Category Filters */
.category-filters .btn {
    margin-left: 0.5rem;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
}

/* Newsletter Section */
.subscription-form .form-control {
    border-radius: 50px;
    padding-left: 1.5rem;
}

.subscription-form .btn {
    border-radius: 50px;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-filters {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-top: 1rem;
    }

        .category-filters .btn {
            white-space: nowrap;
        }

    .featured-icon-wrapper {
        min-height: 300px;
    }
}
