/*====================================================
S-CUBE SOLUTION PRIVATE LIMITED
FUTURISTIC WEBSITE STYLE SHEET

STYLE.CSS PART 1

====================================================*/


/*==============================
GLOBAL RESET
===============================*/


*{
    margin:0;
    padding:0;
    
    box-sizing:border-box;
    scroll-behavior:smooth;

}



html{

    font-size:16px;
    overflow-x:hidden;

}



body{

    font-family:'Poppins',sans-serif;
    background:#000000;
    color:#ffffff;
    overflow-x:hidden;

}



a{

    text-decoration:none;
    color:inherit;

}



ul{

    list-style:none;

}



img{
width:100%;
    max-width:600px;
    height:auto;

    display:block;

}



button,
input,
textarea,
select{

    font-family:inherit;

}





/*==============================
ROOT COLORS
===============================*/


:root{


    --primary:#00eaff;

    --secondary:#0066ff;

    --purple:#9b5cff;

    --dark:black;

    --dark-light:#0b1228;

    --card:#101936;

    --white:#ffffff;

    --text:#c9d4ff;

    --gradient:
    linear-gradient(
    135deg,
    #00eaff,
    #0066ff,
    #9b5cff
    );


}







/*==============================
CUSTOM SCROLLBAR
===============================*/


::-webkit-scrollbar{

    width: 15pxpx;

}



::-webkit-scrollbar-track{

    background:#050816;

}



::-webkit-scrollbar-thumb{

    background:var(--gradient);

    border-radius:20px;

}





/*==============================
COMMON CONTAINER
===============================*/


.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}





/*==============================
SECTION COMMON STYLE
===============================*/


section{

    padding:100px 25;

}



.section-title{

    text-align:center;
    max-width:800px;
    margin:0 25 60px;

}



.section-title span{

    color:var(--primary);
    font-size:50px;
    font-weight:600;
    letter-spacing:3px;

}   



.section-title h2{

    font-size:45px;
    margin:25px 25px;
    font-weight:700;

}



.section-title p{

    color:var(--text);
    line-height:1.8;

}








/*==============================
HEADER NAVBAR
===============================*/


header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    
background:#050816;
    border-bottom:

    1px solid rgba(23, 6, 6, 0.08);


}





.navbar{

    width:90%;
    max-width:1200px;

    margin:auto;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

position:relative;
}





/*==============================
LOGO
===============================*/


.logo{

    display:flex;

    align-items:center;

    gap:4px;

    font-size:30px;
font-style:bold;
    font-weight:2000;

    color:rgb(255, 251, 251);

}



.logo img{

    width:190px;

    height:800px;

    object-fit:contain;

    

   

}








/*==============================
NAVIGATION LINKS
===============================*/


.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

}



.nav-links li a{

    position:relative;

    color:white;

    font-size:15px;

    font-weight:500;

    transition:.4s;

}



.nav-links li a::after{


    content:"";

    position:absolute;

    width:0;

    height:2px;

    bottom:-8px;

    left:0;

    background:var(--primary);

    transition:.4s;


}





.nav-links li a:hover::after,
.nav-links li a.active::after{

    width: 100px;

}



.nav-links li a:hover{

    color:var(--primary);

}







/*==============================
CONTACT BUTTON
===============================*/


.contact-btn{


    padding:12px 28px;

    border-radius:30px;

    background:var(--gradient);

    color:white!important;

    transition:.4s;

}



.contact-btn:hover{


    transform:

    translateY(-5px);

    box-shadow:

    0 0 25px var(--primary);


}







/*==============================
MOBILE MENU BUTTON
===============================*/


.menu-btn{

    display:none;

    cursor:pointer;

}



.menu-btn span{

    display:block;

    width:30px;

    height:3px;

    margin:6px;

    background:white;

    transition:.4s;

}






/*==============================
PART 1 END

NEXT:
style.css Part 2

Hero Sections
Video Background
Buttons
Animations
Page Hero

===============================*/
/*====================================================
STYLE.CSS PART 2

HERO SECTION
VIDEO BACKGROUND
PAGE HERO
BUTTONS
ANIMATIONS

====================================================*/



/*==============================
HOME HERO SECTION
===============================*/


.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

    margin-top:80px;

}





/*==============================
BACKGROUND VIDEO
===============================*/


.hero video{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:-2;

}





.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    90deg,

    rgba(5,8,22,.95),

    rgba(5,8,22,.65),

    rgba(5,8,22,.85)

    );

    z-index:-1;

}






/*==============================
HERO CONTENT
===============================*/


.hero-content{

    width:100%;

    animation:

    slideUp 1.2s ease;

}



.hero-content span{
margin:25px 25px;

    color:var(--primary);

    font-size:12px;

    letter-spacing:4px;

    font-weight:400;
}





.hero-content h1{

    font-size:50px;

    line-height:1.1;

    margin:25px 25px;

    font-weight:600;

}





.hero-content h1 span{

    background:


    var(--gradient);
margin:25px 25px;

    background-clip:text;

    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color:transparent;

}





.hero-content p{

    max-width:650px;

    color:var(--text);

    font-size:18px;

    line-height:1.8;

     margin:25px 25px;

}







/*==============================
HERO BUTTONS
===============================*/


.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px 25px;
margin:25px 25px;
}





.btn-primary,
.btn-secondary{

    padding:15px 35px;

    border-radius:40px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    transition:.4s;

    position:relative;

    overflow:hidden;

}




.btn-primary{


    background:var(--gradient);

    color:white;

    box-shadow:

    0 0 20px rgba(0,234,255,.4);

}




.btn-secondary{


    border:1px solid var(--primary);

    color:var(--primary);

}





.btn-primary:hover,
.btn-secondary:hover{


    transform:

    translateY(-8px);

}





.btn-secondary:hover{

    background:var(--primary);

    color:#050816;

}







/*==============================
GLOW BUTTON EFFECT
===============================*/


.btn-primary::before{


    content:"";

    position:absolute;

    width:0;

    height:100%;

    background:

    rgba(255,255,255,.25);

    left:0;

    top:0;

    transition:.5s;

}



.btn-primary:hover::before{


    width:100%;

}








/*==============================
FLOATING ROBOT / IMAGE
===============================*/


.hero-image{

    width:40%;

    display:flex;

    justify-content:center;

}





.hero-image img{


    width:100%;
max-width:600px;
height:auto;
    animation:

    floating 4s infinite ease-in-out;


}





@keyframes floating{


    0%,
    100%{

        transform:

        translateY(0);

    }


    50%{

        transform:

        translateY(-25px);

    }


}









/*==============================
PAGE HERO INNER PAGES
===============================*/


.page-hero{


    min-height:65vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:

    radial-gradient(

    circle,

    #101936,

    #050816

    );


}



.page-overlay{


    position:absolute;

    inset:0;

    background:

    linear-gradient(

    135deg,

    rgba(0,234,255,.1),

    rgba(155,92,255,.1)

    );


}





.page-hero-content{


    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

    margin:auto;

}





.page-subtitle{


    color:var(--primary);

    letter-spacing:4px;

    font-weight:600;

}





