/*==================================================
360Electronix
SOM Carrier Board Project CSS
Part 1 - Global | Header | Hero
==================================================*/

/*==================================================
GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
RESET
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;
    background:#06111d;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

img{

    max-width:100%;
    display:block;
}

a{

    text-decoration:none;
}

ul{

    list-style:none;
}


/*==================================================
ROOT VARIABLES
==================================================*/
:root{

    --primary:#00d9ff;
    --primary-dark:#00b9da;

    --secondary:#081624;

    --card:#102338;

    --text:#c7d4e2;

    --white:#ffffff;

    --border:rgba(255,255,255,.08);

    --shadow:0 25px 60px rgba(0,0,0,.35);

}


/*==================================================
CONTAINER
==================================================*/
.container{

    width:min(1400px,92%);
    margin:auto;
}


/*==================================================
SECTION
==================================================*/
section{

    padding:110px 0;
}


/*==================================================
SECTION HEADING
==================================================*/
.section-heading{

    text-align:center;
    margin-bottom:70px;
}

.section-heading span{

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;
}

.section-heading h2{

    margin-top:16px;

    font-size:48px;

    font-weight:800;

    line-height:1.2;
}

.section-heading p{

    max-width:760px;

    margin:20px auto 0;

    color:var(--text);

    font-size:18px;

    line-height:1.8;
}


/*==================================================
HEADER
==================================================*/
header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(6,17,29,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);
}


/*==================================================
NAVBAR
==================================================*/
.navbar{

    width:min(1400px,92%);

    margin:auto;

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}


/*==================================================
LOGO
==================================================*/
.logo{

    display:flex;

    align-items:center;
}

.logo img{

    width:170px;

    transition:.35s;
}

.logo img:hover{

    transform:scale(1.05);
}


/*==================================================
NAVIGATION
==================================================*/
.navbar ul{

    display:flex;

    align-items:center;

    gap:40px;
}

.navbar ul li{

    position:relative;
}

.navbar ul li a{

    color:#ffffff;

    font-size:16px;

    font-weight:500;

    transition:.35s;
}

.navbar ul li a:hover{

    color:var(--primary);
}


/*==================================================
ACTIVE LINE
==================================================*/
.navbar ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;
}

.navbar ul li:hover a::after{

    width:100%;
}


/*==================================================
HERO
==================================================*/
.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #06111d 0%,
        #0b1f34 100%
    );

    padding-top:130px;
}


/*==================================================
BACKGROUND GLOW
==================================================*/
.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-220px;

    top:-220px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,217,255,.18),
        transparent 70%
    );

    z-index:0;
}

.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    left:-160px;

    bottom:-180px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,217,255,.08),
        transparent 70%
    );
}


/*==================================================
HERO GRID
==================================================*/
.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

    position:relative;

    z-index:2;
}


/*==================================================
LEFT SIDE
==================================================*/
.hero-left{

    animation:fadeLeft 1s ease;
}


/*==================================================
CATEGORY BADGE
==================================================*/
.project-category{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:11px 24px;

    border-radius:50px;

    background:rgba(0,217,255,.12);

    border:1px solid rgba(0,217,255,.30);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    margin-bottom:30px;
}

.project-category i{

    font-size:16px;
}


/*==================================================
HERO TITLE
==================================================*/
.hero h1{

    font-size:68px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:25px;
}

.hero h1 span{

    display:block;

    color:var(--primary);
}


/*==================================================
HERO DESCRIPTION
==================================================*/
.hero p{

    max-width:620px;

    font-size:19px;

    color:var(--text);

    line-height:1.9;

    margin-bottom:40px;
}


/*==================================================
FEATURE LIST
==================================================*/
.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:45px;
}

.hero-features span{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    color:#d5e3ef;
}

.hero-features i{

    color:var(--primary);
}


/*==================================================
BUTTONS
==================================================*/
.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:17px 38px;

    background:var(--primary);

    color:#06111d;

    border-radius:12px;

    font-weight:700;

    transition:.35s;
}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,217,255,.35);
}

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:17px 38px;

    border-radius:12px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:700;

    transition:.35s;
}

.btn-secondary:hover{

    background:var(--primary);

    color:#06111d;
}


/*==================================================
RIGHT SIDE
==================================================*/
.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

    animation:fadeRight 1s ease;
}

.hero-right img{

    width:100%;

    max-width:620px;

    filter:drop-shadow(0 35px 70px rgba(0,217,255,.20));

    transition:.45s;
}

.hero-right img:hover{

    transform:translateY(-10px) scale(1.03);
}


