/*=====================================================
SOFTOGRID SOLUTIONS
STYLE.CSS

PART 1A
- RESET
- ROOT VARIABLES
- GLOBAL STYLES
- BACKGROUND
======================================================*/

/*=========================
GOOGLE FONTS
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/*=========================
RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#F8FAFC;
    color:#111827;
    overflow-x:hidden;
    line-height:1.6;
    position:relative;
}

/*=========================
ROOT COLORS
=========================*/

:root{

    --primary:#6C63FF;
    --secondary:#00C2A8;
    --accent:#FF8A00;

    --white:#ffffff;

    --bg:#F8FAFC;
    --bg2:#EEF6FF;

    --text:#111827;
    --text-light:#6B7280;

    --border:rgba(0,0,0,.06);

    --glass:rgba(255,255,255,.55);

    --shadow:
    0 20px 60px rgba(99,102,241,.08);

    --transition:.35s ease;

}

/*=========================
COMMON ELEMENTS
=========================*/

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:inherit;
}

input,
textarea{
    font-family:inherit;
}

/*=========================
CONTAINER
=========================*/

.container{

    width:100%;
    max-width:1280px;

    margin:auto;

    padding:0 30px;

}

/*=========================
SECTION SPACING
=========================*/

section{

    padding:100px 0;

    position:relative;

}

/*=========================
BACKGROUND
=========================*/

.gradient-bg{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-3;

}

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.55;

}

.blob1{

    width:380px;
    height:380px;

    background:#6C63FF;

    left:-100px;
    top:-80px;

}

.blob2{

    width:420px;
    height:420px;

    background:#00C2A8;

    right:-120px;
    top:120px;

}

.blob3{

    width:350px;
    height:350px;

    background:#FFD54F;

    bottom:-120px;
    left:40%;

}

/*=========================
GRID BACKGROUND
=========================*/

.grid-overlay{

    position:fixed;

    inset:0;

    z-index:-2;

    background-image:

    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);

    background-size:40px 40px;

    mask-image:radial-gradient(circle at center,
    black 45%,
    transparent 100%);

}

/*=========================
TEXT
=========================*/

h1,
h2,
h3,
h4{

    color:var(--text);

    font-weight:800;

}

p{

    color:var(--text-light);

}

/*=========================
SELECTION
=========================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF2F7;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
    var(--primary),
    var(--secondary));

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}


/*=====================================================
STYLE.CSS

PART 1B
HEADER
NAVBAR
LOGO
NAVIGATION
======================================================*/

/*=========================
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.881),
        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;

    

    text-decoration:none;

}



.brand img{

    width:120px;

    height:100px;

    object-fit:contain;

}



.brand-text h2{

    margin:0;

    font-size:36px;

    color:rgba(250, 185, 5, 0.821);

    font-weight:700;

    letter-spacing:.50px;

}



.brand-text span{

    color:#080808;

    font-size:20px;

    letter-spacing:3px;
font-style: italic;

    font-weight:600;
}



/*==========================
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;

}


/*=====================================================
STYLE.CSS

PART 2
HERO SECTION
======================================================*/


/*=========================
HERO SECTION
=========================*/

.hero{

    min-height:calc(100vh - 90px);

    display:flex;

    align-items:center;

    padding-top:60px;

    overflow:hidden;

}


.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}


/*=========================
HERO LEFT
=========================*/

.hero-left{

    position:relative;

    z-index:2;

}


/*=========================
BADGE
=========================*/


.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(15px);

    border-radius:50px;

    border:1px solid rgba(255,255,255,.7);

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    margin-bottom:28px;
     margin-top:43px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}


.hero-badge i{

    font-size:18px;

}



/*=========================
HERO HEADING
=========================*/


.hero-left h1{

    font-family:'Poppins',sans-serif;

    font-size:76px;

    line-height:1.08;

    letter-spacing:-2px;

    margin-bottom:25px;

    font-weight:800;

}


.hero-left h1 span{

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}



/*=========================
DESCRIPTION
=========================*/


.hero-left p{

    max-width:560px;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}



/*=========================
BUTTONS
=========================*/


.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:55px;

}


.primary-btn,
.secondary-btn{

    padding:16px 34px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}



/* Primary */

.primary-btn{

    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    color:#fff;

    box-shadow:
    0 20px 40px rgba(108,99,255,.25);

}


.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 50px rgba(108,99,255,.35);

}



