    /*==================================
        AI HERO
==================================*/

.ai-hero{

    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(135deg,#06101f 0%,#0b1c38 50%,#08111f 100%);

    position:relative;
    overflow:hidden;

}

/* Background Grid */

.ai-hero::before{

    content:"";

    position:absolute;
    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:80px 80px;

}

.ai-hero-container{

    width:90%;
    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 700px;

    gap:70px;

    align-items:center;

    position:relative;
    z-index:2;

}

/* LEFT */

.ai-talk{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#8cf4ff;

    text-decoration:none;

    font-size:18px;

    margin-bottom:35px;

}

.ai-talk:hover{

    color:#fff;

}

.ai-small-title{

    display:block;

    color:#00d9ff;

    font-size:22px;

    margin-bottom:20px;

    font-weight:500;

}

.ai-left h1{

    color:#fff;

    font-size:86px;

    line-height:1;

    font-weight:700;

    margin-bottom:28px;

}

.ai-left h1 span{

    background:linear-gradient(90deg,#00e5ff,#5B3DF5);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.ai-left p{

    color:#cfd7e5;

    font-size:22px;

    line-height:1.8;

    max-width:650px;

}

/* Buttons */

.ai-buttons{

    display:flex;

    gap:22px;

    margin-top:55px;

}

.ai-btn-primary{

    background:#00d9ff;

    color:#111;

    text-decoration:none;

    padding:18px 40px;

    border-radius:10px;

    font-size:18px;

    font-weight:600;

    transition:.4s;

}

.ai-btn-primary:hover{

    transform:translateY(-5px);

}

.ai-btn-outline{

    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    text-decoration:none;

    padding:18px 40px;

    border-radius:10px;

    transition:.4s;

}

.ai-btn-outline:hover{

    background:#fff;

    color:#111;

}

/* RIGHT */

.ai-right{

    display:flex;

    justify-content:center;

}

.ai-right img{

    width:100%;

    max-width:680px;

    animation:aiFloat 5s ease-in-out infinite;

}

@keyframes aiFloat{

0%{transform:translateY(0);}

50%{transform:translateY(-15px);}

100%{transform:translateY(0);}

}

/* Responsive */

@media(max-width:1100px){

.ai-hero-container{

grid-template-columns:1fr;

text-align:center;

}

.ai-left{

order:2;

}

.ai-right{

order:1;

}

.ai-buttons{

justify-content:center;

}

.ai-left p{

margin:auto;

}

}

@media(max-width:768px){

.ai-left h1{

font-size:52px;

}

.ai-left p{

font-size:18px;

}

.ai-buttons{

flex-direction:column;

}

}

/*==================================
    EMERGING TECHNOLOGIES
==================================*/

.emerging-tech{

    width:100%;
    padding:120px 7%;
    background:#fff;

}

.emerging-container{

    max-width:1450px;
    margin:auto;

}

.emerging-heading{

    text-align:center;
    margin-bottom:70px;

}

.emerging-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:#eef6ff;

    color:#1f7ae0;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

.emerging-heading h2{

    font-size:58px;

    color:#111;

    line-height:1.1;

    margin-bottom:25px;

}

.emerging-heading h2 span{

    color:#1f7ae0;

}

.emerging-heading p{

    max-width:850px;

    margin:auto;

    font-size:19px;

    line-height:1.9;

    color:#666;

}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.tech-card{

    padding:45px;

    border-radius:32px;

    background:#fff;

    border:1px solid #e8edf3;

    box-shadow:0 15px 50px rgba(0,0,0,.05);

    transition:.4s;

}

.tech-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.tech-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    background:#2f7993;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:30px;

}

.tech-label{

    display:block;

    color:#2f7993;

    font-size:17px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.tech-card h3{

    font-size:46px;

    line-height:1.2;

    color:#111;

    margin-bottom:22px;

    font-weight:500;

}

.tech-card p{

    font-size:20px;

    line-height:1.9;

    color:#707070;

    margin-bottom:35px;

}

.tech-card ul{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    list-style:none;

}

.tech-card ul li{

    position:relative;

    padding-left:28px;

    font-size:20px;

    color:#222;

}

.tech-card ul li::before{

    content:"";

    width:12px;

    height:12px;

    background:#1f7ae0;

    border-radius:50%;

    position:absolute;

    left:0;

    top:10px;

}

@media(max-width:991px){

.tech-grid{

grid-template-columns:1fr;

}

.emerging-heading h2{

font-size:42px;

}

.tech-card h3{

font-size:34px;

}

}