*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

p{
    font-size: 18px;
}

body{
    background:#000;
}

/* HERO SECTION */
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px 20px;
    background: url("https://aonetarget.com/img/herobanner/ai_1.jpg") no-repeat center center/cover;
    overflow:hidden;
}

/* Dark Overlay */
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.315), rgba(5, 21, 59, 0.473));
    z-index:1;
}

/* CONTENT */
.hero-content{
    max-width:950px;
    color:white;
    position:relative;
    z-index:2;
}

.small-text{
    font-size:14px;
    letter-spacing:4px;
    color:#cbd5e1;
    margin-bottom:20px;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    margin-bottom:25px;
}

.badge-btn{
    display:inline-block;
    background:#e11d48;
    padding:14px 32px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:25px;
}

.highlight-line{
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
    color:#e2e8f0;
}

.hero p{
    font-size:18px;
    color:#cbd5e1;
    margin-bottom:30px;
    line-height:1.7;
}

.buttons{
    margin-top:20px;    
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    margin:10px;
    transition:0.3s;
}

.btn-purple{
    background:#4c3c92;
    color:white;
}

.btn-purple:hover{
    background:#5b4bb8;
}

.btn-red{
    background:#dc2626;
    color:white;
}

.btn-red:hover{
    background:#b91c1c;
}

/* Responsive */
@media(max-width:768px){
    .hero h1{
        font-size:38px;
    }
    .btn{
        padding: 14px 30px;
    }
}















/* SPLIT ABOUT SECTION */

.about-split{
    position:relative;
    padding:90px 8%;
    background:linear-gradient(135deg, #0b1120, #0f1b3d, #08122c);
    overflow:hidden;
    color:white;
}

/* glow background */
.about-split::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0, 140, 255, 0.219);
    filter:blur(90px);
    top:-150px;
    left:-150px;
}

.about-split::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0, 255, 255, 0.199);
    filter:blur(100px);
    bottom:-100px;
    right:-100px;
}

.about-container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT TEXT */
.about-left{
    flex:1;
    min-width:320px;
}

.about-left h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:25px;
}

.about-left p{
    color:#cbd5e1;
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

.about-left span{
    color:#38bdf8;
    font-weight:600;
}

/* RIGHT MINI CARDS GRID */
.about-right{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
    max-width:420px;
}

/* MINI CARD STYLE */
.mini-card{
    background:rgba(255, 255, 255, 0.103);
    backdrop-filter:blur(12px);
    padding:35px 20px;
    border-radius:16px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s ease;
}

.mini-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 20px rgba(0,140,255,0.4);
    border:1px solid rgba(0,140,255,0.5);
}

.mini-card i{
    font-size:26px;
    margin-bottom:12px;
    color:#4184d1;
}

.mini-card h4{
    font-size:18px;
    font-weight:600;
}

/* MOBILE - keep 2x2 grid */
@media(max-width:768px){
    .about-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .about-right{
        margin-top:40px;
        grid-template-columns:repeat(2, 1fr);
    }
}






/* WHY CHOOSE SECTION */

.why-choose{
    padding:90px 8%;
    background:linear-gradient(135deg, #08122c, #0f1b3d);
    color:white;
    position:relative;
}

/* Subtle top glow line */
.why-choose::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:90px;
    height:4px;
    background:#38bdf8;
    border-radius:4px;
}

.why-header{
    text-align:center;
    margin-bottom:70px;
}

.why-header h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
}

.why-header p{
    color:#cbd5e1;
    font-size:16px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:30px;
}

/* CARD */
.why-card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s ease;
}

.why-card:hover{
    transform:translateY(-10px);
    border:1px solid rgba(0, 140, 255, 0.397);
    box-shadow:0 0 40px rgba(6, 101, 179, 0.5);
}

.why-card i{
    font-size:30px;
    color:#38bdf8;
    margin-bottom:20px;
}

.why-card h4{
    font-size:18px;
    margin-bottom:15px;
    font-weight:700;
}

.why-card p{
    font-size:15px;
    color:#cbd5e1;
    line-height:1.7;
}

/* Mobile */
@media(max-width:768px){
    .why-header h2{
        font-size:28px;
    }
}