/* Secondary */


.secondary-btn{

    background:#fff;

    color:var(--text);

    border:1px solid var(--border);

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}


.secondary-btn:hover{

    color:var(--primary);

    transform:translateY(-5px);

}



/*=========================
HERO STATS
=========================*/


.hero-stats{

    display:flex;

    align-items:center;

    gap:55px;

}


.hero-stats div{

    position:relative;

}


.hero-stats div:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-28px;

    top:10px;

    height:45px;

    width:1px;

    background:rgba(0,0,0,.12);

}


.hero-stats h2{

    font-size:38px;

    font-weight:800;

    line-height:1;

    margin-bottom:8px;

}


.hero-stats span{

    font-size:14px;

    color:var(--text-light);

    font-weight:600;

}



/*=========================
HERO RIGHT
=========================*/


.hero-right{

    position:relative;

    height:600px;

    display:flex;

    align-items:center;

    justify-content:center;

}



/*=========================
MAIN GLASS CARD
=========================*/


.main-card{

    width:390px;

    padding:35px;

    border-radius:30px;

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.7);

    box-shadow:

    0 40px 80px rgba(108,99,255,.15);

    position:relative;

    z-index:5;

}



.card-top{

    display:flex;

    gap:8px;

    margin-bottom:30px;

}


.circle{

    width:12px;

    height:12px;

    border-radius:50%;

}


.circle.purple{

    background:#6C63FF;

}


.circle.green{

    background:#00C2A8;

}


.circle.orange{

    background:#FF8A00;

}



.main-card h3{

    font-size:26px;

    margin-bottom:30px;

}



/*=========================
PROGRESS BOX
=========================*/


.progress-box{

    margin-bottom:25px;

}


.progress-box span{

    font-size:14px;

    font-weight:700;

    display:block;

    margin-bottom:10px;

}


.progress{

    height:10px;

    background:#E5E7EB;

    border-radius:50px;

    overflow:hidden;

}


.progress-fill{

    height:100%;

    border-radius:50px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary));

}


.progress-fill.one{

    width:90%;

}


.progress-fill.two{

    width:75%;

}


.progress-fill.three{

    width:85%;

}


/*=====================================================
STYLE.CSS

PART 3
FLOATING CARDS
HERO EFFECTS
TRUST SECTION
======================================================*/


/*=========================
FLOATING TECHNOLOGY CARDS
=========================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px 22px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-radius:20px;

    border:1px solid rgba(255,255,255,.7);

    font-size:15px;

    font-weight:700;

    color:var(--text);

    box-shadow:

    0 25px 50px rgba(0,0,0,.08);

    z-index:10;

}


.floating-card i{

    font-size:22px;

    color:var(--primary);

}


/* Cloud Card */

.card1{

    top:110px;

    left:40px;

    animation:floating 4s infinite ease-in-out;

}


/* Development Card */

.card2{

    bottom:130px;

    right:30px;

    animation:floating 5s infinite ease-in-out;

}


/* AI Card */

.card3{

    top:260px;

    right:-10px;

    animation:floating 3.5s infinite ease-in-out;

}



/*=========================
FLOATING ANIMATION
=========================*/

@keyframes floating{

    0%{

        transform:translateY(0px);

    }


    50%{

        transform:translateY(-20px);

    }


    100%{

        transform:translateY(0px);

    }

}



/*=========================
GLOW RINGS
=========================*/


.ring{

    position:absolute;

    border-radius:50%;

    border:1px solid rgba(108,99,255,.18);

}


.ring1{

    width:520px;

    height:520px;

    animation:rotateRing 18s linear infinite;

}


.ring2{

    width:400px;

    height:400px;

    animation:rotateRing 12s linear infinite reverse;

}



@keyframes rotateRing{


    from{

        transform:rotate(0deg);

    }


    to{

        transform:rotate(360deg);

    }

}



/*=========================
TRUST SECTION
=========================*/


.trust{

    padding:50px 0;

    position:relative;

}


.trust p{

    text-align:center;

    font-size:15px;

    font-weight:600;

    margin-bottom:35px;

    color:var(--text-light);

}



.trust-items{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}



.trust-items span{

    padding:15px 25px;

    border-radius:50px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.8);

    font-size:14px;

    font-weight:700;

    color:var(--text);

    box-shadow:

    0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}



.trust-items span:hover{

    transform:translateY(-5px);

    color:var(--primary);

}