.page-hero-content h1{


    font-size:65px;

    margin:25px 0;


}





.page-hero-content h1 span{


    background:var(--gradient);

    background-clip:text;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color:transparent;


}





.page-hero-content p{


    color:var(--text);

    font-size:18px;

    line-height:1.8;

}








/*==============================
PARTICLE EFFECT
===============================*/


.hero-particles span{


    position:absolute;

    width:8px;

    height:8px;

    background:var(--primary);

    border-radius:50%;

    opacity:.7;

    animation:

    particleMove 8s infinite linear;


}




.hero-particles span:nth-child(1){

    left:10%;

    top:20%;

}



.hero-particles span:nth-child(2){

    left:70%;

    top:30%;

}



.hero-particles span:nth-child(3){

    left:40%;

    top:70%;

}



.hero-particles span:nth-child(4){

    left:85%;

    top:80%;

}






@keyframes particleMove{


    0%{

        transform:

        translateY(0)
        scale(1);

    }



    50%{

        transform:

        translateY(-80px)
        scale(1.5);

    }



    100%{

        transform:

        translateY(0)
        scale(1);

    }


}








/*==============================
GLOBAL ANIMATION CLASSES
===============================*/


.reveal{


    opacity:0;

    transform:

    translateY(50px);

    transition:

    1s;


}




.reveal-left{


    opacity:0;

    transform:

    translateX(-60px);

    transition:

    1s;

}





.reveal-right{


    opacity:0;

    transform:

    translateX(60px);

    transition:

    1s;

}




.active-reveal{


    opacity:1;

    transform:

    translate(0);

}








@keyframes slideUp{


    from{

        opacity:0;

        transform:

        translateY(50px);

    }


    to{

        opacity:1;

        transform:

        translateY(0);

    }

}






/*==============================
PART 2 END

NEXT:
STYLE.CSS PART 3

Cards
Services
Industry
Resources
About Sections

==============================*/
/*====================================================
STYLE.CSS PART 3

SERVICES
INDUSTRY
RESOURCES
ABOUT SECTIONS
CARDS DESIGN

====================================================*/





/*==============================
COMMON CARD DESIGN
===============================*/


.service-card,
.industry-card,
.industry-service-card,
.resource-card,
.value-card,
.choose-card,
.tech-card,
.team-card,
.mission-card{


    background:

    rgba(16,25,54,.8);


    border:

    1px solid rgba(255,255,255,.08);


    border-radius:25px;


    padding:35px;


    transition:.5s;


    position:relative;


    overflow:hidden;


}





.service-card::before,
.industry-card::before,
.resource-card::before,
.value-card::before,
.choose-card::before,
.tech-card::before{


    content:"";


    position:absolute;


    width:100%;


    height:100%;


    left:-100%;


    top:0;


    background:

    linear-gradient(

    120deg,

    transparent,

    rgba(0,234,255,.15),

    transparent

    );


    transition:.6s;


}





.service-card:hover::before,
.industry-card:hover::before,
.resource-card:hover::before,
.value-card:hover::before,
.choose-card:hover::before,
.tech-card:hover::before{


    left:100%;


}







.service-card:hover,
.industry-card:hover,
.industry-service-card:hover,
.resource-card:hover,
.value-card:hover,
.choose-card:hover,
.tech-card:hover,
.team-card:hover,
.mission-card:hover{


    transform:

    translateY(-15px);


    border-color:

    var(--primary);


    box-shadow:


    0 0 30px rgba(0,234,255,.25);


}








/*=========================
    SERVICES SECTION
=========================*/

.services-section{
    padding:100px 8%;
    background:#0b1228;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:50px;
    color:whitesmoke;
    margin-bottom:15px;
    text-align: center;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.service-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-decoration:none;
    color:#222;
    transition:.4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:2px solid transparent;
}

.service-card .icon{
    font-size:50px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:24px;
    margin-bottom:18px;
}

.service-card p{
    line-height:1.8;
    color:#666;
}