/*==================================================
ANIMATIONS
==================================================*/
@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-60px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(60px);
    }

    to{

        opacity:1;

        transform:translateX(0);
    }
}
/*==================================================
PART 2
OVERVIEW + PROJECT STATISTICS
==================================================*/


/*==================================================
PROJECT OVERVIEW
==================================================*/

.overview{

    background:#081624;
}

.overview-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}


/*==================================================
REVERSE LAYOUT
==================================================*/

.overview-grid.reverse{

    direction:rtl;
}

.overview-grid.reverse > *{

    direction:ltr;
}


/*==================================================
OVERVIEW IMAGE
==================================================*/

.overview-image{

    position:relative;
}

.overview-image img{

    width:100%;

    border-radius:22px;

    background:#102338;

    padding:20px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

    transition:.45s;
}

.overview-image img:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 80px rgba(0,217,255,.18);
}


/*==================================================
CONTENT
==================================================*/

.overview-content{

    display:flex;

    flex-direction:column;

    gap:28px;
}


/*==================================================
INFO CARD
==================================================*/

.info-card{

    background:#102338;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:32px;

    transition:.35s;
}

.info-card:hover{

    transform:translateY(-8px);

    border-color:#00d9ff;

    box-shadow:0 20px 55px rgba(0,217,255,.16);
}


/*==================================================
INFO CARD ICON
==================================================*/

.info-card h3{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:24px;

    margin-bottom:18px;
}

.info-card h3 i{

    color:#00d9ff;

    font-size:22px;
}

.info-card p{

    color:#c7d4e2;

    font-size:17px;

    line-height:1.9;
}


/*==================================================
PROJECT STATISTICS
==================================================*/

.project-stats{

    background:#06111d;
}


/*==================================================
STATS GRID
==================================================*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}


/*==================================================
STAT CARD
==================================================*/

.stat-card{

    background:#102338;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;
}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#00d9ff;

    box-shadow:0 20px 60px rgba(0,217,255,.15);
}


/*==================================================
STAT NUMBER
==================================================*/

.stat-card h3{

    font-size:34px;

    font-weight:800;

    color:#00d9ff;

    margin-bottom:12px;
}


/*==================================================
STAT TEXT
==================================================*/

.stat-card p{

    color:#c7d4e2;

    font-size:17px;

    letter-spacing:.5px;
}


/*==================================================
OPTIONAL HOVER GLOW
==================================================*/

.stat-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        rgba(0,217,255,.06),
        transparent
    );

    opacity:0;

    transition:.35s;

    pointer-events:none;
}

.stat-card{

    position:relative;

    overflow:hidden;
}

.stat-card:hover::before{

    opacity:1;
}


/*==================================================
IMAGE FLOAT EFFECT
==================================================*/

.overview-image{

    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{

    0%{

        transform:translateY(0px);
    }

    50%{

        transform:translateY(-8px);
    }

    100%{

        transform:translateY(0px);
    }
}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .overview-grid{

        grid-template-columns:1fr;

        gap:60px;
    }

    .overview-grid.reverse{

        direction:ltr;
    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);
    }

}


@media(max-width:768px){

    .overview{

        padding:80px 0;
    }

    .overview-image img{

        padding:14px;
    }

    .info-card{

        padding:24px;
    }

    .info-card h3{

        font-size:21px;
    }

    .info-card p{

        font-size:16px;
    }

    .stats-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

    .stat-card{

        padding:30px 20px;
    }

    .stat-card h3{

        font-size:28px;
    }

}


@media(max-width:480px){

    .overview-grid{

        gap:40px;
    }

    .info-card{

        padding:20px;
    }

    .info-card h3{

        font-size:20px;
    }

    .stat-card h3{

        font-size:26px;
    }

    .stat-card p{

        font-size:15px;
    }

}
/*==================================================
PART 3
PROJECT GALLERY + LIGHTBOX
==================================================*/


/*==================================================
PROJECT GALLERY
==================================================*/

.gallery{

    background:#06111d;

    position:relative;

    overflow:hidden;

}


/*==================================================
BACKGROUND GLOW
==================================================*/

.gallery::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-180px;

    right:-180px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,217,255,.10),
    transparent 70%);

}

.gallery::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    bottom:-120px;

    left:-120px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,217,255,.06),
    transparent 70%);

}


/*==================================================
GALLERY GRID
==================================================*/

.gallery-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    grid-auto-rows:280px;

    gap:25px;

}


/*==================================================
LARGE CARD
==================================================*/