/*=========================
GLASS CARD HOVER
=========================*/


.main-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 50px 100px rgba(108,99,255,.2);

}


.main-card{

    transition:.45s ease;

}



/*=========================
HERO DECORATION
=========================*/


.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:

    radial-gradient(
    circle,
    rgba(108,99,255,.12),
    transparent 70%);

    right:-150px;

    top:50%;

    transform:translateY(-50%);

    z-index:-1;

}



/*=========================
BUTTON SHINE EFFECT
=========================*/


.primary-btn{

    position:relative;

    overflow:hidden;

}


.primary-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:

    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.4),
    transparent);

    transition:.6s;

}


.primary-btn:hover::before{

    left:100%;

}


/*=========================
SMOOTH CARD MOVEMENT
=========================*/


.hero-right{

    animation:

    heroFloat 6s ease-in-out infinite;

}



@keyframes heroFloat{


    0%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-15px);

    }


    100%{

        transform:translateY(0);

    }

}


/*=====================================================
STYLE.CSS

PART 4
FINAL POLISH
UTILITY CLASSES
SCROLL EFFECT SUPPORT
EXTRA ELEMENTS
======================================================*/


/*=========================
GLOBAL GLASS STYLE
=========================*/

.glass{

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.7);

    box-shadow:

    0 20px 50px rgba(0,0,0,.06);

}


/*=========================
SECTION TITLE SUPPORT
=========================*/


.section-title{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}


.section-title h2{

    font-size:48px;

    line-height:1.2;

    margin-bottom:20px;

    letter-spacing:-1px;

}


.section-title h2 span{

    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}


.section-title p{

    font-size:18px;

    line-height:1.8;

}



/*=========================
SCROLL REVEAL
=========================*/


.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:

    all .8s ease;

}


.reveal.active{

    opacity:1;

    transform:translateY(0);

}



/*=========================
PAGE LOADING EFFECT
=========================*/


body.loading{

    overflow:hidden;

}


.loader{

    position:fixed;

    inset:0;

    background:#F8FAFC;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:9999;

}



.loader-circle{

    width:60px;

    height:60px;

    border-radius:50%;

    border:5px solid rgba(108,99,255,.15);

    border-top-color:var(--primary);

    animation:spin 1s linear infinite;

}



@keyframes spin{

    from{

        transform:rotate(0);

    }

    to{

        transform:rotate(360deg);

    }

}



/*=========================
BADGE STYLE
=========================*/


.tag{

    display:inline-flex;

    align-items:center;

    padding:8px 18px;

    border-radius:50px;

    background:

    rgba(108,99,255,.08);

    color:var(--primary);

    font-size:13px;

    font-weight:700;

}



/*=========================
CURSOR GLOW
=========================*/


.cursor-glow{

    position:fixed;

    width:250px;

    height:250px;

    background:

    radial-gradient(
    circle,
    rgba(108,99,255,.15),
    transparent 70%);

    border-radius:50%;

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:-1;

}



/*=========================
HOVER LIFT EFFECT
=========================*/


.hover-up{

    transition:.35s ease;

}


.hover-up:hover{

    transform:translateY(-10px);

}



/*=========================
TEXT GRADIENT
=========================*/


.gradient-text{

    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}



/*=========================
DIVIDER
=========================*/


.divider{

    width:100%;

    height:1px;

    background:

    rgba(0,0,0,.06);

    margin:50px 0;

}



/*=========================
HIDDEN CLASS
=========================*/


.hide{

    display:none;

}


/*=========================
DISPLAY HELPERS
=========================*/


.flex{

    display:flex;

}


.center{

    align-items:center;

    justify-content:center;

}


/*=========================
NO SELECT
=========================*/


.no-select{

    user-select:none;

}






/*=====================================================
SOFTOGRID SOLUTIONS

STYLE.CSS PART 5

PHASE 2
ABOUT SECTION
MISSION
VISION
VALUES

======================================================*/


/*=========================
ABOUT SECTION
=========================*/

.about-section{

    padding-top:120px;

}



.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}



/*=========================
SECTION TAG
=========================*/


.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(108,99,255,.08);

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}


.section-tag i{

    font-size:18px;

}



/*=========================
ABOUT CONTENT
=========================*/


.about-content h2{

    font-size:52px;

    line-height:1.2;

    letter-spacing:-1px;

    margin-bottom:25px;

}