/* OFFER SECTION */

.offer-section{
    padding:90px 8%;
    background:linear-gradient(135deg, #0f1b3d, #08122c);
    color:white;
    position:relative;
}

.offer-header{
    text-align:center;
    margin-bottom:70px;
}

.offer-header h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
}

.offer-header p{
    color:#cbd5e1;
    font-size:17px;
}

/* GRID */
.offer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:30px;
}

/* CARD */
.offer-card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s ease;
}

.offer-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,140,255,0.4);
    border:1px solid rgba(0,140,255,0.5);
}

.offer-card i{
    font-size:30px;
    color:#38bdf8;
    margin-bottom:18px;
}

.offer-card h4{
    font-size:18px;
    margin-bottom:12px;
    font-weight:700;
}

.offer-card p{
    font-size:15px;
    color:#cbd5e1;
    line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
    .offer-header h2{
        font-size:28px;
    }
}






/* POWER CTA SECTION */

.power-cta{
    position:relative;
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(135deg, #072358, #03143aa4, #051849d2);
    overflow:hidden;
    color:white;
}

/* glowing blobs */
.power-cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0, 255, 255, 0.15);
    filter:blur(90px);
    top:-200px;
    left:-200px;
}

.power-cta::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0, 140, 255, 0.2);
    filter:blur(90px);
    bottom:-200px;
    right:-200px;
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}

.power-cta h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:25px;
}

.power-cta p{
    font-size:18px;
    color:#e2e8f0;
    margin-bottom:40px;
    line-height:1.8;
}

/* Buttons */
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.cta-primary{
    padding:16px 40px;
    background:#dc2626;
    color:white;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:0.3s ease;
    display: flex;
    align-items: center;
    gap:10px;
}

.cta-primary p{
    margin: 0;
}

.cta-primary:hover{
    transform:translateY(-5px);
    background:#b91c1c;
    box-shadow:0 0 25px rgba(220,38,38,0.5);
}

.cta-outline{
    padding:16px 40px;
    border:2px solid #38bdf8;
    color:#38bdf8;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:0.3s ease;
}

.cta-outline:hover{
    background:#38bdf8;
    color:#0f172a;
    transform:translateY(-5px);
}

/* Responsive */
@media(max-width:768px){
    .power-cta h2{
        font-size:30px;
    }

    .cta-buttons{
        flex-direction:column;
    }
}







/* CLEAN PROFESSIONAL CTA */

.clean-cta{
    padding:100px 8%;
    background:linear-gradient(135deg, #0b1120, #1e3a8a);
}

.clean-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    flex-wrap:wrap;
}

/* LEFT SIDE */

.clean-left{
    flex:1;
    min-width:320px;
    color:white;
}

.clean-left h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.clean-left p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#e2e8f0;
}

.clean-call-btn{
    display:inline-block;
    padding:15px 38px;
    background:#dc2626;
    color:white;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.clean-call-btn:hover{
    background:#b91c1c;
    transform:translateY(-4px);
}

/* FORM */

.clean-form{
    flex:1;
    min-width:340px;
    background:white;
    padding:45px;
    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,0.3);
}

.clean-form h3{
    margin-bottom:30px;
    font-size:22px;
    color:#0f172a;
}

.clean-form input,
.clean-form textarea{
    width:100%;
    padding:14px 16px;
    margin-bottom:18px;
    border-radius:8px;
    border:1px solid #e2e8f0;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.clean-form input:focus,
.clean-form textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,0.15);
}

.clean-form textarea{
    resize:none;
    height:90px;
}

/* SUBMIT BUTTON */

.clean-form button{
    width:100%;
    padding:16px;
    background:linear-gradient(135deg, #2563eb, #1e40af);
    border:none;
    border-radius:10px;
    color:white;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
}

.clean-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,99,235,0.4);
}

/* MOBILE */

@media(max-width:768px){
    .clean-container{
        flex-direction:column;
        text-align:center;
    }

    .clean-left h2{
        font-size:28px;
    }
}







/* CLEAN INTRO SECTION */