.service-card:hover{
    background:#0d6efd;
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(13,110,253,.35);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .icon{
    color:#fff;
}

.service-card:hover p{
    color:#f2f2f2;
}/*==============================
SERVICE DETAILS PAGE
===============================*/


/*==============================
        FEATURES SECTION
==============================*/

.features-section{

    padding:120px 8%;
    background:#060b17;
    position:relative;
}

.section-title{

    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-title span{

    color:#3ba6ff;
    font-size:15px;
    letter-spacing:2px;
    font-weight:600;
}

.section-title h2{

    color:#000000;
    font-size:48px;
    margin:20px 0;
    font-weight:700;
}

.section-title p{

    color:#b7c4d6;
    font-size:18px;
    line-height:1.8;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Laptop */
@media (max-width:1200px){

.features-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Tablet */
@media (max-width:768px){

.features-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.feature-card{
    padding:30px 25px;
}

}

/* Mobile */
@media (max-width:576px){

.features-section{
    padding:80px 20px;
}

.features-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:20px !important;
}

.feature-card{
    width:100%;
    padding:25px 20px;
    border-radius:18px;
}

.feature-card h3{
    font-size:24px;
    line-height:1.3;
}

.feature-card p{
    font-size:15px;
    line-height:1.7;
}

.icon{
    width:60px;
    height:60px;
    font-size:28px;
    margin-bottom:18px;
}

.card-btn{
    margin-top:20px;
    font-size:15px;
}

}

.feature-card{

    text-decoration:none;
    color:#fff;

    padding:40px 35px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:22px;

    transition:.45s;

    position:relative;

    overflow:hidden;
}

.feature-card::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    background:rgba(0,153,255,.18);

    border-radius:50%;

    top:-170px;
    right:-160px;

    transition:.5s;
}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:#00b7ff;

    box-shadow:0 20px 45px rgba(0,170,255,.35);
}

.feature-card:hover::before{

    transform:scale(1.4);
}

.icon{

    width:70px;
    height:70px;

    border-radius:18px;

    background:linear-gradient(135deg,#00b7ff,#006eff);

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    margin-bottom:25px;

    position:relative;
    z-index:2;
}

.feature-card h3{

    font-size:28px;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.feature-card p{

    color:#d6d6d6;
    line-height:1.8;
    font-size:16px;
    position:relative;
    z-index:2;
}

.card-btn{

    display:inline-block;

    margin-top:28px;

    color:#28b8ff;

    font-weight:600;

    transition:.3s;

    position:relative;
    z-index:2;
}

.feature-card:hover .card-btn{

    letter-spacing:1px;
}
/* ===============================
   Floating Registration Form
================================ */

.registration-form{
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 360px;
    background: rgba(10,20,40,.92);
    backdrop-filter: blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:30px;
    z-index:999;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.registration-form h2{
    color:#fff;
    text-align:center;
    margin-bottom:8px;
    font-size:28px;
}

.registration-form p{
    color:#b8c6db;
    text-align:center;
    margin-bottom:25px;
    font-size:14px;
}

.input-box{
    margin-bottom:18px;
}

.input-box input,
.input-box select{

    width:100%;
    padding:14px 18px;
    border:none;
    outline:none;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:15px;
    transition:.3s;

}

.input-box input::placeholder{
    color:#d8d8d8;
}

.input-box input:focus,
.input-box select:focus{

    border:1px solid #00d4ff;
    background:rgba(255,255,255,.12);

}

.input-box select option{
    color:#000;
}

.register-btn{

    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:linear-gradient(90deg,#00d4ff,#0066ff);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;

}

.register-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,212,255,.4);

}

#successBox{

position:fixed;

top:30px;

left:50%;

transform:translateX(-50%);

background:#00c853;

padding:18px 35px;

color:white;

font-size:18px;

font-weight:bold;

border-radius:10px;

display:none;

z-index:9999;

animation:fadeIn .4s;

}

@keyframes fadeIn{

from{

opacity:0;

transform:translate(-50%,-20px);

}

to{

opacity:1;

transform:translate(-50%,0);

}

}



/*==============================
INDUSTRY SECTION
===============================*/


/*=========================================
 Industries Section
=========================================*/

/*==============================
Industries Section
===============================*/

.industries-section{

padding:120px 8%;
background:#071320;
overflow:hidden;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title h2{

font-size:48px;
font-weight:700;
color:rgb(2, 223, 234);
margin-bottom:15px;

}

.section-title p{

max-width:700px;
margin:auto;
color:#b9c8db;
line-height:1.8;

}

/*==============================*/

.industries-slider{

display:flex;
gap:30px;
overflow-x:auto;
scroll-behavior:smooth;
cursor:grab;
padding-bottom:20px;

scrollbar-width:none;

}

.industries-slider::-webkit-scrollbar{

display:none;

}

/*==============================*/

.industry-card{

min-width:340px;
height:280px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.1);

backdrop-filter:blur(20px);

border-radius:22px;

padding:35px;

transition:.45s;

position:relative;

overflow:hidden;

flex-shrink:0;

}

.industry-card::before{

content:"";

position:absolute;

width:250px;
height:250px;

background:linear-gradient(#00d4ff,#0072ff);

border-radius:50%;

top:-120px;
right:-120px;

opacity:.15;

transition:.5s;

}

.industry-card:hover{

transform:translateY(-12px);

border-color:#00d4ff;

box-shadow:0 25px 45px rgba(0,212,255,.25);

}

.industry-card:hover::before{

transform:scale(1.3);

}

.industry-card span{

font-size:60px;
font-weight:800;
color:#00d4ff;

display:block;

margin-bottom:15px;

}

.industry-card h3{

color:#fff;

font-size:25px;

margin-bottom:18px;

}

.industry-card p{

color:#d7d7d7;

line-height:1.8;

font-size:16px;

}

/*==============================
TECHNOLOGY SECTION
===============================*/


.technology-grid{


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}





.tech-card{


    text-align:center;


    font-size:18px;


    font-weight:600;


    padding:30px;


    color:white;


}








/*==============================
PROCESS SECTION
===============================*/


.process-grid{


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:30px;


}




.process-card{


    padding:35px;


    background:

    var(--card);


    border-radius:25px;


    transition:.4s;


}





.process-card span{


    display:flex;


    width:55px;


    height:55px;


    align-items:center;


    justify-content:center;


    border-radius:50%;


    background:

    var(--gradient);


    font-weight:700;


    margin-bottom:20px;


}





.process-card:hover{


    transform:

    translateY(-12px);


}








/*==============================
ABOUT COMPANY OVERVIEW
===============================*/


/*==================================================
        PREMIUM ABOUT CSS - PART 1
        Layout • Background • Typography
==================================================*/

.about-company{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    radial-gradient(circle at top left,#1e3a8a22 0%,transparent 35%),
    radial-gradient(circle at bottom right,#00d4ff22 0%,transparent 40%),
    linear-gradient(
        180deg,
        #07111f 0%,
        #081624 45%,
        #050b15 100%
    );

    color:#ffffff;
}

/*==============================
        Animated Background
==============================*/

.about-company::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:#00d4ff;

    filter:blur(140px);

    opacity:.10;

    top:-220px;

    left:-160px;

}

.about-company::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:#2563eb;

    filter:blur(120px);

    opacity:.12;

    bottom:-180px;

    right:-120px;

}

/*==============================
        Container
==============================*/

.about-company .container{

    width:90%;

    max-width:1350px;

    margin:auto;

    position:relative;

    z-index:2;

}

/*==============================
        Two Column Layout
==============================*/

.about-wrapper{

    display:grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap:80px;

    align-items:center;

}

/*==============================
        Left Content
==============================*/

.about-content{

    animation:fadeUp 1s ease;

}

/* Section Tag */

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#00d4ff;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

    backdrop-filter:blur(10px);

}

.section-tag::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:#00d4ff;

    box-shadow:0 0 12px #00d4ff;

}

/*==============================
        Heading
==============================*/

.about-content h2{

    font-size:58px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:90px;

    letter-spacing:-1px;

}

.about-content h2 span{

    background:linear-gradient(
        90deg,
        #00d4ff,
        #3b82f6,
        #60a5fa
    );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==============================
        Paragraph
==============================*/

.about-text{

    font-size:18px;

    color:#d2dce9;

    line-height:1.9;

    margin-bottom:60px;

}

.about-content p{

    color:#9fb3c8;

    line-height:1.9;

    font-size:16px;

}

/*==============================
        Right Side
==============================*/

.about-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-image img{

    
    width:100%;
max-width:600px;
height:auto;
    border-radius:30px;

    object-fit:cover;

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);

    transition:.6s;

}

.about-image img:hover{

    transform:scale(1.03);

}

/*==============================
        Glass Border
==============================*/

.about-image::before{

    content:"";

    position:absolute;

    inset:-18px;

    border-radius:35px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.02);

    backdrop-filter:blur(10px);

    z-index:-1;

}

/*==============================
        Animation
==============================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================================
        PREMIUM ABOUT CSS - PART 2
        Features • CTA • Floating Cards
==================================================*/

/*==============================
        FEATURES GRID
==============================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:45px 0;
}

/* Feature Card */

.feature{

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.4s ease;

    cursor:pointer;
}

.feature:hover{

    transform:translateY(-8px);

    border-color:#00d4ff;

    box-shadow:
    0 18px 40px rgba(0,212,255,.18);
}

.feature i{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    color:#fff;

    font-size:18px;

    flex-shrink:0;

    transition:.4s;
}

.feature:hover i{

    transform:rotate(360deg);

    box-shadow:0 0 20px rgba(0,212,255,.6);
}

.feature span{

    color:#ffffff;

    font-size:16px;

    font-weight:600;
}

/*==============================
        CTA BUTTON
==============================*/

.about-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    margin-top:10px;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    font-size:16px;

    color:#fff;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}

.about-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.18);

    transition:.6s;
}

.about-btn:hover::before{

    left:100%;
}

.about-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(0,212,255,.35);
}

.about-btn i{

    transition:.4s;
}

.about-btn:hover i{

    transform:translateX(6px);
}

/*==============================
        FLOATING CARDS
==============================*/