.about-content h2 span{

    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}



.about-content p{

    font-size:17px;

    line-height:1.8;

    margin-bottom:18px;

}



/*=========================
ABOUT POINTS
=========================*/


.about-points{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin:35px 0;

}



.about-points div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:var(--text);

}



.about-points i{

    color:var(--secondary);

    font-size:20px;

}



/*=========================
ABOUT VISUAL
=========================*/


.about-visual{

    height:520px;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}



.main-about{

    width:360px;

    padding:45px 35px;

    text-align:center;

    background:

    rgba(255,255,255,.6);

    backdrop-filter:blur(25px);

    border-radius:35px;

    border:1px solid rgba(255,255,255,.8);

    box-shadow:

    0 40px 80px rgba(108,99,255,.15);

    position:relative;

    z-index:5;

    transition:.4s;

}



.main-about:hover{

    transform:translateY(-10px);

}



.icon-box{

    width:80px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:25px;

    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    color:#fff;

    font-size:35px;

    margin-bottom:25px;

}



.main-about h3{

    font-size:26px;

    margin-bottom:15px;

}



.main-about p{

    font-size:15px;

}



/*=========================
ABOUT FLOATING CARDS
=========================*/


.about-floating{

    position:absolute;

    padding:15px 25px;

    border-radius:20px;

    background:

    rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.8);

    font-weight:700;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:

    0 25px 50px rgba(0,0,0,.08);

    z-index:10;

}



.about-floating i{

    font-size:22px;

    color:var(--primary);

}



.card-about-one{

    top:80px;

    left:20px;

}



.card-about-two{

    bottom:80px;

    right:10px;

}



/*=========================
ABOUT CIRCLE
=========================*/


.about-circle{

    position:absolute;

    width:480px;

    height:480px;

    border-radius:50%;

    border:1px dashed rgba(108,99,255,.3);

    animation:rotateCircle 20s linear infinite;

}



@keyframes rotateCircle{


    from{

        transform:rotate(0deg);

    }


    to{

        transform:rotate(360deg);

    }

}




/*=====================================================
MISSION SECTION
======================================================*/


.mission-section{

    padding-top:100px;

}



.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}



.mission-card{

    padding:45px;

    border-radius:30px;

    background:

    rgba(255,255,255,.65);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:

    0 25px 60px rgba(0,0,0,.06);

    transition:.4s;

}



.mission-card:hover{

    transform:translateY(-12px);

}



.mission-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:

    rgba(108,99,255,.1);

    color:var(--primary);

    font-size:30px;

    margin-bottom:25px;

}



.mission-card h3{

    font-size:28px;

    margin-bottom:15px;

}



.mission-card p{

    line-height:1.8;

}



/*=====================================================
VALUES SECTION
======================================================*/


.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.value-card{

    padding:35px 25px;

    text-align:center;

    border-radius:25px;

    background:

    rgba(255,255,255,.65);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.8);

    transition:.4s;

}



.value-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 30px 60px rgba(108,99,255,.12);

}



.value-card i{

    font-size:35px;

    color:var(--primary);

    margin-bottom:20px;

}



.value-card h3{

    font-size:22px;

    margin-bottom:12px;

}



.value-card p{

    font-size:14px;

    line-height:1.7;

}


















/*=====================================================
SOFTOGRID SOLUTIONS

STYLE.CSS PART 6

PHASE 3
SERVICES SECTION

======================================================*/


/*=========================
SERVICES SECTION
=========================*/


.services-section{

    padding-top:120px;

    position:relative;

}



/*=========================
SERVICES GRID
=========================*/


.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



/*=========================
SERVICE CARD
=========================*/


.service-card{

    position:relative;

    padding:40px 35px;

    min-height:380px;


    background:

    rgba(255,255,255,.65);


    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);


    border-radius:30px;


    border:1px solid rgba(255,255,255,.8);


    box-shadow:

    0 25px 60px rgba(0,0,0,.06);


    overflow:hidden;


    transition:.45s ease;


}



/* Gradient glow inside card */

.service-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;


    background:

    radial-gradient(
    circle,
    rgba(108,99,255,.18),
    transparent 70%
    );


    top:-80px;

    right:-80px;


    transition:.45s;

}



.service-card:hover::before{

    transform:scale(1.6);

}



/* Card hover */

.service-card:hover{


    transform:

    translateY(-15px);


    box-shadow:

    0 40px 80px rgba(108,99,255,.15);


}