.intro-clean{
    padding:90px 8%;
    background:linear-gradient(180deg,#08122c,#0f1b3d);
    color:white;
}

.intro-clean-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

/* Heading */

.intro-clean h2{
    font-size:40px;
    font-weight:800;
    line-height:1.4;
    margin-bottom:20px;
}

.intro-clean h2 span{
    color:#38bdf8;
}

/* Divider Line */

.intro-divider{
    width:70px;
    height:4px;
    background:#38bdf8;
    margin:20px auto 35px auto;
    border-radius:4px;
}

/* Paragraph */

.intro-clean p{
    font-size:17px;
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:18px;
}

/* Responsive */

@media(max-width:768px){

.intro-clean h2{
    font-size:28px;
}

.intro-clean p{
    font-size:16px;
}

}


/* INTRO FEATURE BOXES */

.intro-boxes{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* BOX */

.intro-box{
    background:rgba(255,255,255,0.05);
    padding:30px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    transition:0.3s ease;
}

.intro-box:hover{
    transform:translateY(-6px);
    border:1px solid rgba(56,189,248,0.6);
    box-shadow:0 0 25px rgba(56,189,248,0.3);
}

.intro-box i{
    font-size:26px;
    color:#38bdf8;
    margin-bottom:12px;
}

.intro-box h4{
    font-size:18px;
    margin-bottom:8px;
}

.intro-box p{
    font-size:14px;
    color:#cbd5e1;
}

/* MOBILE */

@media(max-width:900px){

.intro-boxes{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.intro-boxes{
    grid-template-columns:1fr;
}

}





/* ABOUT CLEAN SECTION */

.about-clean{
    padding:100px 8%;
    background:linear-gradient(135deg,#0f1b3d,#08122c);
}

.about-clean-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

/* IMAGE */

.about-clean-img{
    flex:0.8;
    min-width:300px;
}

.about-clean-img img{
    width:100%;
    border-radius:14px;
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* TEXT */

.about-clean-text{
    flex:1.5%;
    min-width:320px;
    color:white;
}

.about-clean-text h2{
    font-size:35px;
    font-weight:800;
    margin-bottom:25px;
}

.about-clean-text h2 span{
    color:#38bdf8;
}

.about-clean-text p{
    color:#cbd5e1;
    line-height:1.5;
    margin-bottom:16px;
}

/* MOBILE */

@media(max-width:768px){

.about-clean-container{
    flex-direction:column;
    text-align:center;
}

.about-clean-text h2{
    font-size:28px;
}

}





/* WHY NEED SECTION */

.why-need{
    padding:100px 8%;
    background:linear-gradient(135deg,#08122c,#0f1b3d);
}

/* CONTAINER */

.why-need-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:70px;
    align-items:center;
    flex-wrap:wrap;
}

/* LEFT TEXT */

.why-need-text{
    flex:1.1;
    min-width:320px;
    color:white;
}

/* HEADING AREA */

.why-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px auto;
}

.why-header h2{
    font-size:40px;
    font-weight:800;
    line-height:1.4;
    color:white;
}

.why-header span{
    color:#38bdf8;
}

.why-divider{
    width:70px;
    height:4px;
    background:#38bdf8;
    margin:18px auto 0 auto;
    border-radius:4px;
}

.why-divider{
    width:70px;
    height:4px;
    background:#38bdf8;
    margin-bottom:25px;
    border-radius:4px;
}

.why-need-text p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:16px;
}


/* RIGHT BOX GRID */

.why-need-boxes{
    flex:1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}


/* BOX STYLE */

.why-box{
    display:flex;
    gap:10px;
    align-items:flex-start;
    background:#f1f5f9;
    padding:16px 18px;
    border-radius:10px;
    transition:0.3s;
}

.why-box:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.why-box i{
    color:#2563eb;
    margin-top:3px;
}

.why-box p{
    font-size:14px;
    color:#0f172a;
    margin:0;
}


/* MOBILE */

@media(max-width:900px){

.why-need-container{
    flex-direction:column;
}

.why-need-boxes{
    grid-template-columns:1fr;
}

.why-need-text h2{
    font-size:28px;
}

}





/* HIGHLIGHTS SECTION */

.highlights-section{
    padding:100px 8%;
    background:linear-gradient(135deg,#0f1b3d,#08122c);
}

/* HEADER */

.highlights-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
    color:white;
}

.highlights-header h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:18px;
}

.highlights-header span{
    color:#38bdf8;
}

.highlights-header p{
    color:#cbd5e1;
    line-height:1.8;
}


/* GRID */

.highlights-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}


/* CARD */

.highlight-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:30px;
    border-radius:14px;
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.highlight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
    border:1px solid rgba(56,189,248,0.4);
}

