/* ==========================================================
   AVARTHANA TECHNOLOGIES
   Technology Section
   Release 1.1.1 - Part 1
========================================================== */

.technology-section{

    position:relative;
    padding:90px 0 110px;
    background:#ffffff;

}

.technology-section .container{

    max-width:1440px;
    margin:0 auto;
    padding:0 24px;

}


/* ==========================================================
   SECTION HEADER
========================================================== */

.technology-header{

    max-width:820px;

    margin:0 auto 80px;

    text-align:center;

}
.section-label{

    display:inline-block;

    margin-bottom:18px;

    font-size:.82rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;

    color:#1998ff;

}

.technology-header h2{

    margin:0 0 22px;

    font-size:clamp(2.4rem,3vw,3.2rem);;
    font-weight:800;
    line-height:1.15;

    color:#0b1726;

}

.technology-header p{

    margin:0;

    font-size:1.12rem;

    line-height:1.95;

    color:#5d6f86;

}

/* ==========================================================
   GRID
========================================================== */

.technology-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(360px,1fr));

    gap:38px;

    align-items:stretch;

}


/* ==========================================================
   CARD
========================================================== */

.technology-card{

    display:flex;
    flex-direction:column;

    padding:38px;

    background:#ffffff;

    border:1px solid #e4edf6;

    border-radius:18px;

    box-shadow:
        0 10px 28px rgba(12,40,70,.05);

    transition:
        transform .30s ease,
        box-shadow .30s ease,
        border-color .30s ease;

}


/* ==========================================================
   ICON
========================================================== */

.technology-icon{

    width:58px;
    height:58px;

    margin-bottom:26px;

    border-radius:50%;

    background:#0b1726;

    border:2px solid #1ca4ff;

    position:relative;

}

.technology-icon::after{

    content:"";

    position:absolute;

    left:50%;
    top:50%;

    width:12px;
    height:12px;

    border-radius:50%;

    background:#1ca4ff;

    transform:translate(-50%,-50%);

}


/* ==========================================================
   CARD TYPOGRAPHY
========================================================== */

.technology-card h3{

    margin:0 0 18px;

    font-size:1.48rem;
    font-weight:700;

    color:#0b1726;

}

.technology-card p{

    margin:0 0 24px;
font-size:1rem;
line-height:1.82;

    color:#60738a;

}


/* ==========================================================
   FEATURE LIST
========================================================== */

.technology-card ul{

    margin:0;
    padding:0;

    list-style:none;

}

.technology-card li{

    position:relative;

    margin-bottom:12px;

    padding-left:24px;

    font-size:.97rem;

    color:#32475d;

}

.technology-card li:last-child{

    margin-bottom:0;

}

.technology-card li::before{

    content:"✓";

    position:absolute;

    left:0;
    top:0;

    font-weight:700;

    color:#1ca4ff;

}
/* ==========================================================
   HOVER EFFECTS
========================================================== */

.technology-card:hover{

    transform:translateY(-6px);

    border-color:#1998ff;

    box-shadow:
         0 12px 34px rgba(8,32,56,.06);

}

.technology-card:hover .technology-icon{

    background:#1998ff;

    border-color:#1998ff;

    transform:scale(1.05);

    transition:
        transform .30s ease,
        background .30s ease,
        border-color .30s ease;

}

.technology-card:hover .technology-icon::after{

    background:#ffffff;

}

.technology-card:hover h3{

    color:#1998ff;

}


/* ==========================================================
   CARD DIVIDER
========================================================== */

.technology-card::after{

    content:"";

    margin-top:28px;

    width:72px;
    height:3px;

    border-radius:4px;

    background:#1998ff;

    opacity:.18;

    transition:
        width .30s ease,
        opacity .30s ease;

}

.technology-card:hover::after{

    width:110px;

    opacity:1;

}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

.technology-card:focus-within{

    border-color:#1998ff;

    box-shadow:
        0 0 0 3px rgba(25,152,255,.15),
        0 18px 40px rgba(12,40,70,.10);

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1200px){

    .technology-grid{

        grid-template-columns:
            repeat(2,minmax(340px,1fr));

        gap:28px;

    }

}


@media (max-width:768px){

    .technology-section{

        padding:70px 0 80px;

    }

    .technology-header{

        margin-bottom:48px;

    }

    .technology-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .technology-card{

        padding:32px;

    }

    .technology-header h2{

        font-size:2rem;

    }

    .technology-header p{

        font-size:1rem;

        line-height:1.75;

    }

}


@media (max-width:480px){

    .technology-section .container{

        padding:0 18px;

    }

    .technology-card{

        padding:24px;

        border-radius:16px;

    }

    .technology-card h3{

        font-size:1.25rem;

    }

    .technology-card p{

        font-size:.95rem;

    }

    .technology-card li{

        font-size:.90rem;

    }

    .technology-icon{

        width:52px;
        height:52px;

        margin-bottom:22px;

    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion:reduce){

    .technology-card,
    .technology-icon,
    .technology-card::after{

        transition:none;

    }

}