/* ===================================================
   PREMIUM ISKCON HERO
   WHITE + DARK BLUE (#284369)
=================================================== */

.hero-slider {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(40, 67, 105, .12),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(59, 130, 246, .08),
            transparent 40%),

        linear-gradient(115deg,
            #ffffff 0%,
            #f7faff 30%,
            #ffffff 58%,
            #284369 58%,
            #284369 100%);
}

/* Premium Divider */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 54%;
    width: 220px;
    height: 100%;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .15),
            rgba(255, 255, 255, .03));

    backdrop-filter: blur(15px);

    transform: skewX(-15deg);

    z-index: 1;
}

/* Blue Glow Right */
.hero-slider::after {
    content: '';
    position: absolute;

    width: 900px;
    height: 900px;

    border-radius: 50%;

    right: -350px;
    top: -250px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .12),
            transparent 70%);

    animation: glowMove 10s ease-in-out infinite alternate;

    z-index: 1;
}

/* Slide Layout */
.hero-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 100px 8%;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(59, 130, 246, .10),
            transparent 70%);

    left: -120px;
    top: -100px;

    z-index: -1;
}

/* Dot Pattern */
.hero-content::after {
    content: '';

    position: absolute;

    width: 250px;
    height: 250px;

    right: 20px;
    bottom: -80px;

    background-image:
        radial-gradient(rgba(40, 67, 105, .12) 1px,
            transparent 1px);

    background-size: 20px 20px;

    opacity: .4;

    z-index: -1;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #dbeafe;
    color: #284369;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.hero-title {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(90deg,
            #d4a017,
            #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

/* Primary Button */
.primary-btn {
    background: #284369;
    color: #fff;
    box-shadow: 0 15px 35px rgba(40, 67, 105, .25);
}

.primary-btn:hover {
    background: #1f3554;
    color: #fff;
    transform: translateY(-4px);
}

/* Secondary Button */
.secondary-btn {
    background: #fff;
    color: #284369;
    border: 2px solid #284369;
}

.secondary-btn:hover {
    background: #284369;
    color: #fff;
}

/* Right Image */
.hero-image {
    width: 50%;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 2;
}

/* Glass Card Behind Image */
.hero-image::before {
    content: '';

    position: absolute;

    width: 95%;
    height: 95%;

    border-radius: 40px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .18),
            rgba(255, 255, 255, .04));

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(15px);

    transform: rotate(-5deg);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .25);

    z-index: 1;
}

/* Glow Ring */
.hero-image::after {
    content: '';

    position: absolute;

    width: 105%;
    height: 105%;

    border-radius: 40px;

    border: 1px solid rgba(255, 255, 255, .08);

    z-index: 1;

    animation: ringFloat 6s ease-in-out infinite;
}

/* Main Image */
.hero-image img {
    width: 100%;
    max-width: 650px;
    height: 400px;


    position: relative;
    z-index: 2;

    border-radius: 30px;

    object-fit: cover;

    border: 8px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .35),
        0 10px 30px rgba(0, 0, 0, .15);

    animation: floatImage 6s ease-in-out infinite;
}

/* Navigation */
.hero-next,
.hero-prev {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #284369;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.hero-next:hover,
.hero-prev:hover {
    background: #284369;
    color: #fff;
}

.hero-next:after,
.hero-prev:after {
    font-size: 18px;
    font-weight: 700;
}

/* Pagination */
.swiper-pagination {
    bottom: 35px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #284369;
    opacity: .3;
    transition: .3s;
}

.swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 20px;
    opacity: 1;
}

/* Floating Animation */
@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes ringFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes glowMove {

    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-50px, 50px);
    }
}

/* Tablet */
@media(max-width:991px) {

    .hero-slider {
        background: #fff;
    }

    .hero-slider::before,
    .hero-slider::after {
        display: none;
    }

    .hero-slide {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
        min-height: auto;
        padding: 120px 6% 80px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-text {
        margin: auto auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Mobile */
@media(max-width:576px) {

    .hero-slide {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-image img {
        border-radius: 20px;
    }
}


.iskcon-donate-form {
    background: #f1f3f7 !important;
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.custom-top-header {
    background: #fff !important;
    padding: 4px 24px !important;
}

.custom-top-header nav ul {
    gap: 17px;
}

.copyright-wrap {
    background-color: #284369;
    padding: 10px;
}

.iskcon-festival-even-card-title {
    max-width: 250px;
}