.floating-card{

    position:absolute;

    min-width:170px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(16px);

    text-align:center;

    color:#fff;

    box-shadow:
    0 20px 45px rgba(0,0,0,.25);

    animation:floatCard 5s ease-in-out infinite;

    transition:.4s;
}

.floating-card:hover{

    transform:scale(1.06);

    border-color:#00d4ff;
}

.floating-card h3{

    font-size:34px;

    margin-bottom:6px;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #60a5fa
    );

    background-clip:text;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.floating-card p{

    color:#d0d9e7;

    font-size:14px;

    line-height:1.6;
}

/*==============================
        CARD POSITIONS
==============================*/

.card1{

    top:8%;

    left:-55px;
}

.card2{

    right:-45px;

    top:42%;

    animation-delay:1s;
}

.card3{

    bottom:6%;

    left:25px;

    animation-delay:2s;
}

/*==============================
        FLOAT ANIMATION
==============================*/

@keyframes floatCard{

    0%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-12px);
    }

    100%{

        transform:translateY(0);
    }
}
/*==================================================
        PREMIUM ABOUT CSS - PART 3
        Responsive + Final Polish
==================================================*/

/*==============================
        IMAGE EFFECTS
==============================*/

.about-image{
    perspective:1200px;
}

.about-image img{
    animation:floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*==============================
        IMAGE GLOW
==============================*/

.about-image::after{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:#00d4ff;

    filter:blur(120px);

    opacity:.18;

    z-index:-2;

}

/*==============================
        HOVER EFFECTS
==============================*/

.about-content h2 span{

    transition:.35s;
}

.about-content:hover h2 span{

    filter:drop-shadow(
        0 0 18px rgba(0,212,255,.6)
    );

}

.feature,
.floating-card,
.about-btn{

    will-change:transform;
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1200px){

.about-wrapper{

grid-template-columns:1fr;

gap:70px;

}

.about-content{

text-align:center;

}

.about-text,
.about-content p{

max-width:800px;

margin-left:auto;

margin-right:auto;

}

.about-features{

max-width:700px;

margin:45px auto;

}

.about-btn{

margin:auto;

}

.about-image{

max-width:650px;

margin:auto;

}

.card1{

left:0;

}

.card2{

right:0;

}

.card3{

left:40px;

}

}

/*==============================
        TABLET
==============================*/

@media(max-width:768px){

.about-company{

padding:90px 0;

}

.about-content h2{

font-size:42px;

}

.about-features{

grid-template-columns:1fr;

}

.about-btn{

width:100%;

justify-content:center;

}

.about-image img{


    width:100%;
max-width:600px;
height:auto;

}

.floating-card{

min-width:150px;

padding:16px;

}

.card1{

top:-20px;

left:10px;

}

.card2{

right:10px;

top:45%;

}

.card3{

bottom:-20px;

left:20px;

}

}

/*==============================
        MOBILE
==============================*/

@media(max-width:576px){

.about-company{

padding:70px 0;

}

.section-tag{

font-size:12px;

padding:8px 18px;

}

.about-content h2{

font-size:34px;

line-height:1.25;

}

.about-text{

font-size:16px;

}

.about-content p{

font-size:15px;

}

.feature{

padding:16px;

}

.feature span{

font-size:15px;

}

.feature i{

width:42px;

height:42px;

font-size:16px;

}

.about-btn{

padding:15px 28px;

font-size:15px;

}

.about-image{

margin-top:30px;

}

.floating-card{

position:relative;

left:auto;
right:auto;
top:auto;
bottom:auto;

margin:15px auto;

width:220px;

animation:none;

}

.about-image{

display:flex;

flex-direction:column;

align-items:center;

gap:18px;

}

}

/*==============================
        SCROLL ANIMATION READY
==============================*/

.reveal{

opacity:0;

transform:translateY(60px);

transition:1s ease;

}

.reveal.active{

opacity:1;

transform:translateY(0);

}

/*==============================
        PREMIUM BORDER
==============================*/

.about-company::before{

animation:glowMove 10s linear infinite;

}

@keyframes glowMove{

0%{

transform:translateX(0);

}

50%{

transform:translateX(60px);

}

100%{

transform:translateX(0);

}

}

/*==============================
        SELECTION COLOR
==============================*/

.about-company ::selection{

background:#00d4ff;

color:#08111f;

}

/*==============================
        SMOOTH TRANSITIONS
==============================*/

.about-company *{

transition:
background .35s,
color .35s,
transform .35s,
box-shadow .35s,
border-color .35s;

}
/*==============================
MISSION VISION
===============================*/


.mission-grid{


    display:grid;


    grid-template-columns:

    repeat(2,1fr);


    gap:35px;


}





.mission-card{


    text-align:center;


}





.mission-card i{


    font-size:50px;


    color:

    var(--primary);


    margin-bottom:20px;


}





.mission-card p{


    color:

    var(--text);


    line-height:1.8;


}








/*==============================
VALUES SECTION
===============================*/


.values-grid{


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}





.value-card{


    text-align:center;


}





.value-card i{


    font-size:45px;


    color:

    var(--primary);


    margin-bottom:20px;


}








/*==============================
TEAM SECTION
===============================*/


/*===============================
TESTIMONIAL SECTION
================================*/

.testimonial-section{

padding:120px 8%;
background:#071421;
position:relative;
overflow:hidden;

}

/* Background Glow */

.testimonial-section::before{

content:"";

position:absolute;

width:500px;
height:500px;

background:#00d4ff;

filter:blur(180px);

opacity:.12;

top:-180px;
right:-150px;

border-radius:50%;

}

.testimonial-heading{

text-align:center;
margin-bottom:70px;

}

.testimonial-heading span{

color:#00d4ff;

font-size:15px;

letter-spacing:3px;

font-weight:600;

}

.testimonial-heading h2{

font-size:48px;

margin-top:15px;

color:#000000;

}

.testimonial-heading p{

max-width:700px;

margin:20px auto 0;

color:#c7d0dc;

line-height:1.8;

}

/*==============================*/

.testimonial-wrapper{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:35px;

}

/*==============================*/

.testimonial-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.1);

backdrop-filter:blur(18px);

border-radius:22px;

padding:40px;

transition:.45s;

position:relative;

overflow:hidden;

}

.testimonial-card:hover{

transform:translateY(-12px);

border-color:#00d4ff;

box-shadow:0 20px 50px rgba(0,212,255,.25);

}

.testimonial-card::before{

content:"";

position:absolute;

width:250px;

height:250px;

background:#00d4ff;

opacity:.08;

border-radius:50%;

top:-100px;

right:-100px;

transition:.5s;

}

.testimonial-card:hover::before{

transform:scale(1.4);

}

/*==============================*/

.quote-icon{

font-size:70px;

color:#00d4ff;

margin-bottom:15px;

line-height:1;

}

.testimonial-text{

color:#d7d7d7;

line-height:1.9;

font-size:16px;

margin-bottom:30px;

}

.stars{

color:#FFD700;

font-size:20px;

margin-bottom:30px;

letter-spacing:4px;

}

/*==============================*/

.client{

display:flex;

align-items:center;

gap:18px;

}

.client img{


    width:75px;
height: 75px;;

border-radius:50%;

object-fit:cover;

border:3px solid #00d4ff;

}

