/* =====================================
   SOFTOGRID INDUSTRIES PAGE
   ENTERPRISE LUXURY DESIGN
===================================== */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;

}


body{

background:#f7f8fc;
color:#101828;
overflow-x:hidden;

}



/* HEADER */

/*=========================
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
========================== */


.hero{

min-height:90vh;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 10%;

position:relative;

overflow:hidden;

}



.hero-content{

max-width:750px;

}



.tag{

color:#6C4BFF!important;

font-weight:700;

letter-spacing:2px;

font-size:14px!important;

}



.hero h1{

font-size:70px;

line-height:1.1;

font-weight:800;

color:#071426;

margin:25px 0;

}



.hero h1 span{

color:#6C4BFF;

}



.hero p{

font-size:20px;

line-height:1.7;

color:#667085;

max-width:650px;

}



button{

margin-top:35px;

padding:16px 40px;

border:none;

border-radius:50px;

background:#071426;

color:white;

font-size:16px;

cursor:pointer;

transition:.4s;

}



button:hover{

background:#6C4BFF;

transform:translateY(-5px);

}





/* HERO SHAPE */


.hero-shape{

width:420px;

height:420px;

border-radius:50%;

background:

linear-gradient(
135deg,
#6C4BFF,
#D4AF37
);

display:flex;

align-items:center;

justify-content:center;

animation:float 5s infinite ease-in-out;

}


.hero-shape div{

width:300px;

height:300px;

background:white;

border-radius:50%;

}



@keyframes float{


50%{

transform:translateY(-25px);

}


}








/* ==========================
        SECTION TITLE
========================== */


.industry-section{

padding:100px 10%;

}



.section-title{

text-align:center;

margin-bottom:80px;

}



.section-title h2{

font-size:48px;

color:#071426;

}


.section-title span{

color:#6C4BFF;

}


.section-title p{

margin-top:20px;

color:#667085;

font-size:18px;

}





/* ==========================
      INDUSTRY ITEM
========================== */


.industry-item{

display:flex;

align-items:center;

gap:70px;

margin-bottom:120px;

position:relative;

}



.industry-item.reverse{

flex-direction:row-reverse;

}




.number{

font-size:100px;

font-weight:800;

color:#e9e7ff;

position:absolute;

left:-40px;

top:-40px;

z-index:-1;

}




.content{

flex:1;

}



.content i{

font-size:45px;

color:#6C4BFF;

}



.content h3{

font-size:38px;

margin:25px 0;

color:#071426;

}



.content p{

font-size:18px;

line-height:1.8;

color:#667085;

}



.content ul{

margin:25px 0;

}



.content li{

list-style:none;

margin:12px 0;

color:#344054;

}



.content li::before{

content:"✓";

color:#D4AF37;

font-weight:bold;

margin-right:12px;

}



.content a{

text-decoration:none;

color:#6C4BFF;

font-weight:600;

}







/* ==========================
        VISUAL BOX
========================== */


.visual{

flex:1;

height:350px;

display:flex;

justify-content:center;

align-items:center;

}



.circle{


height:280px;

width:280px;

border-radius:50%;


display:flex;

align-items:center;

justify-content:center;


font-size:28px;

font-weight:700;


color:#071426;


background:white;


box-shadow:

0 30px 80px rgba(108,75,255,.18);


border:2px solid #eee;


position:relative;

}



.circle::before{


content:"";


position:absolute;

width:100%;

height:100%;

border-radius:50%;


border:2px dashed #6C4BFF;


animation:rotate 15s linear infinite;


}



@keyframes rotate{


100%{

transform:rotate(360deg);

}

}







/* ==========================
        TRUST SECTION
========================== */


.trust{


background:#071426;

padding:100px 10%;

color:white;

text-align:center;


}



.trust h2{

font-size:45px;

}


.trust span{

color:#D4AF37;

}



.trust-grid{


display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;


}



.trust-grid div{


background:#101d35;

padding:40px;

border-radius:25px;

transition:.4s;


}



.trust-grid div:hover{


transform:translateY(-15px);


}



.trust-grid h3{

margin-bottom:20px;

font-size:24px;

}



.trust-grid p{

color:#b5bfd1;

line-height:1.7;

}







/* ==========================
        RESPONSIVE
========================== */


@media(max-width:1000px){


.hero{

flex-direction:column;

text-align:center;

padding-top:80px;

}



.hero h1{

font-size:50px;

}



.hero-shape{

margin-top:60px;

}



.industry-item,
.industry-item.reverse{

flex-direction:column;

}



.trust-grid{

grid-template-columns:1fr;

}


}



@media(max-width:600px){


nav{

display:none;

}


.hero h1{

font-size:38px;

}


.section-title h2{

font-size:34px;

}


.content h3{

font-size:30px;

}


.visual{

height:250px;

}


.circle{

width:220px;

height:220px;

}


}













/*==================================
            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;
}

}