.gallery-card.large{

    grid-row:span 2;

}


/*==================================================
GALLERY CARD
==================================================*/

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    background:#102338;

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}


.gallery-card:hover{

    transform:translateY(-10px);

    border-color:#00d9ff;

    box-shadow:0 25px 60px rgba(0,217,255,.18);

}


/*==================================================
IMAGE
==================================================*/

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}


/*==================================================
OVERLAY
==================================================*/

.gallery-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:25px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.94)

    );

    transform:translateY(100%);

    transition:.35s;

}


.gallery-card:hover .gallery-overlay{

    transform:translateY(0);

}


/*==================================================
OVERLAY TITLE
==================================================*/

.gallery-overlay h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:8px;

}


/*==================================================
OVERLAY TEXT
==================================================*/

.gallery-overlay p{

    color:#c7d4e2;

    font-size:15px;

    line-height:1.6;

}


/*==================================================
ZOOM ICON
==================================================*/

.gallery-card::after{

    content:"\f00e";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    top:20px;

    right:20px;

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,217,255,.90);

    color:#06111d;

    font-size:18px;

    opacity:0;

    transform:scale(.6);

    transition:.35s;

}


.gallery-card:hover::after{

    opacity:1;

    transform:scale(1);

}


/*==================================================
LIGHTBOX
==================================================*/

.lightbox{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.95);

    backdrop-filter:blur(10px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}


.lightbox.show{

    opacity:1;

    visibility:visible;

}


/*==================================================
LIGHTBOX IMAGE
==================================================*/

.lightbox img{

    max-width:90%;

    max-height:88vh;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 35px 90px rgba(0,0,0,.45);

    animation:zoomImage .35s ease;

}


/*==================================================
LIGHTBOX CLOSE
==================================================*/

.close-lightbox{

    position:absolute;

    top:35px;

    right:45px;

    font-size:52px;

    color:#ffffff;

    cursor:pointer;

    transition:.3s;

}


.close-lightbox:hover{

    color:#00d9ff;

    transform:rotate(90deg);

}


/*==================================================
LIGHTBOX ANIMATION
==================================================*/

@keyframes zoomImage{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}


/*==================================================
IMAGE SHINE EFFECT
==================================================*/

.gallery-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.18),

        transparent

    );

    transform:skewX(-25deg);

    transition:.8s;

    z-index:2;

}


.gallery-card:hover::before{

    left:150%;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.gallery-grid{

    grid-template-columns:1fr 1fr;

    grid-auto-rows:250px;

}

.gallery-card.large{

    grid-column:1/3;

    grid-row:auto;

}

}


@media(max-width:768px){

.gallery{

    padding:90px 0;

}

.gallery-grid{

    grid-template-columns:1fr;

    grid-auto-rows:260px;

}

.gallery-card.large{

    grid-column:auto;

}

.gallery-overlay{

    transform:translateY(0);

}

.close-lightbox{

    right:20px;

    top:20px;

    font-size:40px;

}

.lightbox img{

    max-width:95%;

}

}


@media(max-width:480px){

.gallery-grid{

    gap:18px;

}

.gallery-card{

    border-radius:18px;

}

.gallery-overlay{

    padding:18px;

}

.gallery-overlay h3{

    font-size:18px;

}

.gallery-overlay p{

    font-size:14px;

}

.close-lightbox{

    font-size:34px;

}

}
/*==================================================
PART 4
TECHNICAL SPECIFICATIONS + TECHNOLOGY STACK
==================================================*/


/*==================================================
TECHNICAL SPECIFICATIONS
==================================================*/

.specifications{

    background:#081624;

    position:relative;

    overflow:hidden;

}

.specifications::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    right:-180px;

    top:-180px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,217,255,.08),
    transparent 70%);

}


/*==================================================
SPEC GRID
==================================================*/

.spec-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

}


/*==================================================
SPEC TABLE
==================================================*/

.spec-table{

    background:#102338;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}


/*==================================================
TABLE
==================================================*/

.spec-table table{

    width:100%;

    border-collapse:collapse;

}


/*==================================================
TABLE HEADER
==================================================*/

.spec-table th{

    background:#00d9ff;

    color:#06111d;

    text-align:left;

    padding:18px 22px;

    font-size:18px;

    font-weight:700;

}


/*==================================================
TABLE DATA
==================================================*/

.spec-table td{

    padding:18px 22px;

    color:#d6e3ee;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.spec-table tr:last-child td{

    border-bottom:none;

}

.spec-table tr:hover{

    background:#16314d;

}


/*==================================================
SPEC IMAGE
==================================================*/

.spec-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.spec-image img{

    width:100%;

    max-width:470px;

    background:#102338;

    border-radius:22px;

    padding:18px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

    transition:.4s;

}

.spec-image img:hover{

    transform:translateY(-10px) scale(1.02);

    box-shadow:0 35px 80px rgba(0,217,255,.18);

}


/*==================================================
TECHNOLOGY SECTION
==================================================*/

.technology{

    background:#06111d;

    position:relative;

    overflow:hidden;

}

.technology::after{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,217,255,.07),
    transparent 70%);

}