.client h4{

color:#fff;

font-size:20px;

margin-bottom:5px;

}

.client span{

color:#00d4ff;

font-size:15px;

}

/*====================================================
STYLE.CSS PART 4

CONTACT PAGE
FAQ
CTA
NEWSLETTER
FOOTER

====================================================*/





/*==============================
CONTACT INTRO SECTION
===============================*/


.contact-info-grid{


    display:grid;


    grid-template-columns:

    repeat(4,1fr);


    gap:25px;


}





.contact-info-card{


    background:

    var(--card);


    padding:35px 25px;


    border-radius:25px;


    text-align:center;


    transition:.4s;


    border:

    1px solid rgba(255,255,255,.08);
margin-left: auto;

}





.contact-info-card:hover{


    transform:

    translateY(-12px);
margin-left: 25px 25px;

    border-color:

    var(--primary);


    box-shadow:

    0 0 25px rgba(0,234,255,.25);


}





.contact-info-card i{


    font-size:45px;


    color:

    var(--primary);


    margin-bottom:20px;


}





.contact-info-card h3{


    margin-bottom:15px;


    font-size:22px;


}





.contact-info-card p{


    color:

    var(--text);


}








/*==============================
CONTACT FORM SECTION
===============================*/


.contact-grid{
margin-top: 50px;



    display:grid;


    grid-template-columns:

    repeat(2,1fr);


    gap:100px;


    align-items:start;


}





.contact-form-box{


    background:

    rgba(16,25,54,.8);


    padding:40px;


    border: radius 50px;


    border:

    1px solid rgba(255,255,255,.08);


}







.contact-form{


    display:flex;


    flex-direction:column;


    gap:20px;

margin-top: 20px;
}





.input-group input,
.input-group textarea,
.input-group select{


    width:100%;


    padding:16px 20px;


    border-radius:15px;


    background:

    #080f25;


    border:

    1px solid rgba(255,255,255,.15);


    color:white;


    outline:none;


    transition:.4s;


}





.input-group textarea{


    resize:center;


}





.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus{


    border-color:

    var(--primary);


    box-shadow:

    0 0 15px rgba(0,234,255,.25);


}





.input-group select option{


    background:#050816;


}








/*==============================
MAP SECTION
===============================*/


.map-box iframe{

margin-top: 50px;
    width:100%;


    height:500px;


    border:0;
align-items: center;

    border-radius:30px;


    filter:

    grayscale(30%);


}


.section-title h2{
    font-size:36px;
    color:rgb(4, 255, 255);
    margin-top:10px;
    text-align: center;

}

.section-title h1{
    color:#fffefe;
    font-size:36px;
    text-align: center;
    margin-top: 10px;
}



/*==============================
FAQ SECTION
===============================*/


.section-title{


    display:center;



margin-top:60px;

    gap:30px;


}





.faq-card{


    background:

    var(--card);


    padding:20px;


    border-radius:10px;


    transition:.4s;


    border:

    1px solid rgba(255,255,255,.08);


}





.faq-card:hover{


    transform:

    translateY(-10px);


    border-color:

    var(--primary);


}





.faq-card h3{


    font-size:22px;


    margin-bottom:15px;


}





.faq-card p{


    color:

    var(--text);


    line-height:1.8;


}








/*==============================
CTA SECTION
===============================*/


.cta-section{


    padding:100px 0;


}





.cta-box{


    text-align:center;


    padding:70px 40px;


    border-radius:35px;


    background:


    linear-gradient(

    135deg,

    rgba(0,234,255,.12),

    rgba(155,92,255,.15)

    );


    border:

    1px solid rgba(0,234,255,.3);


}





.section-badge{


    color:

    var(--primary);


    font-size:14px;


    letter-spacing:3px;


    font-weight:600;


}





.cta-box h2{


    font-size:45px;


    margin:20px 0;


}





.cta-box p{


    max-width:750px;


    margin:auto;


    color:

    var(--text);


    line-height:1.8;


}








/*==============================
NEWSLETTER SECTION
===============================*/


.newsletter-section{


    background:

    #080f25;


}





.newsletter-box{


    text-align:center;


    max-width:800px;


    margin:auto;


}





.newsletter-box h2{


    font-size:40px;


    margin-bottom:20px;


}





.newsletter-box p{


    color:

    var(--text);


    margin-bottom:35px;


}





.newsletter-form{


    display:flex;


    justify-content:center;


    gap:15px;


}





.newsletter-form input{


    width:60%;


    padding:18px 25px;


    border-radius:40px;


    background:#050816;


    border:

    1px solid rgba(255,255,255,.2);


    color:white;


}








/*==============================
FOOTER
===============================*/


/*==================================================
        PREMIUM FOOTER CSS - PART 1
        S-Cube Solution Pvt. Ltd.
==================================================*/

.footer{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left,#1e3a8a 0%,transparent 35%),
        radial-gradient(circle at bottom right,#00d4ff22 0%,transparent 40%),
        linear-gradient(180deg,#07111f 0%,#091726 40%,#050b15 100%);
    color:#ffffff;
    padding:90px 0 0;
}

/* Background Glow */

.footer-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}

.footer-bg::before,
.footer-bg::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.18;
}

.footer-bg::before{
    width:420px;
    height:420px;
    background:#00d4ff;
    top:-150px;
    left:-120px;
}

.footer-bg::after{
    width:500px;
    height:500px;
    background:#2563eb;
    bottom:-180px;
    right:-150px;
}

/* Container */

.footer .container{
    position:relative;
    z-index:5;
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*===================================
        TOP GRID
===================================*/

.footer-top{
    display:grid;
    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;
    gap:60px;
    padding-bottom:70px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/*===================================
        BRAND
===================================*/

.footer-brand{
    display:flex;
    flex-direction:column;
}

.footer-logo{
    width:85px;
    margin-bottom:22px;
    transition:.5s;
}

.footer-logo:hover{
    transform:rotate(-8deg) scale(1.08);
}

.footer-brand h2{
    font-size:30px;
    margin-bottom:18px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.5px;
}

.footer-brand p{
    color:#b7c4d6;
    line-height:1.9;
    font-size:15px;
    max-width:420px;
}

/*===================================
        HEADINGS
===================================*/

.footer-links h3,
.footer-services h3,
.footer-contact h3{
    font-size:22px;
    margin-bottom:28px;
    position:relative;
    display:inline-block;
    font-weight:600;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:55px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        90deg,
        #00d4ff,
        #2563eb
    );
}

/*===================================
        LISTS
===================================*/

.footer-links ul,
.footer-services ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-services li{
    margin-bottom:18px;
}

.footer-links a,
.footer-services li{
    color:#b7c4d6;
    text-decoration:none;
    font-size:15px;
    transition:.35s;
    position:relative;
    display:inline-block;
}

/* Arrow Animation */

.footer-links a::before{
    content:"➜";
    color:#00d4ff;
    margin-right:10px;
    opacity:0;
    transition:.35s;
    transform:translateX(-10px);
    display:inline-block;
}

.footer-links a:hover::before{
    opacity:1;
    transform:translateX(0);
}

.footer-links a:hover{
    color:#00d4ff;
    transform:translateX(8px);
}

.footer-services li{
    padding-left:18px;
    position:relative;
}

.footer-services li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#00d4ff;
    box-shadow:0 0 10px #00d4ff;
}

