/* ================================
   SOFTOGRID ABOUT PAGE
   PREMIUM LIGHT THEME
================================ */


/* GLOBAL */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{

    background:#F8FAFC;
    color:#0F172A;
    overflow-x:hidden;

}


a{

    text-decoration:none;
    color:inherit;

}





/* ================================
        NAVBAR
================================ */


/*=========================
HEADER
=========================*/

/*=========================
FLOATING HEADER
=========================*/

/*==========================
HEADER
==========================*/


.header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:90%;

    z-index:1000;


    /* subtle cyan glow behind navbar */

    filter:drop-shadow(0 0 20px rgba(0,234,255,0.25));

}



.navbar{

    height:75px;

    padding:0 35px;

    display:flex;

    align-items:center;

    justify-content:space-between;


    /* SoftoGrid Glass Background */

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.18),
        rgba(16, 200, 216, 0.888)
    );


    backdrop-filter:blur(18px);


    /* Border Glow */

    border:1px solid rgba(255,255,255,0.35);


    box-shadow:

    0 8px 35px rgba(0,234,255,0.15),
    
    inset 0 0 20px rgba(255,255,255,0.08);


    border-radius:25px;

}

/*==========================
LOGO
==========================*/


.brand{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}



.brand img{

    width:45px;

    height:45px;

    object-fit:contain;

}



.brand-text h2{

    margin:0;

    font-size:24px;

    color:white;

    font-weight:700;

    letter-spacing:.5px;

}



.brand-text span{

    color:#00eaff;

    font-size:12px;

    letter-spacing:3px;

}



/*==========================
NAV LINKS
==========================*/


.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

    margin:0;

    padding:0;

}



.nav-links a{

    color:rgb(9, 9, 9);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.3s;

}



.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#00eaff;

    transition:.3s;

}



.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}



.nav-links a:hover{

    color:#00eaff;

}


/* ================================
        HERO
================================ */


.about-hero{


    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;


    padding:0 10%;


    position:relative;


    background:

    radial-gradient(circle at top right,
    rgba(20,184,166,.15),
    transparent 35%),


    linear-gradient(
    135deg,
    #ffffff,
    #e2e8f0
    );


}




.hero-content{

    max-width:650px;

}



.hero-content h1{

    font-size:70px;

    line-height:1.1;

    font-weight:800;

    color:#0F172A;


}



.hero-content h1 span{

    background:

    linear-gradient(
    90deg,
    #14B8A6,
    #F97316
    );


    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;


}



.hero-content p{

    margin-top:25px;

    font-size:22px;

    color:#475569;

    line-height:1.6;

}



.hero-btn{


    display:inline-block;

    margin-top:40px;

    padding:16px 35px;


    border-radius:50px;


    color:white;

    font-weight:600;


    background:

    linear-gradient(
    90deg,
    #F97316,
    #14B8A6
    );


    box-shadow:
    0 10px 30px rgba(20,184,166,.3);


    transition:.4s;

}



.hero-btn:hover{

    transform:translateY(-5px);

}




/* Floating Logo */


.floating-logo{

    width:320px;
    height:320px;


    border-radius:50%;


    display:flex;
    justify-content:center;
    align-items:center;


    background:white;


    box-shadow:

    0 30px 70px rgba(15,23,42,.15);


    animation:float 4s infinite ease-in-out;


}



.floating-logo img{

    width:180px;

}



@keyframes float{


0%,100%{

transform:translateY(0);

}


50%{

transform:translateY(-25px);

}


}




.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);


    color:#64748B;

    font-size:14px;


}



.scroll-down span{


    display:block;

    width:2px;
    height:50px;


    background:#14B8A6;

    margin:auto;
    margin-bottom:10px;


}







/* ================================
        STORY SECTION
================================ */


.story{


    padding:120px 10%;


    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;


}



.story-image img{


    width:100%;

    border-radius:30px;


    box-shadow:

    0 25px 60px rgba(15,23,42,.15);


}



.story-content h2,
.who h2,
.timeline-section h2{


    font-size:45px;

    margin-bottom:30px;

}



.story-content p{


    color:#475569;

    line-height:1.8;

    margin-bottom:20px;

    font-size:17px;

}





/* ================================
        WHO WE ARE
================================ */


.who{


    padding:100px 10%;

    background:white;

    text-align:center;

}




.who-grid{


    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;


}



.who-card{


    padding:35px 25px;


    border-radius:25px;


    background:#F8FAFC;


    transition:.4s;


    box-shadow:

    0 10px 30px rgba(0,0,0,.05);


}



.who-card:hover{


    transform:translateY(-12px);


    background:#ffffff;


    box-shadow:

    0 20px 50px rgba(20,184,166,.2);


}



.who-card h3{

    font-size:22px;

    margin-bottom:15px;

}



.who-card p{

    color:#64748B;

}