/*==================================================
TECH GRID
==================================================*/

.tech-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/*==================================================
TECH CARD
==================================================*/

.tech-card{

    background:#102338;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.tech-card:hover{

    transform:translateY(-10px);

    border-color:#00d9ff;

    box-shadow:0 20px 60px rgba(0,217,255,.15);

}


/*==================================================
TOP BORDER
==================================================*/

.tech-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#00d9ff;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.tech-card:hover::before{

    transform:scaleX(1);

}


/*==================================================
ICON
==================================================*/

.tech-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,217,255,.12);

    color:#00d9ff;

    font-size:36px;

    transition:.35s;

}

.tech-card:hover i{

    transform:rotateY(180deg);

    background:#00d9ff;

    color:#06111d;

}


/*==================================================
TITLE
==================================================*/

.tech-card h3{

    font-size:24px;

    margin-bottom:18px;

    font-weight:700;

}


/*==================================================
TEXT
==================================================*/

.tech-card p{

    color:#c7d4e2;

    line-height:1.9;

    font-size:16px;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.spec-grid{

    grid-template-columns:1fr;

}

.tech-grid{

    grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.specifications{

    padding:90px 0;

}

.tech-grid{

    grid-template-columns:1fr;

}

.spec-table{

    overflow-x:auto;

}

.spec-table table{

    min-width:650px;

}

.spec-image{

    margin-top:20px;

}

}


@media(max-width:480px){

.tech-card{

    padding:30px 22px;

}

.tech-card i{

    width:70px;

    height:70px;

    font-size:30px;

}

.tech-card h3{

    font-size:20px;

}

.spec-image img{

    padding:14px;

}

}
/*==================================================
PART 5
DEVELOPMENT PROCESS + APPLICATIONS
==================================================*/


/*==================================================
DEVELOPMENT PROCESS
==================================================*/

.development-process{

    background:#081624;

    position:relative;

    overflow:hidden;

}

.development-process::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-220px;

    right:-220px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,217,255,.08),
        transparent 70%
    );

}


/*==================================================
TIMELINE
==================================================*/

.timeline{

    position:relative;

    max-width:950px;

    margin:70px auto 0;

}


/* Vertical Line */

.timeline::before{

    content:"";

    position:absolute;

    left:24px;

    top:0;

    width:3px;

    height:100%;

    background:#00d9ff;

}


/*==================================================
TIMELINE ITEM
==================================================*/

.timeline-item{

    display:flex;

    gap:30px;

    margin-bottom:50px;

    position:relative;

}

.timeline-item:last-child{

    margin-bottom:0;

}


/*==================================================
STEP NUMBER
==================================================*/

.timeline-number{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#00d9ff;

    color:#06111d;

    font-weight:700;

    font-size:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    position:relative;

    z-index:2;

    box-shadow:0 10px 30px rgba(0,217,255,.35);

}


/*==================================================
CONTENT
==================================================*/

.timeline-content{

    flex:1;

    background:#102338;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-8px);

    border-color:#00d9ff;

    box-shadow:0 20px 60px rgba(0,217,255,.15);

}


.timeline-content h3{

    font-size:24px;

    margin-bottom:15px;

    font-weight:700;

}

.timeline-content p{

    color:#c7d4e2;

    line-height:1.9;

    font-size:16px;

}


/*==================================================
APPLICATIONS
==================================================*/

.applications{

    background:#06111d;

    position:relative;

    overflow:hidden;

}

.applications::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,217,255,.06),
        transparent 70%
    );

}


/*==================================================
APPLICATION GRID
==================================================*/

.application-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*==================================================
APPLICATION CARD
==================================================*/

.application-card{

    background:#102338;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.application-card:hover{

    transform:translateY(-10px);

    border-color:#00d9ff;

    box-shadow:0 25px 60px rgba(0,217,255,.15);

}


/*==================================================
TOP ACCENT
==================================================*/