.footer-services li:hover{
    color:#00d4ff;
    transform:translateX(6px);
}
/*==================================================
        PREMIUM FOOTER CSS - PART 2
        Contact + Social + Newsletter
==================================================*/

/*===================================
        CONTACT SECTION
===================================*/

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Contact Card */

.contact-box{
    display:flex;
    align-items:flex-start;
    gap:18px;

    padding:18px 20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border-radius:18px;

    transition:.4s ease;
}

.contact-box:hover{

    transform:translateY(-6px);

    border-color:#00d4ff;

    box-shadow:
    0 15px 40px rgba(0,212,255,.15);
}

/* Icon */

.contact-box i{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:20px;

    color:#fff;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    flex-shrink:0;

    transition:.4s;
}

.contact-box:hover i{

    transform:rotate(360deg) scale(1.08);

    box-shadow:
    0 0 25px rgba(0,212,255,.6);
}

/* Text */

.contact-box span{

    display:block;

    font-size:13px;

    color:#8fa6c5;

    margin-bottom:4px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.contact-box p{

    margin:0;

    color:#fff;

    font-size:15px;

    line-height:1.6;
}

/*===================================
        SOCIAL ICONS
===================================*/

.social-icons{

    display:flex;

    align-items:center;

    gap:14px;

    margin-top:35px;

    flex-wrap:wrap;
}

.social-icons a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.1);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

    transition:.4s;
}

.social-icons a:hover{

    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    transform:
    translateY(-8px)
    rotate(360deg);

    border-color:#00d4ff;

    box-shadow:
    0 10px 25px rgba(0,212,255,.45);
}

.social-icons i{

    font-size:18px;
}

/*===================================
        NEWSLETTER
===================================*/

.newsletter{

    margin:70px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:45px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    position:relative;

    overflow:hidden;
}

/* Animated Glow */

.newsletter::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:#00d4ff;

    filter:blur(110px);

    opacity:.15;

    right:-80px;

    top:-80px;
}

/* Left Content */

.newsletter h2{

    font-size:32px;

    margin-bottom:10px;

    color:#fff;
}

.newsletter p{

    color:#b8c8d9;

    line-height:1.8;

    max-width:480px;
}

/*===================================
        NEWSLETTER FORM
===================================*/

.newsletter form{

    display:flex;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;
}

.newsletter input{

    width:330px;

    max-width:100%;

    height:58px;

    border:none;

    outline:none;

    border-radius:50px;

    padding:0 25px;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:15px;

    border:1px solid rgba(255,255,255,.1);

    transition:.35s;
}

.newsletter input::placeholder{

    color:#9fb3c8;
}

.newsletter input:focus{

    border-color:#00d4ff;

    box-shadow:
    0 0 18px rgba(0,212,255,.3);
}

/* Subscribe Button */

.newsletter button{

    height:58px;

    padding:0 34px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    color:#fff;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    transition:.4s;
}

.newsletter button:hover{

    transform:translateY(-4px);

    box-shadow:
    0 12px 30px rgba(0,212,255,.45);
}

/*==================================================
        PREMIUM FOOTER CSS - PART 3
        Footer Bottom + Responsive
==================================================*/

/*==============================
      FOOTER BOTTOM
==============================*/

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    padding:30px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p{
    color:#9db0c5;
    font-size:15px;
    margin:0;
}

.footer-bottom div{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.footer-bottom a{
    text-decoration:none;
    color:#9db0c5;
    transition:.35s;
    position:relative;
    font-size:15px;
}

.footer-bottom a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#00d4ff;
    transition:.35s;
}

.footer-bottom a:hover{
    color:#00d4ff;
}

.footer-bottom a:hover::after{
    width:100%;
}

/*==============================
      BACK TO TOP
==============================*/

.back-to-top{

    position:fixed;

    right:35px;

    bottom:35px;

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    color:#fff;

    font-size:20px;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    box-shadow:
    0 15px 35px rgba(0,212,255,.35);

    transition:.4s;

    z-index:999;
}

.back-to-top:hover{

    transform:
    translateY(-8px)
    rotate(360deg)
    scale(1.08);

    box-shadow:
    0 20px 45px rgba(0,212,255,.55);
}

/*==============================
      SCROLLBAR
==============================*/

.footer ::-webkit-scrollbar{
    width:8px;
}

.footer ::-webkit-scrollbar-thumb{
    background:#00d4ff;
    border-radius:20px;
}

/*==============================
      FADE ANIMATION
==============================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.footer-brand,
.footer-links,
.footer-services,
.footer-contact,
.newsletter,
.footer-bottom{

    animation:fadeUp 1s ease both;
}

.footer-links{
    animation-delay:.2s;
}

.footer-services{
    animation-delay:.4s;
}

.footer-contact{
    animation-delay:.6s;
}

.newsletter{
    animation-delay:.8s;
}

/*==============================
      RESPONSIVE
==============================*/

@media (max-width:1200px){

.footer-top{

grid-template-columns:
repeat(2,1fr);

gap:50px;

}

.newsletter{

flex-direction:column;

align-items:flex-start;

}

.newsletter form{

width:100%;

}

.newsletter input{

flex:1;

width:100%;

}

}

/* Tablet */

@media (max-width:768px){

.footer{

padding-top:70px;

}

.footer-top{

grid-template-columns:1fr;

gap:45px;

text-align:center;

}

.footer-brand{

align-items:center;

}

.footer-brand p{

max-width:100%;

}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after{

left:50%;

transform:translateX(-50%);

}

.contact-box{

text-align:left;

}

.social-icons{

justify-content:center;

}

.newsletter{

padding:35px 25px;

text-align:center;

align-items:center;

}

.newsletter h2{

font-size:28px;

}

.newsletter p{

max-width:100%;

}

.newsletter form{

justify-content:center;

}

.newsletter input{

width:100%;

}

.newsletter button{

width:100%;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-bottom div{

justify-content:center;

}

.back-to-top{

right:20px;

bottom:20px;

width:52px;

height:52px;

}

}

/* Mobile */

@media (max-width:480px){

.footer{

padding-top:60px;

}

.footer-logo{

width:70px;

}

.footer-brand h2{

font-size:24px;

}

.footer-links h3,
.footer-services h3,
.footer-contact h3{

font-size:20px;

}

.contact-box{

padding:15px;

gap:15px;

}

.contact-box i{

width:48px;

height:48px;

font-size:18px;

}

.newsletter{

padding:30px 20px;

}

.newsletter h2{

font-size:24px;

}

.newsletter input,
.newsletter button{

height:52px;

font-size:14px;

}

.footer-bottom{

padding:25px 0;

}

.footer-bottom p{

font-size:14px;

}

.footer-bottom div{

gap:18px;

}

.social-icons a{

width:45px;

height:45px;

}

}

/*==============================
      HOVER GLOW EFFECTS
==============================*/

.footer-links a:hover,
.footer-services li:hover,
.footer-bottom a:hover{

text-shadow:
0 0 8px rgba(0,212,255,.7);

}

.footer-brand h2{

background:linear-gradient(
90deg,
#ffffff,
#00d4ff
);

background-clip:text;
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.footer::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:1px;

background:linear-gradient(
90deg,
transparent,
#00d4ff,
transparent
);

opacity:.7;
}
/*==============================
BACK TO TOP BUTTON
===============================*/


#topBtn{


    position:fixed;


    right:30px;


    bottom:30px;


    width:50px;


    height:50px;


    border-radius:50%;


    border:none;


    background:

    var(--gradient);


    color:white;


    font-size:20px;


    cursor:pointer;


    display:none;


    z-index:999;


    transition:.4s;


}





