.part1{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0f172a,#020617);
    color:white;
    padding:40px;
}

/* Container */

.containers{
    max-width:900px;
    width:100%;
    animation:fadeUp 1s ease;
}

/* Heading */

.part1 h1{
    font-size:52px;
    margin-bottom:25px;
    color: #f15f25;
    font-weight: 700;
}

/* Problem list */

.part1 .problem-list{
    background:rgba(255,255,255,0.04);
    border-radius:14px;
    padding:30px;
    backdrop-filter: blur(8px);
    transition:all .35s ease;
}

.part1.problem-list:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(0,0,0,.6);
}

.part1 .problem{
    display:flex;
    gap:14px;
    margin-bottom:16px;
    color:#ff5c5c;
    font-size:18px;
    line-height:1.5;
    transition:all .25s ease;
}

.part1 .problem:hover{
    transform:translateX(8px);
}

/* Cross icon */

.part1 .problem span{
    font-weight:bold;
    font-size:20px;
}

/* Truth box */

.part1 .truth-box{
    margin-top:35px;
    background:linear-gradient(135deg,#1e293b,#111827);
    padding:28px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.06);
    transition:all .35s ease;
}

.part1 .truth-box:hover{
    transform:scale(1.02);
    box-shadow:0 25px 70px rgba(0,0,0,.6);
}

.part1 .truth-title{
    color:#ff6b6b;
    font-weight:bold;
    font-size:22px;
    margin-bottom:10px;
}

.part1 .truth-text{
    color:#cbd5f5;
    line-height:1.6;
    font-size:17px;
}

/* Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}





.part2{
background: linear-gradient(135deg,#f8fafc,#e2e8f0);
padding:60px 20px;
display:flex;
justify-content:center;
}

.containerss{
max-width:950px;
width:100%;
animation:fadeUp 1s ease;
}

.part2 .title{
font-size:40px;
font-weight:800;
color:#1e293b;
margin-bottom:10px;
}

.part2 .subtitle{
color:#475569;
margin-bottom:40px;
font-size:18px;
}

.part2 .steps{
display:flex;
flex-direction:column;
gap:20px;
}

.part2 .step{
display:flex;
gap:25px;
background:white;
padding:25px;
border-radius:14px;
transition:all .35s ease;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.part2 .step:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.part2 .step-number{
min-width:60px;
height:60px;
background:linear-gradient(135deg,#f97316,#ea580c);
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
font-weight:bold;
border-radius:10px;
transition:transform .3s;
}

.part2 .step:hover .step-number{
transform:scale(1.1) rotate(3deg);
}

.part2 .step-content h3{
font-size:20px;
color:#0f172a;
margin-bottom:6px;
}

.part2 .step-content p{
color:#475569;
line-height:1.6;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}





            .part3{
            background:linear-gradient(135deg,#0f172a,#020617);
            display:flex;
            justify-content:center;
            padding:60px 20px;
            color:white;
            }

            .part3 .containerh{
            max-width:900px;
            width:100%;
            animation:fadeUp 1s ease;
            }

            .part3 h1{
            font-size:38px;
            margin-bottom:25px;
            }

            /* TABLE */

            .part3 .table{
            width:100%;
            border-radius:12px;
            overflow:hidden;
            box-shadow:0 20px 60px rgba(0,0,0,.6);
            }

            .part3 .row{
            display:flex;
            justify-content:space-between;
            padding:16px 20px;
            transition:all .3s ease;
            }

           .part3 .header{
            background:#1e1b4b;
            font-weight:bold;
            font-size:18px;
            }

            .part3 .row:nth-child(even){
            background:#f1f5f9;
            color:#111;
            }

            .part3 .row:nth-child(odd):not(.header){
            background:#e2e8f0;
            color:#111;
            }

            .part3 .row:hover{
            transform:translateX(6px);
            background:#fde68a !important;
            }

            /* VALUE COLUMN */

           .part3 .value{
            font-weight:bold;
            }

           .part3 .strike{
            text-decoration:line-through;
            opacity:.6;
            }

            /* TOTAL */

            .part3 .total{
            background:#cbd5f1 !important;
            font-weight:bold;
            color:#111;
            }

            /* PRICE */

           .part3 .price{
            background:linear-gradient(135deg,#f97316,#ea580c);
            color:white;
            font-size:20px;
            font-weight:bold;
            }

            .part3 .price:hover{
            box-shadow:0 10px 30px rgba(249,115,22,.6);
            }

            /* CTA */

            .part3 .cta{
            margin-top:35px;
            text-align:center;
            background:linear-gradient(135deg,#f97316,#ea580c);
            padding:30px;
            border-radius:12px;
            cursor:pointer;
            transition:all .3s ease;
            }

            .part3 .cta:hover{
            transform:scale(1.03);
            box-shadow:0 20px 50px rgba(249,115,22,.6);
            }

            .part3 .cta h2{
            font-size:28px;
            margin-bottom:10px;
            }

            .part3 .cta p{
            opacity:.9;
            }

            /* ANIMATION */

            @keyframes fadeUp{
            from{
            opacity:0;
            transform:translateY(40px);
            }
            to{
            opacity:1;
            transform:translateY(0);
            }
            }




            .part4{
background:linear-gradient(135deg,#0f172a,#1e293b);
display:flex;
justify-content:center;
align-items:center;
min-height:60vh;
padding:40px;
color:white;
}

/* SECTION */

.part4 .guarantee-section{
max-width:900px;
background:linear-gradient(135deg,#d1fae5,#ecfdf5);
padding:50px;
border-radius:16px;
text-align:center;
color:#064e3b;
box-shadow:0 20px 60px rgba(0,0,0,.4);
transition:all .35s ease;
animation:fadeUp 1s ease;
}

.part4 .guarantee-section:hover{
transform:translateY(-6px) scale(1.01);
box-shadow:0 30px 70px rgba(0,0,0,.5);
}

/* ICON */

.part4 .icon{
font-size:60px;
margin-bottom:15px;
animation:pulse 2.5s infinite;
}

/* TITLE */

.part4 .guarantee-title{
font-size:34px;
font-weight:bold;
margin-bottom:15px;
color:#166534;
}

/* TEXT */

.part4 .guarantee-text{
font-size:18px;
line-height:1.7;
margin-bottom:18px;
color:#065f46;
}

/* HIGHLIGHT */

.part4 .highlight{
font-weight:bold;
font-size:20px;
color:#047857;
}

/* ANIMATIONS */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.15);}
100%{transform:scale(1);}
}



                .part5{
    font-family:'Poppins',sans-serif;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
    background:
    radial-gradient(circle at top left,#1f2937,#0f172a 40%),
    linear-gradient(135deg,#111827,#1e293b,#0f172a);
    overflow-x:hidden;
}

/* Floating Background Glow */
            .part5::before{
                content:'';
                position:absolute;
                width:500px;
                height:500px;
                background:rgba(255,115,0,0.15);
                border-radius:50%;
                filter:blur(80px);
                top:-120px;
                left:-100px;
                animation:floatGlow 6s ease-in-out infinite alternate;
            }

            .part5::after{
                content:'';
                position:absolute;
                width:450px;
                height:450px;
                background:rgba(59,130,246,0.15);
                border-radius:50%;
                filter:blur(80px);
                bottom:-120px;
                right:-100px;
                animation:floatGlow 8s ease-in-out infinite alternate;
            }

            @keyframes floatGlow{
                from{
                    transform:translateY(0px) scale(1);
                }
                to{
                    transform:translateY(30px) scale(1.08);
                }
            }

            /* MAIN CARD */
            .part5 .offer-box{
                position:relative;
                width:850px;
                background:rgba(255,255,255,0.08);
                border:1px solid rgba(255,255,255,0.12);
                backdrop-filter:blur(14px);
                border-radius:28px;
                padding:28px;
                overflow:hidden;
                box-shadow:
                0 20px 60px rgba(0,0,0,0.45),
                inset 0 1px 0 rgba(255,255,255,0.1);
                animation:fadeUp 1s ease;
            }

            @keyframes fadeUp{
                from{
                    opacity:0;
                    transform:translateY(40px);
                }
                to{
                    opacity:1;
                    transform:translateY(0);
                }
            }

            /* Heading */
            .part5 .offer-title{
                font-size:42px;
                font-weight:800;
                color:#fff;
                margin-bottom:24px;
                text-align:center;
                letter-spacing:.5px;
                animation:glowText 3s infinite alternate;
            }

            @keyframes glowText{
                from{
                    text-shadow:0 0 10px rgba(255,255,255,0.1);
                }
                to{
                    text-shadow:0 0 25px rgba(255,115,0,0.6);
                }
            }

            /* TABLE */
            .part5 .offer-table{
                width:100%;
                border-collapse:collapse;
                overflow:hidden;
                border-radius:18px;
            }

            .part5 .offer-table thead{
                background:linear-gradient(135deg,#111827,#1e293b);
            }

            .part5 .offer-table th{
                color:#fff;
                padding:20px;
                text-align:left;
                font-size:22px;
                font-weight:700;
            }

            .part5 .offer-table th:last-child{
                text-align:right;
            }

            .part5 .offer-table tbody tr{
                background:rgba(255,255,255,0.08);
                transition:all .35s ease;
                border-bottom:1px solid rgba(255,255,255,0.08);
            }

            .part5 .offer-table tbody tr:hover{
                transform:scale(1.01);
                background:rgba(255,255,255,0.15);
                box-shadow:0 10px 30px rgba(0,0,0,0.2);
            }

            .part5 .offer-table td{
                padding:18px 20px;
                color:#f3f4f6;
                font-size:20px;
                font-weight:500;
            }

            .part5 .offer-table td:last-child{
                text-align:right;
                font-weight:700;
                color:#fbbf24;
            }

            .part5 .strike{
                text-decoration:line-through;
                color:#9ca3af !important;
            }

            /* TOTAL ROW */
            .part5 .total-row{
                background:rgba(255,255,255,0.12) !important;
            }

            .part5 .total-row td{
                font-size:28px;
                font-weight:800;
            }

            /* PRICE ROW */
            .part5 .price-row{
                background:linear-gradient(135deg,#ff6a00,#ff8c00) !important;
                animation:pulseBar 2s infinite;
            }

            .part5 .price-row td{
                color:#fff !important;
                font-size:32px;
                font-weight:800;
            }

            @keyframes pulseBar{
                0%{
                    box-shadow:0 0 0 rgba(255,140,0,0.5);
                }
                50%{
                    box-shadow:0 0 35px rgba(255,140,0,0.7);
                }
                100%{
                    box-shadow:0 0 0 rgba(255,140,0,0.5);
                }
            }

            /* CTA BUTTON */
            .part5 .cta-section{
                margin-top:35px;
            }

            .part5 .cta-btn{
                position:relative;
                width:100%;
                border:none;
                padding:28px 20px;
                border-radius:22px;
                cursor:pointer;
                background:linear-gradient(135deg,#ff6a00,#ff8c00);
                overflow:hidden;
                transition:all .35s ease;
                box-shadow:0 15px 40px rgba(255,115,0,0.35);
            }

            .part5 .cta-btn:hover{
                transform:translateY(-5px) scale(1.02);
                box-shadow:0 20px 50px rgba(255,115,0,0.5);
            }

            .part5 .cta-btn::before{
                content:'';
                position:absolute;
                top:0;
                left:-120%;
                width:100%;
                height:100%;
                background:linear-gradient(
                    120deg,
                    transparent,
                    rgba(255,255,255,0.4),
                    transparent
                );
                transition:all .8s ease;
            }

            .part5 .cta-btn:hover::before{
                left:120%;
            }

            .cta-main{
                position:relative;
                color:#fff;
                font-size:30px;
                font-weight:800;
                letter-spacing:.5px;
                margin-bottom:10px;
            }

            .part5 .cta-sub{
                position:relative;
                color:#fff;
                font-size:18px;
                opacity:.95;
            }

            /* Responsive */
            @media(max-width:900px){

                .part5 .offer-box{
                    width:100%;
                    padding:18px;
                }

                .part5 .offer-title{
                    font-size:30px;
                }

                .part5 .offer-table th,
                .part5 .offer-table td{
                    font-size:15px;
                    padding:14px;
                }

                .part5 .price-row td{
                    font-size:22px;
                }

                .part5 .cta-main{
                    font-size:26px;
                }

                .part5 .cta-sub{
                    font-size:14px;
                }
            }





            .section-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
    color:#2b2b3c;
    padding: 40px 0px;
}

/* Container */
.wrapper{
    display:flex;
    gap:25px;
    max-width:900px;

    margin: auto;
}

/* Cards */
.card{
    flex:1;
    padding:28px;
    border-radius:10px;
    transition:all .35s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

/* Hover lift */
.card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

/* Left card */
.good{
    background:#dfe9e3;
}

/* Right card */
.bad{
    background:#f1dfdf;
}

/* Headings */
.card h2{
    margin-top:0;
    font-size:22px;
}

.good h2{
    color:#1e7d47;
}

.bad h2{
    color:#c0392b;
}

/* List */
.card ul{
    padding-left:18px;
    margin:15px 0 0 0;
}

.card li{
    margin-bottom:12px;
    line-height:1.5;
    transition:all .3s ease;
}

/* Bullet hover animation */
.card:hover li{
    transform:translateX(6px);
}

/* Glow animation overlay */
.card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent);
    transition:.6s;
}

.card:hover::before{
    left:100%;
}

/* Responsive */
@media (max-width:700px){
    .wrapper{
        flex-direction:column;
    }
}


.gradient{
    background: linear-gradient(to right, #ffd44a 0%, #BD1F80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.faq-section{
    max-width:800px;
    margin:80px auto;
    padding:20px;
}

/* Title */
.faq-title{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
}

/* FAQ Item */
.faq{
    background:#1a1a22;
    border-radius:8px;
    margin-bottom:15px;
    overflow:hidden;
    transition:0.3s;
    border:1px solid #2c2c35;
}

.faq:hover{
    border-color:#6c63ff;
}

/* Question */
.faq-question{
    padding:18px 20px;
    font-size:20px;
    font-weight: 700;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color: #fff;
}

/* Icon */
.faq-icon{
    font-size:22px;
    transition:0.3s;
}

/* Answer */
.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    color:#cfcfd4;
    transition:max-height 0.4s ease;
}

/* Active */
.faq.active .faq-answer{
    max-height:200px;
    padding:15px 20px 20px;
}

.faq.active .faq-icon{
    transform:rotate(45deg);
}





                    .addmissions-section .containero{
                    background:#fff;
                    max-width:850px;
                    padding:35px;
                    border-radius:12px;
                    box-shadow:0 10px 30px rgba(0,0,0,0.1);
                    animation:fadeIn 1s ease;
                    margin: auto;
                    }

                   .addmissions-section h2{
                    font-size:26px;
                    margin-bottom:20px;
                    color:#1e293b;
                    }

                    .addmissions-section .themes{
                    list-style:none;
                    padding:0;
                    margin:0;
                    }

                    .addmissions-section .themes li{
                    display:flex;
                    align-items:center;
                    padding:10px 15px;
                    border-radius:8px;
                    margin-bottom:8px;
                    transition:all .3s ease;
                    }

                    .addmissions-section .themes li i{
                    width:30px;
                    font-size:18px;
                    color:#ff7a00;
                    margin-right:10px;
                    }

                    .addmissions-section .themes li:hover{
                    background:#f1f5ff;
                    transform:translateX(8px);
                    box-shadow:0 4px 10px rgba(0,0,0,0.08);
                    }

                    .addmissions-section .desc{
                    margin-top:20px;
                    color:#555;
                    line-height:1.6;
                    }

                    .addmissions-section .features{
                    display:grid;
                    grid-template-columns:repeat(3,1fr);
                    gap:15px;
                    margin-top:30px;
                    }

                    .addmissions-section .feature-box{
                    border:1px solid #e5e7eb;
                    padding:20px;
                    text-align:center;
                    border-radius:10px;
                    transition:all .35s ease;
                    background:#fafafa;
                    }

                    .addmissions-section .feature-box i{
                    color:#ff7a00;
                    font-size:22px;
                    margin-bottom:8px;
                    }

                    .addmissions-section .feature-box:hover{
                    transform:translateY(-6px);
                    box-shadow:0 10px 20px rgba(0,0,0,0.12);
                    background:#fff;
                    }

                    @keyframes fadeIn{
                    from{
                    opacity:0;
                    transform:translateY(20px);
                    }
                    to{
                    opacity:1;
                    transform:translateY(0);
                    }
                    }

                    @media(max-width:700px){
                    .features{
                    grid-template-columns:1fr;
                    }
                    }


                                            .boxs{
                    background:#ffffff;
                    padding:35px;
                    border-radius:12px;
                    box-shadow:0 10px 25px rgba(0,0,0,0.1);
                    max-width:700px;
                    width:90%;
                    animation:fadeUp 1s ease;
                    margin: auto;
                    }

                    .boxs .main-title{
                    font-size:28px;
                    font-weight:700;
                    color:#e65c00;
                    margin-bottom:15px;
                    display:flex;
                    align-items:center;
                    gap:10px;
                    }

                    .boxs .main-title i{
                    animation:spinIcon 3s linear infinite;
                    }

                    .sub-title{
                    font-size:22px;
                    font-weight:700;
                    color:#1f2937;
                    margin-bottom:15px;
                    display:flex;
                    align-items:center;
                    gap:10px;
                    }

                    .boxs .list{
                    list-style:none;
                    padding:0;
                    margin:0;
                    }

                    .boxs .list li{
                    font-size:18px;
                    padding:10px 15px;
                    border-radius:8px;
                    display:flex;
                    align-items:center;
                    gap:12px;
                    transition:all .3s ease;
                    }

                    .boxs .list li i{
                    color:#2ecc71;
                    font-size:18px;
                    }

                    .boxs .list li:hover{
                    background:#f1f5ff;
                    transform:translateX(8px);
                    box-shadow:0 4px 12px rgba(0,0,0,0.08);
                    }

                    @keyframes fadeUp{
                    from{
                    opacity:0;
                    transform:translateY(25px);
                    }
                    to{
                    opacity:1;
                    transform:translateY(0);
                    }
                    }

                    @keyframes spinIcon{
                    0%{transform:rotate(0deg);}
                    100%{transform:rotate(360deg);}
                    }







.table_toper



                                            .table_toper .title{
                            text-align:center;
                            font-size:28px;
                            font-weight:bold;
                            color:#2c3e50;
                            margin-bottom:25px;
                        }

                        /* Table Design */
                        .table_toper table{
                            width:100%;
                            border-collapse:collapse;
                            background:white;
                            box-shadow:0 10px 25px rgba(0,0,0,0.08);
                            overflow:hidden;
                            border-radius:10px;
                        }

                        /* Heading Row */
                        .table_toper th{
                            background:#2b6cb0;
                            color:white;
                            padding:14px;
                            font-size:18px;
                            letter-spacing:1px;
                        }

                        /* Category column */
                        .table_toper .category{
                            font-weight:bold;
                            color:#2b6cb0;
                            width:30%;
                        }

                        /* Table cells */
                        .table_toper td{
                            padding:12px 16px;
                            border-bottom:1px solid #eee;
                        }

                        /* Row hover animation */
                        .table_toper tr:hover{
                            background:#f0f6ff;
                            transform:scale(1.01);
                            transition:0.3s;
                        }

                        /* Icons */
                        .table_toper .icon{
                            font-size:20px;
                            margin-right:8px;
                        }

                        /* Item animation */
                        .table_toper .theme-item{
                            display:inline-block;
                            margin:4px 8px;
                            padding:6px 10px;
                            background:#f7f9ff;
                            border-radius:6px;
                            transition:0.3s;
                        }

                        .table_toper .theme-item:hover{
                            background:#2b6cb0;
                            color:white;
                            transform:translateY(-3px);
                        }




                        .wrapper{
    max-width:1200px;
    width:100%;
}

/* Top Cards */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-bottom:50px;
}

/* Card Style */
.card{
    background:#fff;
    border-radius:24px;
    padding:45px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:0.5s ease;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    animation:floatCard 4s ease-in-out infinite;
}

.card:nth-child(2){
    animation-delay:1s;
}

.card:nth-child(3){
    animation-delay:2s;
}

/* Hover */
.card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

/* Glow Effect */
.card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:linear-gradient(135deg,rgba(255,255,255,0.7),transparent);
    border-radius:50%;
    top:-70px;
    right:-70px;
    transition:0.5s;
}

.card:hover::before{
    transform:scale(1.2) rotate(25deg);
}

/* Icons */
.icon-box{
    width:82px;
    height:82px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    position:relative;
    animation:pulse 3s infinite;
}





/* Checklist Box */
.checklist{
    background:#fff;
    border-radius:24px;
    padding:35px 40px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    animation:fadeUp 1.2s ease;
}

.checklist ul{
    list-style:none;
}

.checklist li{
    font-size:25px;
    color:#222;
    margin:18px 0;
    display:flex;
    align-items:center;
    gap:16px;
    transition:0.4s ease;
}

.checklist li:hover{
    transform:translateX(10px);
    color:#6b19ff;
}

/* Tick */
.tick{
    color:#0fa66d;
    font-size:28px;
    font-weight:700;
    animation:tickBounce 2s infinite;
}

/* Animations */
@keyframes floatCard{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
}

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes tickBounce{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
}

/* Responsive */
@media(max-width:768px){

    .card h2{
        font-size:28px;
    }

    .card p{
        font-size:17px;
    }

    .checklist li{
        font-size:20px;
    }
}







                        .system-box{
                            width:1050px;
                            margin: auto;
                            max-width:100%;
                            background:#ffffff;
                            border-radius:28px;
                            padding:55px 50px;
                            position:relative;
                            overflow:hidden;
                            box-shadow:0 20px 50px rgba(0,0,0,0.08);
                            animation:fadeUp 1s ease;
                        }

                        /* Background Glow */
                        .system-box::before{
                            content:"";
                            position:absolute;
                            width:320px;
                            height:320px;
                            background:radial-gradient(circle, rgba(255,166,0,0.12), transparent 70%);
                            top:-100px;
                            right:-100px;
                            animation:rotateGlow 10s linear infinite;
                        }

                        /* Heading */
                        .system-box .heading{
                            display:flex;
                            align-items:center;
                            justify-content:center;
                            gap:18px;
                            margin-bottom:38px;
                            position:relative;
                            z-index:2;
                        }

                        /* Icon Circle */
                        .system-box .icon-box{
                            width:72px;
                            height:72px;
                            border-radius:50%;
                            background:linear-gradient(135deg,#ff8a00,#ff4d00);
                            display:flex;
                            align-items:center;
                            justify-content:center;
                            color:#fff;
                            font-size:34px;
                            box-shadow:0 12px 30px rgba(255,115,0,0.35);
                            animation:pulse 3s infinite;
                        }

                        /* Gradient Heading Text */
                        .system-box .heading h1{
                            font-size:42px;
                            font-weight:800;
                            background:linear-gradient(135deg,#ff8a00,#ff4d00,#ffb347);
                            -webkit-background-clip:text;
                            -webkit-text-fill-color:transparent;
                            line-height:1.2;
                        }

                        /* Content */
                        .system-box .content{
                            position:relative;
                            z-index:2;
                        }

                        .system-box .line{
                            margin:22px 0;
                            font-size:30px;
                            color:#1f1f1f;
                            display:flex;
                            align-items:flex-start;
                            gap:16px;
                            transition:0.4s ease;
                        }

                        .system-box .line:hover{
                            transform:translateX(10px);
                        }

                        /* Orange Icons */
                        .system-box .line-icon{
                            min-width:46px;
                            height:46px;
                            border-radius:14px;
                            background:linear-gradient(135deg,#ff8a00,#ff4d00);
                            display:flex;
                            align-items:center;
                            justify-content:center;
                            color:#fff;
                            font-size:22px;
                            font-weight:700;
                            box-shadow:0 10px 25px rgba(255,115,0,0.25);
                            animation:floatIcon 3s ease-in-out infinite;
                        }

                        /* Highlight Text */
                        .system-box .highlights{
                            font-weight:700;
                            background:linear-gradient(135deg,#ff8a00,#ff4d00);
                            -webkit-background-clip:text;
                            -webkit-text-fill-color:transparent;
                        }

                        /* Final Quote */
                        .system-box .quote{
                            margin-top:60px;
                            text-align:center;
                            font-size:33px;
                            font-style:italic;
                            font-weight:700;
                            color:#111;
                            line-height:1.5;
                            animation:fadeIn 2s ease;
                        }

                        .system-box .quote b{
                            background:linear-gradient(135deg,#ff8a00,#ff4d00);
                            -webkit-background-clip:text;
                            -webkit-text-fill-color:transparent;
                        }

                        /* Animations */
                        @keyframes fadeUp{
                            from{
                                opacity:0;
                                transform:translateY(40px);
                            }
                            to{
                                opacity:1;
                                transform:translateY(0);
                            }
                        }

                        @keyframes pulse{
                            0%{
                                transform:scale(1);
                            }
                            50%{
                                transform:scale(1.08);
                            }
                            100%{
                                transform:scale(1);
                            }
                        }

                        @keyframes rotateGlow{
                            from{
                                transform:rotate(0deg);
                            }
                            to{
                                transform:rotate(360deg);
                            }
                        }

                        @keyframes floatIcon{
                            0%,100%{
                                transform:translateY(0px);
                            }
                            50%{
                                transform:translateY(-6px);
                            }
                        }

                        @keyframes fadeIn{
                            from{
                                opacity:0;
                            }
                            to{
                                opacity:1;
                            }
                        }

                        /* Responsive */
                        @media(max-width:768px){

                            .system-box{
                                padding:40px 25px;
                            }

                            .system-box .heading{
                                flex-direction:column;
                                text-align:center;
                            }

                            .system-box .heading h1{
                                font-size:30px;
                            }

                            .system-box .line{
                                font-size:20px;
                            }

                            .system-box .quote{
                                font-size:22px;
                            }

                            .system-box .icon-box{
                                width:62px;
                                height:62px;
                                font-size:28px;
                            }
                        }
