* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

.swiper {
    width: 30%;
    height: 700px;
    margin: 10px auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Large Desktop */
@media (max-width: 1200px) {
    .swiper {
        width: 85%;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .swiper {
        width: 90%;
        margin: 40px auto;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .swiper {
        width: 100%;
        margin: 20px auto;
        border-radius: 0;
    }
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}

/* layer css start  */
/* ===============================
   GLASS LAYER DESIGN
=================================*/

.intro_slide_first {
    position: relative;
}

/* Glass Background Wrapper */
.first_swipe_wraper {
    position: absolute;
    bottom: 30px;
    /* bottom se 30px */
    left: 40px;

    width: 380px;
    padding: 15px 22px;

    border-radius: 40px;

    background: rgba(255, 193, 7, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Text + Icon Layout */
.first_swipe_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Swipe Text */
.swipe-text {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

/* Icon Circle */
.first_swipe_icon {
    width: 65px;
    height: 65px;
    background: #000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bootstrap Icon Style */
.first_swipe_icon i {
    font-size: 28px;
    color: #ffc107;
}

@media (max-width: 768px) {

    .first_swipe_wraper {
        width: 85%;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px 18px;
    }

    .swipe-text {
        font-size: 18px;
    }

    .first_swipe_icon {
        width: 50px;
        height: 50px;
    }

    .first_swipe_icon i {
        font-size: 22px;
    }
}

/* ===============================
   THEME ICON SLIDE DESIGN
=================================*/

.theme_icon_slide {
    position: relative;
}

.theme_fixed_layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: #fff;
    border-top-left-radius: 50% 120px;
    border-top-right-radius: 50% 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

/* Anchor wrapper */
.theme_fixed_layer a {
    position: absolute;
    top: -45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ICON CIRCLE */
.theme_icon_circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ICON */
.theme_icon_circle i {
    font-size: 42px;
    color: #fff;
    position: relative;
    z-index: 3;
}

/* 🔥 Animated Gradient Border */
.theme_icon_circle::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.9));
    animation: rotateBorder 2.8s linear infinite;
    z-index: 1;
}

/* Inner mask (center ko clean rakhega) */
.theme_icon_circle::after {
    content: "";
    position: absolute;
    inset: 5px;
    background: inherit;
    border-radius: 50%;
    z-index: 2;
}

/* Rotation */
@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}

/* Smooth pop when slide changes */
@keyframes popIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hover effect */
.theme_icon_circle:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}

/* Text */
.theme_icon_text {
    margin-top: 55px;
    font-size: 22px;
    font-weight: 700;
    color: #ffcc00;
}