#topBtn:hover{


    transform:

    translateY(-8px);


    box-shadow:

    0 0 25px var(--primary);


}








/*==============================
PART 4 END

NEXT:
STYLE.CSS PART 5

Responsive Design
Mobile Menu
Tablet Layout
Mobile Animations

==============================*/
/*====================================================
STYLE.CSS PART 5

RESPONSIVE DESIGN
TABLET
MOBILE
NAVBAR RESPONSIVE

====================================================*/





/*==============================
TABLET DEVICES
768px - 1100px
===============================*/


@media(max-width:1100px){



.container{

    width:92%;

}




/* NAVBAR */


.nav-links{

    gap:20px;

}




.nav-links li a{

    font-size:14px;

}




/* HERO */


.hero-content{


    width:70%;


}




.hero-content h1{


    font-size:55px;


}





.hero-image img{


   
    width:100%;
max-width:600px;
height:auto;


}





/* SERVICES */


.services-grid{


    grid-template-columns:

    repeat(2,1fr);


}





/* INDUSTRY */


.industry-overview-grid{


    grid-template-columns:

    repeat(2,1fr);


}





.industry-grid{


    grid-template-columns:

    repeat(2,1fr);


}





/* TECHNOLOGY */


.technology-grid{


    grid-template-columns:

    repeat(3,1fr);


}





/* VALUES */


.values-grid{


    grid-template-columns:

    repeat(2,1fr);


}





/* TEAM */


.team-grid{


    grid-template-columns:

    repeat(2,1fr);


}





/* CONTACT */


.contact-info-grid{


    grid-template-columns:

    repeat(2,1fr);


}





.contact-grid{


    grid-template-columns:

    1fr;


}





/* FOOTER */


.footer-grid{


    grid-template-columns:

    repeat(2,1fr);


}




}









/*==============================
MOBILE DEVICES
Below 768px
===============================*/


@media(max-width:768px){





body{

    overflow-x:hidden;

}




section{

    padding:70px 0;

}




.section-title h2{


    font-size:32px;


}





/*==============================
MOBILE NAVBAR
===============================*/


.navbar{

    height:80px;

}




.logo span{


    font-size:18px;


}




.logo img{


    width:45px;


    height:45px;


}






.nav-links{


    position:fixed;


    top:80px;


    left:-100%;


    width:100%;


    height:calc(100vh - 80px);


    background:#050816;


    flex-direction:column;


    justify-content:center;


    gap:35px;


    transition:.5s;


}





.nav-links.active{


    left:0;


}




@media (max-width: 768px) {

    .menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-btn span {
        width: 30px;
        height: 3px;
        margin: 4px 0;
        background: #fff;
        transition: 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #111;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
        padding-top: 40px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }
}

/*==============================
HERO MOBILE
===============================*/


.hero{


    min-height:100vh;


}





.hero-content{


    width:100%;


    text-align:center;


}





.hero-content h1{


    font-size:42px;


}





.hero-content p{


    font-size:15px;


}





.hero-buttons{


    justify-content:center;


    flex-direction:column;


    align-items:center;


}





.btn-primary,
.btn-secondary{


    width:220px;


}





.hero-image{


    display:none;


}








/* PAGE HERO */


.page-hero{


    min-height:55vh;


}




.page-hero-content h1{


    font-size:42px;


}




.page-hero-content p{


    font-size:15px;


}





/*==============================
CARDS
===============================*/


.services-grid,


.industry-grid,


.industry-overview-grid,


.values-grid,


.team-grid,


.technology-grid,


.process-grid,


.mission-grid,


.faq-grid,


.contact-info-grid{


    grid-template-columns:

    1fr;


}





.service-card,


.industry-service-card,


.resource-card{


    padding:25px;


}





/*==============================
ABOUT PAGE
===============================*/

}

.about-grid{


    grid-template-columns:

    1fr;


    gap:30px;


}




.about-content h2{


    font-size:32px;


}





.image-box{


    width:250px;


    height:250px;


}





.image-box i{


    font-size:60px;


}





/*==============================
CONTACT FORM
===============================*/


.contact-form-box{


    padding:25px;


}





.map-box iframe{


    height:300px;


}







/*==============================
CTA
===============================*/


.cta-box{


    padding:45px 20px;


}




.cta-box h2{


    font-size:32px;


}







/*==============================
NEWSLETTER
===============================*/


.newsletter-form{


    flex-direction:column;


}





.newsletter-form input{


    width:100%;


}







/*==============================
FOOTER
===============================*/


.footer-grid{


    grid-template-columns:

    1fr;


    text-align:center;


}




.social-links{


    justify-content:center;


}





.footer-column ul{


    padding:0;


}






/* BACK BUTTON */


#topBtn{


    right:20px;


    bottom:20px;


}












/*==============================
SMALL MOBILE
Below 480px
===============================*/


@media(max-width:480px){



.hero-content h1{


    font-size:35px;


}



.page-hero-content h1{


    font-size:35px;


}



.section-title h2{


    font-size:28px;


}



.logo span{


    display:none;


}



.cta-box h2{

margin:25px 25px;
    font-size:28px;


}



.btn-primary,
.btn-secondary{


    width:200px;


}



}








/*==============================
PART 5 END

NEXT:
STYLE.CSS PART 6 FINAL

Extra Effects
Loader
Counters
Animations
Final Fixes

==============================*/
/*====================================================
STYLE.CSS PART 6 FINAL

EXTRA EFFECTS
ANIMATIONS
UTILITY CLASSES
FINAL FIXES

====================================================*/






/*==============================
FUTURISTIC GLOW EFFECT
===============================*/


.glow{


    box-shadow:


    0 0 10px var(--primary),


    0 0 30px rgba(0,234,255,.5),


    0 0 60px rgba(0,102,255,.3);


}








/*==============================
NEON BORDER ANIMATION
===============================*/


.neon-box{


    position:relative;


    overflow:hidden;


}





.neon-box::before{


    content:"";


    position:absolute;


    inset:-2px;


    background:


    linear-gradient(

    90deg,

    var(--primary),

    var(--purple),

    var(--secondary),

    var(--primary)

    );


    background-size:400%;


    animation:

    neonMove 6s linear infinite;


    z-index:-1;


}





@keyframes neonMove{


    0%{

        background-position:0%;

    }


    100%{

        background-position:400%;

    }


}








/*==============================
CARD LIGHT EFFECT
===============================*/