/* ================================
        TIMELINE
================================ */



.timeline-section{


    padding:120px 10%;

    text-align:center;


}



.timeline{


    margin-top:70px;

    position:relative;

}



.line{


    position:absolute;

    width:5px;

    height:100%;

    background:#14B8A6;

    left:50%;

    transform:translateX(-50%);


}




.timeline-item{


    position:relative;

    margin:70px 0;


}



.circle{


    margin:auto;


    width:70px;

    height:70px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:50%;


    background:#0F172A;


    color:white;


    font-weight:700;


}




.timeline-item h3{

    margin-top:20px;

    font-size:28px;

}








/* ================================
        MISSION
================================ */



.mission{


    padding:100px 10%;

    display:flex;

    justify-content:center;

}



.mission-box{


    max-width:900px;

    padding:60px;

    border-radius:35px;


    background:

    linear-gradient(
    135deg,
    #0F172A,
    #1e293b
    );


    color:white;

    text-align:center;


}



.mission-box h2{

    font-size:42px;

    margin-bottom:20px;

}



.mission-box p{

    font-size:20px;

    line-height:1.7;

    color:#cbd5e1;

}






/*==================================
            FOOTER
==================================*/

#footer{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#081220 0%,#050b15 100%);
    padding:90px 8% 30px;
}

/*==========================
TOP GLOW LINE
==========================*/

.footer-top-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,
    transparent,
    #00eaff,
    #4df6ff,
    transparent);
    box-shadow:0 0 25px #00eaff;
}

/*==========================
BACKGROUND
==========================*/

.footer-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}

.footer-bg span{
    position:absolute;
    border-radius:50%;
    background:rgba(0,234,255,.08);
    filter:blur(90px);
    animation:footerFloat 12s ease-in-out infinite;
}

.footer-bg span:nth-child(1){
    width:240px;
    height:240px;
    left:-60px;
    top:-40px;
}

.footer-bg span:nth-child(2){
    width:300px;
    height:300px;
    right:-100px;
    bottom:-120px;
    animation-delay:2s;
}

.footer-bg span:nth-child(3){
    width:220px;
    height:220px;
    left:45%;
    top:30%;
    animation-delay:4s;
}

/*==========================
CONTAINER
==========================*/

#footer .container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
}

/*==========================
CONTENT
==========================*/

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
    margin-bottom:70px;
}

/*==========================
LOGO
==========================*/

.footer-logo{
    width:70px;
    margin-bottom:18px;
}

.footer-brand h2{
    color:#fff;
    font-size:30px;
    margin-bottom:18px;
}

.footer-brand p{
    color:rgba(255,255,255,.72);
    line-height:1.9;
    max-width:420px;
}

/*==========================
HEADINGS
==========================*/

.footer-links h3,
.footer-contact h3{
    color:#fff;
    margin-bottom:25px;
    position:relative;
    display:inline-block;
}

.footer-links h3::after,
.footer-contact h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:2px;
    background:#00eaff;
}

/*==========================
LINKS
==========================*/

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
    color:rgba(255,255,255,.7);
    text-decoration:none;
    transition:.35s;
}

.footer-links a:hover{
    color:#00eaff;
    padding-left:8px;
}

/*==========================
CONTACT
==========================*/

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer-contact-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,234,255,.08);
    color:#00eaff;
    border:1px solid rgba(0,234,255,.2);
}

.footer-contact-item a,
.footer-contact-item span{
    color:rgba(255,255,255,.72);
    text-decoration:none;
}

.footer-contact-item a:hover{
    color:#00eaff;
}

/*==========================
BOTTOM
==========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-copy{
    color:rgba(255,255,255,.6);
}

/*==========================
SOCIAL
==========================*/

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,234,255,.15);
    transition:.35s;
}

.footer-social a:hover{
    background:#00eaff;
    color:#081220;
    transform:translateY(-6px);
    box-shadow:0 0 25px rgba(0,234,255,.5);
}

/*==========================
BACK TO TOP
==========================*/

#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    outline:none;
    cursor:pointer;
    border-radius:50%;
    background:#00eaff;
    color:#081220;
    font-size:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 25px rgba(0,234,255,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

#backToTop.active{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    transform:translateY(-8px);
}

/*==========================
ANIMATION
==========================*/

@keyframes footerFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-35px);
    }

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.footer-content{
grid-template-columns:1fr;
gap:45px;
}

.footer-brand p{
max-width:100%;
}

}

@media(max-width:768px){

#footer{
padding:70px 20px 25px;
}

.footer-brand h2{
font-size:26px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-social{
justify-content:center;
}

#backToTop{
right:20px;
bottom:20px;
width:48px;
height:48px;
}

}

@media(max-width:480px){

.footer-logo{
width:60px;
}

.footer-brand h2{
font-size:22px;
}

.footer-contact-item{
align-items:flex-start;
}

}