.highlight-card i{
    font-size:28px;
    color:#38bdf8;
    margin-bottom:12px;
}

.highlight-card h4{
    color:white;
    font-size:18px;
    margin-bottom:10px;
}

.highlight-card p{
    color:#cbd5e1;
    font-size:14px;
    line-height:1.7;
}


/* TABLET */

@media(max-width:900px){

.highlights-container{
    grid-template-columns:1fr 1fr;
}

}


/* MOBILE */

@media(max-width:600px){

.highlights-container{
    grid-template-columns:1fr;
}

.highlights-header h2{
    font-size:28px;
}

}






.programs-section{
    padding:100px 8%;
    background:linear-gradient(135deg,#08122c,#0f1b3d);
}

/* HEADER */

.programs-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
    color:white;
}

.programs-header h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:15px;
}

.programs-header span{
    color:#38bdf8;
}

.programs-header p{
    color:#cbd5e1;
    line-height:1.8;
}


/* CONTAINER */

.programs-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:25px;
}


/* PROGRAM ITEM */

.program-item{
    display:flex;
    gap:20px;
    background:#e3e9f0;
    padding:28px;
    border-radius:12px;
    transition:0.3s;
}

.program-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* ICON */

.program-icon{
    font-size:28px;
    color:#2563eb;
    min-width:40px;
}

/* TEXT */

.program-text h3{
    font-size:20px;
    margin-bottom:8px;
    color:#0f172a;
}

.program-text p{
    color:#334155;
    line-height:1.7;
}


/* MOBILE */

@media(max-width:768px){

.program-item{
    flex-direction:column;
}

.programs-header h2{
    font-size:28px;
}

}








.advantages-section{
    padding:100px 8%;
    background:linear-gradient(135deg,#0f1b3d,#08122c);
}

/* HEADER */

.advantages-header{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
    color:white;
}

.advantages-header h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:15px;
}

.advantages-header span{
    color:#38bdf8;
}

.advantages-header p{
    color:#cbd5e1;
    line-height:1.8;
}


/* GRID */

.advantages-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


/* ITEM */

.advantage-item{
    display:flex;
    gap:12px;
    background:#f1f5f9;
    padding:22px;
    border-radius:10px;
    transition:0.3s;
}

.advantage-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.advantage-item i{
    color:#2563eb;
    font-size:20px;
}

.advantage-item p{
    color:#334155;
    font-size:14px;
    line-height:1.6;
}


/* MOBILE */

@media(max-width:900px){

.advantages-container{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.advantages-container{
    grid-template-columns:1fr;
}

}
.advantage-item{
    border-left:4px solid #2563eb;
}







.faq-section{
    padding:100px 8%;
    background:linear-gradient(135deg,#08122c,#0f1b3d);
}

/* HEADER */

.faq-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.faq-header h2{
    font-size:40px;
    font-weight:800;
    color:white;
    margin-bottom:10px;
}

.faq-header p{
    color:#cbd5e1;
}

/* CONTAINER */

.faq-container{
    max-width:900px;
    margin:auto;
}

/* ITEM */

.faq-item{
    background:#f8fafc;
    border-radius:12px;
    margin-bottom:18px;
    border:1px solid #e2e8f0;
    transition:0.3s;
}

.faq-item:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* REMOVE DEFAULT ARROW */

.faq-item summary::-webkit-details-marker{
    display:none;
}

/* SUMMARY */

.faq-item summary{
    padding:20px 24px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    color:#0f172a;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ANSWER */

.faq-item p{
    padding:0 24px 20px 24px;
    color:#475569;
    line-height:1.7;
}

/* ICON */

.faq-icon{
    transition:0.3s;
    color:#2563eb;
}

/* ROTATE ICON WHEN OPEN */

.faq-item[open] .faq-icon{
    transform:rotate(180deg);
}