.card-light{


    position:relative;


}





.card-light:hover{


    box-shadow:


    0 0 40px rgba(0,234,255,.35);


}









/*==============================
LOADING SCREEN
===============================*/


.loader{


    position:fixed;


    inset:0;


    background:#050816;


    display:flex;


    align-items:center;


    justify-content:center;


    z-index:9999;


}





.loader-circle{


    width:80px;


    height:80px;


    border-radius:50%;


    border:

    5px solid transparent;


    border-top-color:

    var(--primary);


    animation:


    rotateLoader 1s linear infinite;


}





@keyframes rotateLoader{


    from{


        transform:

        rotate(0deg);


    }



    to{


        transform:

        rotate(360deg);


    }


}









/*==============================
COUNTING NUMBERS
===============================*/


.counter{


    font-size:55px;


    font-weight:800;


    background:

    var(--gradient);


    background-clip:text;

    -webkit-background-clip:text;


    -webkit-text-fill-color:transparent;


}









/*==============================
IMAGE HOVER EFFECT
===============================*/


.hover-image{


    overflow:hidden;


    border-radius:25px;


}




.hover-image img{


    transition:.6s;


}




.hover-image:hover img{


    transform:

    scale(1.1);


}









/*==============================
ROBOT FLOAT EFFECT
===============================*/


.robot-animation{


    animation:


    robotFloat 5s infinite ease-in-out;


}





@keyframes robotFloat{


    0%,100%{


        transform:

        translateY(0);


    }



    50%{


        transform:

        translateY(-30px);


    }


}









/*==============================
GRADIENT TEXT
===============================*/


.gradient-text{


    background:

    var(--gradient);


    background-clip:text;


    -webkit-background-clip:text;


    -webkit-text-fill-color:transparent;


}









/*==============================
SCROLL REVEAL SUPPORT
===============================*/


.reveal,
.reveal-left,
.reveal-right{


    will-change:transform,opacity;


}









/*==============================
CURSOR EFFECT
===============================*/


.cursor-glow{


    cursor:pointer;


}





.cursor-glow:hover{


    text-shadow:


    0 0 15px var(--primary);


}









/*==============================
TECH TAGS
===============================*/


.tech-tag{


    display:inline-block;


    padding:10px 20px;


    border-radius:30px;


    margin:5px;


    background:


    rgba(0,234,255,.1);


    border:

    1px solid var(--primary);


    color:

    var(--primary);


    transition:.4s;


}





.tech-tag:hover{


    background:

    var(--primary);


    color:#050816;


}








/*==============================
BACKGROUND GRID EFFECT
===============================*/


.grid-background{


    background-image:


    linear-gradient(

    rgba(0,234,255,.05) 1px,

    transparent 1px

    ),


    linear-gradient(

    90deg,

    rgba(0,234,255,.05) 1px,

    transparent 1px

    );


    background-size:

    50px 50px;


}








/*==============================
SMOOTH PAGE TRANSITION
===============================*/


body{


    animation:

    pageLoad .8s ease;


}





@keyframes pageLoad{


    from{


        opacity:0;


    }


    to{


        opacity:1;


    }


}








/*==============================
BUTTON CLICK EFFECT
===============================*/


button:active,
a:active{


    transform:

    scale(.95);


}









/*==============================
DISABLE ANIMATION
ACCESSIBILITY
===============================*/


@media(prefers-reduced-motion:reduce){


*{


    animation-duration:

    0.01ms!important;


    transition-duration:

    0.01ms!important;


}


}









/*==============================
FINAL RESPONSIVE FIX
===============================*/


@media(max-width:360px){



.hero-content h1{

margin:25px 25px;
    font-size:30px;


}




.section-title h2{

margin:25px 25px;
    font-size:25px;


}




.container{
margin:25px 25px;

    width:94%;


}



}

.logo img{
    width:100px;
    height:100px;
    object-fit:contain;
    display:block;

  
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo img{
    width:100px;
    height:200px;
    object-fit:contain;
}

.logo h3{
    color:#fffefe;
    font-size:100px;
    margin:0;
}

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    section{
        padding:60px 5%;
    }

    h1{
        font-size:38px;
    }

    h2{
        font-size:30px;
    }

    p{
        font-size:15px;
    }

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-content{
        width:100%;
    }

    .hero-image{
        width:100%;
        margin-top:30px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .services{
        grid-template-columns:1fr;
    }

    .footer{
        text-align:center;
    }

}





/* ===========================
   TABLET
=========================== */

@media (max-width:1024px){

    section{
        padding:70px 6%;
    }

    .navbar{
        gap:20px;
    }

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-content{
        width:100%;
    }

    .hero-image{
        width:80%;
        margin-top:40px;
    }

    .cards{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .services{
        grid-template-columns:repeat(2,1fr);
    }

}




/* ===========================
   SMALL PHONES
=========================== */

@media (max-width:480px){

    h1{
        font-size:30px;
    }

    h2{
        font-size:24px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    @media (max-width:576px){

.logo img{
    width:50px;
    height:50px;
}

.logo h3{
    font-size:18px;
}

}

    .logo h3{
        font-size:20px;
    }

}















@media(max-width:768px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-content{
    width:100%;
}

.hero-image{
    display:block;
    width:100%;
    margin-top:30px;
}

.hero-image img{
    width:85%;
    max-width:350px;
    margin:auto;
}

}









/* Mobile */
@media (max-width:768px){





.menu-btn{
    display:flex;
    flex-direction:column;
    cursor:pointer;
    z-index:1001;
}

.nav-links{
    position:fixed;
    top:70px;
    left:-100%;
    width:100%;
    height:calc(100vh - 70px);
    background:#111;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    gap:25px;
    padding-top:30px;
    transition:left .3s ease;
    z-index:1000;
}

.nav-links.active{
    left:0;
}














.features-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    padding:20px;
}

.feature-card{
    width:100%;
    max-width:350px;
    margin:auto;
    padding:30px 20px;
}

.feature-card h3{
    font-size:28px;
    line-height:1.3;
}

.feature-card p{
    font-size:16px;
    line-height:1.7;
}

.feature-icon{
    width:75px;
    height:75px;
    margin-bottom:20px;
}

}




@media (min-width:769px) and (max-width:1024px){

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

}




@media (min-width:1025px){

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

}





.feature-card{
    overflow:hidden;
    height:auto;
}

.feature-card h3{
    word-break:normal;
    overflow-wrap:break-word;
}

.feature-card p{
    overflow-wrap:break-word;
}








@media (max-width:576px){

.feature-card{
    padding:25px 18px;
}

.feature-card h3{
    font-size:24px;
}

.feature-card p{
    font-size:15px;
}

}






/*====================================================
STYLE.CSS COMPLETE

PART 1  -> RESET + NAVBAR
PART 2  -> HERO + ANIMATIONS
PART 3  -> SERVICES + ABOUT + INDUSTRY
PART 4  -> CONTACT + FOOTER
PART 5  -> RESPONSIVE DESIGN
PART 6  -> FINAL EFFECTS

S-CUBE SOLUTION PRIVATE LIMITED
====================================================*/











