.elementor-881 .elementor-element.elementor-element-907a664{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-881 .elementor-element.elementor-element-4916fd4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-881 .elementor-element.elementor-element-de6a5f4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:-50px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5054988 *//* Body and Gradient Background */
body {
    position: relative;
    background: #000 !important;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 110% 70% at 25% 80%, rgba(147, 51, 234, 0.16), transparent 55%),
        radial-gradient(ellipse 130% 60% at 75% 15%, rgba(59, 130, 246, 0.12), transparent 65%),
        radial-gradient(ellipse 80% 90% at 20% 30%, rgba(236, 72, 153, 0.18), transparent 50%),
        radial-gradient(ellipse 100% 40% at 60% 70%, rgba(16, 185, 129, 0.10), transparent 45%),
        #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Section Styling */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #9333ea, #3b82f6, #ec4899, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    0% { filter: blur(0px); }
    50% { filter: blur(2px); }
    100% { filter: blur(0px); }
}

.section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 50px;
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.4);
}

.card i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #9333ea, #3b82f6, #ec4899, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.card p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:1024px){
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media(max-width:768px){
    .section h2 {
        font-size: 2rem;
    }
    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Default smooth transition for individual hover themes */
.card {
    transition: 
        transform 0.3s ease, 
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

/* Card 1 Hover – Purple Glow */
.card:nth-child(1):hover {
    background: rgba(147, 51, 234, 0.35);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.45);
}
.card:nth-child(1):hover h3,
.card:nth-child(1):hover p,
.card:nth-child(1):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Card 2 Hover – Blue Glow */
.card:nth-child(2):hover {
    background: rgba(59, 130, 246, 0.35);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.45);
}
.card:nth-child(2):hover h3,
.card:nth-child(2):hover p,
.card:nth-child(2):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Card 3 Hover – Pink Glow */
.card:nth-child(3):hover {
    background: rgba(236, 72, 153, 0.35);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.45);
}
.card:nth-child(3):hover h3,
.card:nth-child(3):hover p,
.card:nth-child(3):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Card 4 Hover – Green Glow */
.card:nth-child(4):hover {
    background: rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.45);
}
.card:nth-child(4):hover h3,
.card:nth-child(4):hover p,
.card:nth-child(4):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
/* Card 5 Hover – Amber Glow */
.card:nth-child(5):hover {
    background: rgba(245, 158, 11, 0.35);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.45);
}
.card:nth-child(5):hover h3,
.card:nth-child(5):hover p,
.card:nth-child(5):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Card 6 Hover – Red Glow */
.card:nth-child(6):hover {
    background: rgba(239, 68, 68, 0.35);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.45);
}
.card:nth-child(6):hover h3,
.card:nth-child(6):hover p,
.card:nth-child(6):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Card 7 Hover – Indigo Glow */
.card:nth-child(7):hover {
    background: rgba(99, 102, 241, 0.35);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.45);
}
.card:nth-child(7):hover h3,
.card:nth-child(7):hover p,
.card:nth-child(7):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Card 8 Hover – Teal Glow */
.card:nth-child(8):hover {
    background: rgba(20, 184, 166, 0.35);
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.45);
}
.card:nth-child(8):hover h3,
.card:nth-child(8):hover p,
.card:nth-child(8):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bda5469 *//* Container */
.premium-solutions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */
.premium-solutions .heading {
    text-align: center;
    margin-bottom: 40px;
}

.premium-solutions .heading h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg,#9333ea,#3b82f6,#ec4899,#10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-solutions .heading p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Features Grid: 4 cards per row */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Individual Feature Card */
.feature-card {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow: 0 15px 40px rgba(147,51,234,0.3);
}

.feature-card i {
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(45deg,#9333ea,#3b82f6,#ec4899,#10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.15) rotate(8deg);
}

.feature-card .text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
}

.feature-card .text p {
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.4;
}

/* Responsive */
@media(max-width:1024px){
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px){
    .features {
        grid-template-columns: 1fr;
    }
}

/* ================================
   INDIVIDUAL FEATURE CARD HOVER COLORS (1–8)
   ================================ */

/* Feature Card 1 – Purple */
.feature-card:nth-child(1):hover {
    background: rgba(147, 51, 234, 0.35);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.45);
}
.feature-card:nth-child(1):hover h3,
.feature-card:nth-child(1):hover p,
.feature-card:nth-child(1):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Feature Card 2 – Blue */
.feature-card:nth-child(2):hover {
    background: rgba(59, 130, 246, 0.35);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.45);
}
.feature-card:nth-child(2):hover h3,
.feature-card:nth-child(2):hover p,
.feature-card:nth-child(2):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Feature Card 3 – Pink */
.feature-card:nth-child(3):hover {
    background: rgba(236, 72, 153, 0.35);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.45);
}
.feature-card:nth-child(3):hover h3,
.feature-card:nth-child(3):hover p,
.feature-card:nth-child(3):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Feature Card 4 – Green */
.feature-card:nth-child(4):hover {
    background: rgba(16, 185, 129, 0.35);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.45);
}
.feature-card:nth-child(4):hover h3,
.feature-card:nth-child(4):hover p,
.feature-card:nth-child(4):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Feature Card 5 – Amber */
.feature-card:nth-child(5):hover {
    background: rgba(245, 158, 11, 0.35);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.45);
}
.feature-card:nth-child(5):hover h3,
.feature-card:nth-child(5):hover p,
.feature-card:nth-child(5):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Feature Card 6 – Red */
.feature-card:nth-child(6):hover {
    background: rgba(239, 68, 68, 0.35);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.45);
}
.feature-card:nth-child(6):hover h3,
.feature-card:nth-child(6):hover p,
.feature-card:nth-child(6):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Feature Card 7 – Indigo */
.feature-card:nth-child(7):hover {
    background: rgba(99, 102, 241, 0.35);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.45);
}
.feature-card:nth-child(7):hover h3,
.feature-card:nth-child(7):hover p,
.feature-card:nth-child(7):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Feature Card 8 – Teal */
.feature-card:nth-child(8):hover {
    background: rgba(20, 184, 166, 0.35);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.45);
}
.feature-card:nth-child(8):hover h3,
.feature-card:nth-child(8):hover p,
.feature-card:nth-child(8):hover i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}


.premium-solutions .heading h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg,#9333ea,#3b82f6,#ec4899,#10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Glow + blur aura */
    filter: drop-shadow(0 0 8px rgba(147,51,234,0.45))
            drop-shadow(0 0 14px rgba(59,130,246,0.35))
            drop-shadow(0 0 18px rgba(236,72,153,0.25));

    animation: glowBlurPulse 3s ease-in-out infinite alternate;
}


@keyframes glowBlurPulse {
    0% {
        filter: drop-shadow(0 0 6px rgba(147,51,234,0.35))
                drop-shadow(0 0 12px rgba(59,130,246,0.25))
                drop-shadow(0 0 16px rgba(236,72,153,0.20));
    }
    100% {
        filter: drop-shadow(0 0 16px rgba(147,51,234,0.65))
                drop-shadow(0 0 28px rgba(59,130,246,0.55))
                drop-shadow(0 0 36px rgba(236,72,153,0.45));
    }
}/* End custom CSS */