/*=========================
SERVICE NUMBER
=========================*/


.service-number{

    position:absolute;

    top:25px;

    right:30px;


    font-size:55px;

    font-weight:800;


    color:

    rgba(108,99,255,.08);


    line-height:1;

}



/*=========================
SERVICE ICON
=========================*/


.service-icon{


    width:75px;

    height:75px;


    display:flex;

    align-items:center;

    justify-content:center;


    border-radius:25px;


    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );


    color:#fff;


    font-size:32px;


    margin-bottom:30px;


    box-shadow:

    0 20px 40px rgba(108,99,255,.25);


    transition:.4s;


}



.service-card:hover .service-icon{


    transform:

    rotateY(180deg);


}




/*=========================
SERVICE TITLE
=========================*/


.service-card h3{


    font-size:25px;


    margin-bottom:15px;


    position:relative;


}



/*=========================
SERVICE DESCRIPTION
=========================*/


.service-card p{


    font-size:15px;


    line-height:1.8;


    margin-bottom:25px;


    position:relative;


}



/*=========================
SERVICE LINK
=========================*/


.service-card a{


    display:inline-flex;


    align-items:center;


    gap:8px;


    color:var(--primary);


    font-size:14px;


    font-weight:700;


    position:relative;


    transition:.35s;


}



.service-card a i{


    transition:.35s;


}



.service-card a:hover i{


    transform:

    translateX(6px);


}



/*=========================
SERVICE CARD BORDER EFFECT
=========================*/


.service-card:hover{


    border-color:

    rgba(108,99,255,.35);


}



/*=========================
SERVICE SECTION BACKGROUND
=========================*/


.services-section::after{


    content:"";


    position:absolute;


    width:450px;


    height:450px;


    border-radius:50%;


    background:

    radial-gradient(
    circle,
    rgba(0,194,168,.12),
    transparent 70%
    );


    left:-200px;


    top:30%;


    z-index:-1;


}










/*=========================
INDUSTRY SECTION
=========================*/


.industry-section{

    padding:120px 0;

}



.industry-grid{


    display:grid;


    grid-template-columns:repeat(4,1fr);


    gap:25px;


}



.industry-card{


    padding:35px 25px;


    text-align:center;


    border-radius:25px;


    background:

    rgba(255,255,255,.7);


    backdrop-filter:blur(20px);


    border:1px solid rgba(255,255,255,.8);


    box-shadow:

    0 20px 50px rgba(0,0,0,.06);


    transition:.4s;


}



.industry-card:hover{


    transform:

    translateY(-12px);


    box-shadow:

    0 35px 70px rgba(108,99,255,.18);


}



.industry-card i{


    width:75px;


    height:75px;


    margin:auto;


    margin-bottom:20px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:25px;


    font-size:32px;


    color:white;


    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );


}



.industry-card h3{


    font-size:21px;


    margin-bottom:12px;


}



.industry-card p{


    font-size:14px;


    line-height:1.7;


}





/*=========================
PORTFOLIO SECTION
=========================*/


.portfolio-section{

    padding:120px 0;

}



.portfolio-grid{


    display:grid;


    grid-template-columns:repeat(3,1fr);


    gap:30px;


}




.project-card{


    background:white;


    border-radius:30px;


    overflow:hidden;


    box-shadow:

    0 25px 60px rgba(0,0,0,.08);


    transition:.4s;


}



.project-card:hover{


    transform:

    translateY(-15px);


}



.project-image{


    height:230px;


    overflow:hidden;


}



.project-image img{


    width:100%;


    height:100%;


    object-fit:cover;


    transition:.5s;


}



.project-card:hover img{


    transform:scale(1.1);


}




.project-content{


    padding:30px;


}



.project-content span{


    color:var(--primary);


    font-size:13px;


    font-weight:700;


}



.project-content h3{


    font-size:24px;


    margin:15px 0;


}



.project-content p{


    line-height:1.7;


    font-size:15px;


}



.tech-tags{


    display:flex;


    gap:10px;


    flex-wrap:wrap;


    margin-top:20px;


}



.tech-tags b{


    padding:8px 15px;


    border-radius:50px;


    background:

    rgba(108,99,255,.1);


    color:var(--primary);


    font-size:12px;


}







/*==================================
            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;
}

}










/*=========================
END OF STYLE.CSS
=========================*/