*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}


body{

background:#050816;
color:white;

}


/*=========================
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 */


.service-hero{

height:80vh;

display:flex;
align-items:center;

padding:0 10%;

position:relative;

overflow:hidden;

}


.hero-content{

width:600px;

}


.hero-content h1{

font-size:60px;
line-height:1.2;

}


.hero-content span{

color:#00eaff;

}


.hero-content p{

margin:25px 0;

font-size:18px;

color:#bbb;

}


button{

padding:15px 35px;

border:none;

border-radius:30px;

background:#00eaff;

font-weight:bold;

cursor:pointer;

}



.glow-circle{

position:absolute;

right:10%;

width:350px;
height:350px;

border-radius:50%;

background:#00eaff;

filter:blur(120px);

opacity:.5;

}




/* SERVICES */


.services{

padding:80px 10%;

}


.services h2{

text-align:center;

font-size:45px;

}


.services h2 span{

color:#00eaff;

}


.subtitle{

text-align:center;

color:#aaa;

margin:20px;

}



.service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}




.service-card{

background:
linear-gradient(145deg,#111936,#080b18);

padding:35px;

border-radius:25px;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}


.service-card i{

font-size:45px;

color:#00eaff;

}



.service-card h3{

margin:20px 0;

font-size:25px;

}


.service-card p{

color:#aaa;

line-height:1.7;

}


.service-card a{

display:inline-block;

margin-top:20px;

color:#00eaff;

text-decoration:none;

}



.service-card:hover{

transform:translateY(-15px);

box-shadow:0 0 40px rgba(0,234,255,.25);

}



/*==================================================
                CONTACT SECTION
==================================================*/

.contact-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#040814 0%,#091423 100%);
    overflow:hidden;
}

/*==========================
        Background
==========================*/

.contact-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    background:#00d4ff18;
    border-radius:50%;
    filter:blur(140px);
    top:-220px;
    left:-180px;
}

.contact-section::after{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#6C63FF18;
    border-radius:50%;
    filter:blur(140px);
    bottom:-180px;
    right:-180px;
}

.contact-particles{
    position:absolute;
    inset:0;
    background-image:

    radial-gradient(circle at 20% 20%,rgba(255,255,255,.18) 2px,transparent 2px),
    radial-gradient(circle at 70% 40%,rgba(255,255,255,.12) 2px,transparent 2px),
    radial-gradient(circle at 40% 80%,rgba(255,255,255,.15) 2px,transparent 2px),
    radial-gradient(circle at 85% 75%,rgba(255,255,255,.10) 2px,transparent 2px);

    background-size:220px 220px;
    animation:particlesMove 30s linear infinite;
    opacity:.35;
}

@keyframes particlesMove{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-220px);
    }

}

/*==========================
        Heading
==========================*/

.contact-heading{

    text-align:center;

    max-width:720px;

    margin:auto;

    margin-bottom:70px;

    position:relative;

    z-index:2;

}

.contact-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:rgba(0,212,255,.08);

    border:1px solid rgba(0,212,255,.25);

    color:#00d4ff;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.contact-heading h2{

    color:#fff;

    font-size:50px;

    margin:25px 0 18px;

    font-weight:700;

}

.contact-heading p{

    color:#9db0c3;

    line-height:1.8;

    font-size:17px;

}

/*==========================
      Main Card
==========================*/

.contact-main-card{

    position:relative;

    max-width:850px;

    margin:auto;

    padding:70px 60px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(22px);

    text-align:center;

    overflow:hidden;

    transition:.4s;

    z-index:2;

}

.contact-main-card:hover{

    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:0 25px 70px rgba(0,212,255,.18);

}

/* Glow */

.card-glow{

    position:absolute;

    width:320px;

    height:320px;

    background:#00d4ff;

    border-radius:50%;

    filter:blur(120px);

    opacity:.18;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    animation:cardGlow 4s ease-in-out infinite;

}

@keyframes cardGlow{

    0%,100%{

        transform:translate(-50%,-50%) scale(.9);

    }

    50%{

        transform:translate(-50%,-50%) scale(1.2);

    }

}

/* Logo */

.contact-logo{

    width:120px;

    height:120px;

    margin:auto;

    margin-bottom:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    position:relative;

    z-index:3;

}

.contact-logo img{

    width:75px;

}

.contact-main-card h3{

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

    position:relative;

    z-index:3;

}