.application-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#00d9ff;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.application-card:hover::before{

    transform:scaleX(1);

}


/*==================================================
ICON
==================================================*/

.application-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,217,255,.12);

    color:#00d9ff;

    font-size:34px;

    transition:.35s;

}

.application-card:hover i{

    background:#00d9ff;

    color:#06111d;

    transform:rotateY(180deg);

}


/*==================================================
TITLE
==================================================*/

.application-card h3{

    font-size:22px;

    margin-bottom:15px;

    font-weight:700;

}


/*==================================================
TEXT
==================================================*/

.application-card p{

    color:#c7d4e2;

    line-height:1.8;

    font-size:16px;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.application-grid{

    grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.timeline{

    margin-top:50px;

}

.timeline::before{

    left:20px;

}

.timeline-item{

    gap:20px;

}

.timeline-number{

    width:45px;

    height:45px;

    font-size:16px;

}

.timeline-content{

    padding:22px;

}

.timeline-content h3{

    font-size:21px;

}

.application-grid{

    grid-template-columns:1fr;

}

.application-card{

    padding:30px 22px;

}

}


@media(max-width:480px){

.timeline-content{

    padding:20px;

}

.timeline-content h3{

    font-size:20px;

}

.timeline-content p{

    font-size:15px;

}

.application-card i{

    width:70px;

    height:70px;

    font-size:30px;

}

.application-card h3{

    font-size:20px;

}

.application-card p{

    font-size:15px;

}

}
/*==================================================
PART 6
CTA + FOOTER + SCROLL ANIMATION + BACK TO TOP +
PAGE LOADER + RESPONSIVE
==================================================*/


/*==================================================
CALL TO ACTION
==================================================*/

.project-cta{

    background:linear-gradient(135deg,#00d9ff,#008cff);

    color:#06111d;

    position:relative;

    overflow:hidden;

}

.project-cta::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    top:-180px;

    right:-180px;

    background:rgba(255,255,255,.08);

}

.project-cta::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    left:-120px;

    bottom:-120px;

    background:rgba(255,255,255,.05);

}

.cta-box{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.cta-box span{

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.cta-box h2{

    font-size:52px;

    margin:20px 0;

    font-weight:800;

}

.cta-box p{

    max-width:720px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.project-cta .btn-primary{

    background:#06111d;

    color:#ffffff;

}

.project-cta .btn-primary:hover{

    background:#102338;

}

.project-cta .btn-secondary{

    border:2px solid #06111d;

    color:#06111d;

}

.project-cta .btn-secondary:hover{

    background:#06111d;

    color:#ffffff;

}



/*==================================================
FOOTER
==================================================*/

.project-footer{

    background:#050d18;

    padding:80px 0 35px;

    border-top:1px solid rgba(255,255,255,.06);

}

.copyright{

    text-align:center;

    color:#8ea3b8;

    font-size:15px;

    letter-spacing:.5px;

}



/*==================================================
SCROLL ANIMATION
==================================================*/

.hidden{

    opacity:0;

    transform:translateY(70px);

    transition:.8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}



/*==================================================
BACK TO TOP BUTTON
==================================================*/

#topButton{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    outline:none;

    border-radius:50%;

    background:#00d9ff;

    color:#06111d;

    font-size:22px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 40px rgba(0,217,255,.35);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#topButton.show{

    opacity:1;

    visibility:visible;

}

#topButton:hover{

    transform:translateY(-6px) scale(1.08);

}



/*==================================================
BODY LOADER
==================================================*/

body{

    opacity:0;

    transition:.5s;

}

body.loaded{

    opacity:1;

}



/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#081624;

}

::-webkit-scrollbar-thumb{

    background:#00d9ff;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#00b8db;

}



/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:#00d9ff;

    color:#06111d;

}



/*==================================================
FOCUS
==================================================*/

a:focus,
button:focus{

    outline:none;

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.cta-box h2{

    font-size:42px;

}

.cta-box p{

    font-size:17px;

}

}


@media(max-width:768px){

.project-cta{

    padding:90px 0;

}

.cta-box h2{

    font-size:34px;

}

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons a{

    width:100%;

    max-width:320px;

}

#topButton{

    width:52px;

    height:52px;

    right:18px;

    bottom:18px;

    font-size:18px;

}

.project-footer{

    padding:60px 0 25px;

}

}


@media(max-width:480px){

.cta-box h2{

    font-size:28px;

}

.cta-box p{

    font-size:16px;

}

.copyright{

    font-size:13px;

    line-height:1.8;

}

}