 
  /*==================================================
                ABOUT SECTION
==================================================*/
/*==================================
      LOGO SCANNER
==================================*/

.logo-scanner{

    position:relative;

    width:120px;
    height:120px;

    margin:0 auto 35px;

    display:flex;
    justify-content:center;
    align-items:center;

}

/* Company Logo */

.company-logo{

    width:100px;
    height:100px;

    object-fit:contain;

    border-radius:50%;

    background:#fff;

    padding:.5px;

    position:relative;

    z-index:3;

    box-shadow:0 0 25px rgba(0, 0, 0, 0.763);

}

/* Radar Rings */

.scan-ring{

    position:absolute;

    border:3px solid rgba(0, 251, 255, 0.947);

    border-radius:50%;

    animation:radar 3s linear infinite;

}

.ring1{

    width:100px;
    height:100px;

}

.ring2{

    width:130px;
    height:130px;

    animation-delay:.8s;

}

.ring3{

    width:160px;
    height:160px;

    animation-delay:1.6s;

}

/* Scanner Line */

.scan-line{

    position:absolute;

    width:4px;
    height:160px;

    background:linear-gradient(
        to bottom,
        transparent,
        #00C2FF,
        transparent
    );

    border-radius:20px;

    transform-origin:center;

    animation:rotateScan 3s linear infinite;

}

/* Radar Animation */

@keyframes radar{

0%{

transform:scale(.4);
opacity:1;

}

100%{

transform:scale(1.4);
opacity:0;

}

}

/* Scanner Rotation */

@keyframes rotateScan{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

.about-section{
    padding:100px 8%;
    background:#F8FBFD;
    position:relative;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(0,194,255,.06);
    border-radius:50%;
    top:-180px;
    right:-180px;
    filter:blur(90px);
}

.about-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,.05);
    border-radius:50%;
    bottom:-150px;
    left:-150px;
    filter:blur(80px);
}

/*================================*/

.about-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

/*==================================
        PREMIUM CARD
==================================*/

.about-card{

    position:relative;
    overflow:hidden;

    padding:55px 38px;

    border-radius:28px;

    background:linear-gradient(145deg,#0B1220,#111827,#1E293B);

    border:1px solid rgba(0,194,255,.15);

    box-shadow:
    0 30px 70px rgba(0,0,0,.45),
    0 0 35px rgba(0,194,255,.08);

    transition:.45s;

    animation:floatCard 5s ease-in-out infinite;

}

/* Glow */

.card-glow{

    position:absolute;

    width:300px;
    height:300px;

    background:radial-gradient(circle,
    rgba(0,194,255,.35),
    transparent 70%);

    top:-120px;
    right:-120px;

    filter:blur(40px);

}

/*================================*/

.card-icon{

    width:90px;
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:24px;

    background:linear-gradient(135deg,#00C2FF,#0D6EFD);

    color:#fff;

    font-size:38px;

    margin-bottom:30px;

    box-shadow:0 15px 35px rgba(0,194,255,.30);

}

/*================================*/

.about-card h3{

    font-size:32px;
    font-weight:700;
    color:#fff;

    margin-bottom:15px;

}

.about-card p{

    color:#CBD5E1;
    font-size:16px;
    line-height:1.9;

    margin-bottom:35px;

}

/*================================*/

.experience{

    margin-top:20px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.experience h2{

    font-size:62px;
    color:#00C2FF;

    line-height:1;

    text-shadow:0 0 20px rgba(0,194,255,.35);

}

.experience span{

    color:#E2E8F0;

    font-size:15px;

    font-weight:500;

}

/*==================================
        RIGHT CONTENT
==================================*/

.about-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:#000000;

    color:#00ffff;

    font-size:14px;

    font-weight:700;
    

    margin-bottom:22px;

}

.about-content h2{

    font-size:48px;

    line-height:1.25;

    color:#0F172A;

    margin-bottom:25px;

    font-weight:800;

}

.about-content h2 span{

    color:#00f7ff;

}

.about-text{

    font-size:17px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:35px;

}

/*==================================
          LIST
==================================*/

.about-list{

    list-style:none;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.about-list li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    background:#fff;

    padding:16px 18px;

    border-radius:16px;

    border:1px solid #E2E8F0;

    box-shadow:0 10px 25px rgba(15,23,42,.05);

    transition:.35s;

    font-weight:600;

    color:#334155;

}

.about-list li:hover{

    transform:translateY(-6px);

    border-color:#00f7ff;

    box-shadow:0 20px 40px rgba(0,194,255,.12);

}

.about-list i{

    color:#000000 () ;

    margin-top:3px;

}

/*==================================
            BUTTON
==================================*/

.about-btn{

    display:inline-block;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    background:linear-gradient(135deg,#132130,#132130);

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,194,255,.25);

}

.about-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 25px 45px rgba(0,194,255,.35);

}

/*==================================
          HOVER CARD
==================================*/

.about-card:hover{

    transform:translateY(-12px);

    border-color:#00fffb;

    box-shadow:
    0 40px 90px rgba(0,0,0,.55),
    0 0 45px rgba(0,194,255,.18);

}

/*==================================
        FLOAT ANIMATION
==================================*/

@keyframes floatCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*==================================
        TABLET
==================================*/

@media(max-width:992px){

.about-container{

grid-template-columns:1fr;

gap:60px;

}

.about-card{

max-width:500px;

margin:auto;

}

.about-content{

text-align:center;

}

.about-list{

grid-template-columns:1fr;

text-align:left;

}

.about-content h2{

font-size:38px;

}

}

/*==================================
        MOBILE
==================================*/

@media(max-width:768px){

.about-section{

padding:70px 20px;

}

.about-card{

padding:35px;

border-radius:22px;

}

.card-icon{

width:75px;

height:75px;

font-size:30px;

}

.about-card h3{

font-size:26px;

}

.experience h2{

font-size:50px;

}

.about-content h2{

font-size:30px;

}

.about-text{

font-size:15px;

}

.about-list li{

padding:14px;

font-size:14px;

}

.about-btn{

width:100%;

text-align:center;

}

}