.contact-main-card p{

    max-width:650px;

    margin:auto;

    color:#aab8c6;

    line-height:1.9;

    margin-bottom:40px;

    position:relative;

    z-index:3;

}

/*==========================
        Button
==========================*/

.contact-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    background:linear-gradient(90deg,#00d4ff,#6C63FF);

    font-weight:600;

    transition:.35s;

    position:relative;

    z-index:3;

}

.contact-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 45px rgba(0,212,255,.35);

}

.contact-btn i{

    transition:.35s;

}

.contact-btn:hover i{

    transform:translateX(8px);

}

/*==================================
            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;
}

}
/*====================================================
SOFTOGRID RESPONSIVE CSS
DESKTOP + TABLET + MOBILE
====================================================*/


/*==============================
GLOBAL RESPONSIVE FIX
==============================*/


*{
    box-sizing:border-box;
}


img{
    max-width:100%;
    height:auto;
}


html,body{

    width:100%;

    overflow-x:hidden;

}


/*====================================================
TABLET DEVICES
768px - 1100px
====================================================*/


@media(max-width:1100px){


.header{

    width:94%;

}



.navbar{

    padding:0 20px;

}



/* NAVIGATION */

.nav-links{

    gap:18px;

}


.nav-links a{

    font-size:14px;

}



/* HERO */


.hero{

    padding-top:150px;

}


.hero h1{

    font-size:55px;

}


.hero p{

    max-width:600px;

    font-size:17px;

}



/* ABOUT */


.about-container{

    gap:40px;

}



/* SERVICES */


.services-grid{

    grid-template-columns:repeat(2,1fr);

}



/* INDUSTRIES */


.industry-grid{

    grid-template-columns:repeat(2,1fr);

}



/* PORTFOLIO */


.portfolio-grid{

    grid-template-columns:repeat(2,1fr);

}



/* CONTACT */


.contact-container{

    gap:30px;

}



}



/*====================================================
MOBILE DEVICES
max-width 767px
====================================================*/


@media(max-width:767px){


/*==============================
HEADER
==============================*/


.header{

    width:94%;

    top:10px;

}



.navbar{

    height:auto;

    padding:12px 15px;

    flex-direction:column;

    gap:12px;

    border-radius:22px;

}



/* LOGO */


.brand img{

    width:35px;

}



.brand-text h2{

    font-size:20px;

}



.brand-text span{

    font-size:9px;

}



/* NAV LINKS */


.nav-links{

    width:100%;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:10px 14px;

}



.nav-links a{

    font-size:12px;

}



/*==============================
HERO
==============================*/


.hero{

    padding-top:160px;

    text-align:center;

}



.hero h1{

    font-size:36px;

    line-height:1.2;

}



.hero p{

    font-size:15px;

    line-height:1.6;

}



/* BUTTONS */


.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.hero-buttons a{

    width:100%;

}



/*==============================
COMMON SECTION
==============================*/


section{

    padding:60px 0;

}



.container{

    width:90%;

}



.section-title{

    font-size:30px;

    text-align:center;

}


.section-subtitle{

    font-size:15px;

    text-align:center;

}



/*==============================
ABOUT SECTION
==============================*/


.about-container{

    display:flex;

    flex-direction:column;

    text-align:center;

}



.about-content{

    width:100%;

}


.about-image{

    width:100%;

}



/*==============================
SERVICES
==============================*/


.services-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

}



.service-card{

    width:100%;

    padding:25px;

}



/*==============================
INDUSTRIES
==============================*/


.industry-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:20px;

}



/*==============================
PORTFOLIO
==============================*/


.portfolio-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

}



.project-card{

    width:100%;

}



/*==============================
CONTACT
==============================*/


.contact-container{

    display:flex;

    flex-direction:column;

    width:100%;

}



.contact-card{

    width:100%!important;

    max-width:350px;

    margin:auto;

}



.contact-form{

    width:100%;

}



input,
textarea{

    width:100%;

}



/*==============================
FOOTER
==============================*/


.footer-content{

    display:flex;

    flex-direction:column;

    text-align:center;

    gap:20px;

}



}





/*====================================================
SMALL PHONES
320px - 400px
====================================================*/


@media(max-width:400px){


.nav-links{

    gap:8px 10px;

}


.nav-links a{

    font-size:11px;

}



.hero h1{

    font-size:32px;

}



.section-title{

    font-size:26px;

}



.service-card,
.contact-card{

    padding:20px;

}



}