*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #050816;
    color: #fff;
}

/* ================= HEADER ================= */

.header{
    min-height: 100vh;
    width: 100%;

    background-image:
    linear-gradient(rgba(4,9,30,0.75), rgba(4,9,30,0.75)),
    url(img/combac.png);

    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* ================= NAVBAR ================= */

nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 6%;

    position: absolute;
    top: 0;
    left: 0;

    z-index: 1000;
}

/* ================= LOGO ================= */

nav img{
    width: 180px;
    display: block;
}

/* ================= NAV LINKS ================= */

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}

.nav-links ul li{
    list-style: none;
    position: relative;
}

.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER */

.nav-links ul li a:hover{
    color: #00bfff;
}

/* UNDERLINE */

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #00bfff;
    display: block;
    margin: auto;
    transition: 0.4s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

/* ================= HERO SECTION ================= */

.text-box{
    width: 90%;
    color: #fff;

    position: absolute;
    top: 55%;
    left: 50%;

    transform: translate(-50%, -50%);
    text-align: center;
}

/* TITLE */

.text-box h1{
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
}

/* GLOW TEXT */

.glow{
    display: block;
    color: #00bfff;

    text-shadow:
    0 0 5px #00bfff,
    0 0 10px #00bfff,
    0 0 20px #0077ff,
    0 0 40px #0077ff;

    animation:
    float 3s ease-in-out infinite,
    neonGlow 2s ease-in-out infinite alternate;
}

/* FLOAT ANIMATION */

@keyframes float{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0);
    }
}

/* GLOW ANIMATION */

@keyframes neonGlow{

    from{
        text-shadow:
        0 0 5px #00bfff,
        0 0 10px #00bfff,
        0 0 20px #0077ff,
        0 0 40px #0077ff;
    }

    to{
        text-shadow:
        0 0 10px #00bfff,
        0 0 20px #00bfff,
        0 0 40px #0077ff,
        0 0 80px #00111f;
    }
}

/* PARAGRAPH */

.text-box p{
    font-size: 18px;
    color: #dcdcdc;
    margin-top: 25px;
    margin-bottom: 35px;
    line-height: 1.8;
}

/* BUTTON */

.hero-btn{
    display: inline-block;
    text-decoration: none;

    color: #fff;
    border: 1px solid #00bfff;

    padding: 14px 34px;
    font-size: 16px;

    border-radius: 8px;
    transition: 0.4s;
}

/* BUTTON HOVER */

.hero-btn:hover{
    background: #00bfff;

    box-shadow:
    0 0 10px #00bfff,
    0 0 20px #0077ff,
    0 0 40px #0077ff;
}

/* ================= ICON FIX ================= */

/* HIDE MENU ICONS ON DESKTOP */

.fa-bars,
.fa-xmark{
    display: none !important;
}

/* ================= MOBILE ================= */

@media screen and (max-width:700px){

    /* LOGO */

    nav img{
        width: 140px;
    }

    /* HERO TEXT */

    .text-box h1{
        font-size: 30px;
    }

    .text-box p{
        font-size: 14px;
        line-height: 1.6;
    }

    /* MOBILE MENU */

    .nav-links{
        position: fixed;

        background: #00111f;

        height: 100vh;
        width: 220px;

        top: 0;
        right: -220px;

        text-align: left;

        z-index: 2000;

        transition: 0.5s;
    }

    .nav-links ul{
        display: block;
        padding: 60px 30px;
    }

    .nav-links ul li{
        display: block;
        margin: 25px 0;
    }

    /* SHOW ONLY MOBILE ICONS */

    .fa-bars,
    .fa-xmark{
        display: block !important;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    /* MENU ICON */

    nav .fa-bars{
        margin-left: 20px;
    }

    /* CLOSE ICON */

    .nav-links .fa-xmark{
        position: absolute;
        top: 25px;
        left: 25px;
    }
}
/* OUR WORK */
.our-work{
    width: 100%;
    padding: 100px 10%;
    background: #04091e;
    text-align: center;
}

/* TITLE */

.our-work h1{
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

/* SUB TEXT */

.our-work p{
    color: #cfcfcf;
    font-size: 15px;
    line-height: 24px;
}

/* =========================
   WORK GRID
========================= */

.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 35px;
    margin-top: 60px;
}

/* =========================
   WORK CARDS
========================= */

.work-list div{

    background: linear-gradient(
        145deg,
        #050b24,
        #0a1635,
        #030814
    );

    border: 1px solid rgba(0,191,255,0.15);

    padding: 40px 30px;

    border-radius: 18px;

    transition: 0.4s ease;

    animation: float 3s ease-in-out infinite;

    cursor: pointer;
}

/* =========================
   ICONS
========================= */

.work-list div svg{
    font-size: 55px;
    color: #00bfff;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

/* =========================
   HEADINGS
========================= */

.work-list div h2{
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

/* =========================
   PARAGRAPH
========================= */

.work-list div p{
    color: #cfcfcf;
    font-size: 14px;
    line-height: 24px;
}

/* =========================
   LINKS
========================= */

.work-list div a{
    display: inline-block;
    margin-top: 20px;

    color: #00bfff;

    text-decoration: none;

    font-size: 13px;

    transition: 0.4s ease;
}

/* =========================
   NEON HOVER EFFECT
========================= */

.work-list div:hover{

    transform: translateY(-10px);

    background: linear-gradient(
        145deg,
        #08122e,
        #10214d,
        #04091e
    );

    border: 1px solid #00bfff;

    box-shadow:
    0 0 5px rgba(0,191,255,0.5),
    0 0 15px rgba(0,191,255,0.35),
    0 0 25px rgba(0,191,255,0.2);
}

/* ICON HOVER */

.work-list div:hover svg{

    color: #fff;

    transform: scale(1.15);

    filter:
    drop-shadow(0 0 8px #00bfff);
}

/* TITLE HOVER */

.work-list div:hover h2{

    text-shadow:
    0 0 5px rgba(0,191,255,0.8);
}

/* LINK HOVER */

.work-list div:hover a{

    color: #fff;

    text-shadow:
    0 0 5px rgba(0,191,255,0.8);
}

/* =========================
   FLOAT ANIMATION
========================= */

@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-5px);
    }

    100%{
        transform: translateY(0px);
    }
}
@media(max-width: 700px){
    .work-list{
        flex-direction: column;
    }
}
/* ================= CTA SECTION ================= */

.cta{
    width: 90%;
    margin: 100px auto;
    text-align: center;

    background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url(img/combac.png);

    background-position: center;
    background-size: cover;

    border-radius: 20px;

    padding: 100px 40px;

    box-shadow:
    0 0 20px rgba(0,191,255,0.15);
}

/* CTA TITLE */

.cta h1{
    color: #fff;
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 40px;

    text-shadow:
    0 0 10px rgba(0,191,255,0.5);
}

/* CTA BUTTON */

.cta .hero-btn{
    display: inline-block;
    text-decoration: none;

    color: #fff;
    border: 1px solid #00bfff;

    padding: 14px 36px;
    font-size: 16px;

    border-radius: 8px;

    transition: 0.4s;
}

/* BUTTON HOVER */

.cta .hero-btn:hover{
    background: #00bfff;

    box-shadow:
    0 0 10px #00bfff,
    0 0 20px #0077ff,
    0 0 40px #0077ff;
}

/* ================= FOOTER ================= */

.footer{
    width: 100%;
    text-align: center;

    padding: 30px 20px;

    border-top: 1px solid rgba(255,255,255,0.08);

    background: #050816;
}

/* FOOTER TEXT */

.footer p{
    color: #bdbdbd;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* ================= MOBILE ================= */

@media(max-width:700px){

    .cta{
        padding: 70px 25px;
    }

    .cta h1{
        font-size: 28px;
    }

    .footer p{
        font-size: 13px;
    }
}
/* ================= MOBILE RESPONSIVE ================= */
@media screen and (max-width:700px){

    /* CTA SECTION */
    .cta{
        width: 90%;
        margin: 70px auto;
        padding: 60px 20px;
        border-radius: 15px;
    }
    /* CTA TITLE */
    .cta h1{
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    /* CTA BUTTON */
    .cta .hero-btn{
        padding: 12px 28px;
        font-size: 14px;
    }
    /* FOOTER */
    .footer{
        padding: 25px 15px;
    }
    /* FOOTER TEXT */
    .footer p{
        font-size: 13px;
        line-height: 1.6;
    }
}
/* =========================
   OUR PROJECTS SECTION
========================= */

.projects{
    width: 100%;
    padding: 100px 8%;
    background: #050816;
}

/* TITLE */

.projects-title{
    text-align: center;
    margin-bottom: 60px;
}

.projects-title h1{
    font-size: 45px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.projects-title p{
    color: #8ab4ff;
    font-size: 15px;
    letter-spacing: 1px;
}

/* GRID */

.project-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
}

/* CARD */

.project-card{
    background: rgba(12,18,38,0.95);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0,170,255,0.15);
    transition: 0.5s ease;
    position: relative;
    box-shadow: 0 0 15px rgba(0,170,255,0.08);
}

/* CARD HOVER */

.project-card:hover{
    transform: translateY(-12px);
    border-color: #00aaff;

    box-shadow:
    0 0 15px rgba(0,170,255,0.5),
    0 0 35px rgba(0,170,255,0.25),
    0 0 55px rgba(0,170,255,0.15);
}

/* IMAGE */

.project-img{
    overflow: hidden;
    position: relative;
}

.project-img img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* IMAGE HOVER EFFECT */

.project-card:hover .project-img img{
    transform: scale(1.12);
}

/* SHINING EFFECT */

.project-img::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-25deg);
    transition: 0.8s;
    z-index: 2;
}

.project-card:hover .project-img::before{
    left: 130%;
}

/* CONTENT */

.project-content{
    padding: 28px;
}

.project-content h2{
    color: #fff;
    font-size: 25px;
    margin-bottom: 14px;
}

.project-content p{
    color: #c7d8ff;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BUTTON */

.project-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #00aaff;
    padding: 12px 28px;
    border-radius: 30px;
    transition: 0.4s ease;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0 12px rgba(0,170,255,0.2);
}

/* BUTTON HOVER */

.project-btn:hover{
    background: #00aaff;

    box-shadow:
    0 0 15px #00aaff,
    0 0 35px #00aaff;
}

/* MOBILE */

@media(max-width:768px){

    .projects{
        padding: 80px 6%;
    }

    .projects-title h1{
        font-size: 34px;
    }

    .project-content h2{
        font-size: 22px;
    }

    .project-content p{
        font-size: 13px;
    }

    .project-img img{
        height: 210px;
    }

}
/* =========================
        OUR TEAM SECTION
========================= */

.team{
    width: 100%;
    padding: 100px 8%;
    background: #050816;
}

/* TITLE */

.team-title{
    text-align: center;
    margin-bottom: 70px;
}

.team-title h1{
    font-size: 45px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-title p{
    color: #8ab4ff;
    font-size: 15px;
    letter-spacing: 1px;
}

/* GRID */

.team-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 35px;
}

/* CARD */

.team-card{
    background: rgba(12,18,38,0.95);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s ease;
    border: 1px solid rgba(0,170,255,0.15);

    box-shadow:
    0 0 15px rgba(0,170,255,0.08);
}

/* CARD HOVER */

.team-card:hover{
    transform: translateY(-12px);

    border-color: #00aaff;

    box-shadow:
    0 0 15px rgba(0,170,255,0.5),
    0 0 35px rgba(0,170,255,0.25),
    0 0 55px rgba(0,170,255,0.15);
}

/* SHINE EFFECT */

.team-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.08);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.team-card:hover::before{
    left: 130%;
}

/* IMAGE */

.team-img{
    width: 140px;
    height: 140px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00aaff;

    box-shadow:
    0 0 15px rgba(0,170,255,0.5),
    0 0 30px rgba(0,170,255,0.25);

    transition: 0.5s ease;
}

/* IMAGE HOVER */

.team-card:hover .team-img{
    transform: scale(1.08) rotate(3deg);
}

.team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */

.team-content{
    margin-top: 25px;
}

.team-content h2{
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.team-content h3{
    color: #00aaff;
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 500;
}

.team-content p{
    color: #c7d8ff;
    font-size: 14px;
    line-height: 1.8;
}

/* FLOATING ANIMATION */

.team-card{
    animation: floating 4s ease-in-out infinite;
}

.team-card:nth-child(2){
    animation-delay: 0.5s;
}

.team-card:nth-child(3){
    animation-delay: 1s;
}

.team-card:nth-child(4){
    animation-delay: 1.5s;
}

@keyframes floating{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* MOBILE */

@media(max-width:768px){

    .team{
        padding: 80px 6%;
    }

    .team-title h1{
        font-size: 34px;
    }

    .team-img{
        width: 120px;
        height: 120px;
    }

    .team-content h2{
        font-size: 21px;
    }

    .team-content p{
        font-size: 13px;
    }

}
/* =========================
        CTA SECTION
========================= */

.cta{
    width: 90%;
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(0,170,255,0.12),
        rgba(5,8,22,0.95)
    ) url(img/combac.png);

    border: 1px solid rgba(0,170,255,0.2);
    border-radius: 20px;

    box-shadow:
    0 0 20px rgba(0,170,255,0.15);

    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */

.cta::before{
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0,170,255,0.15);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(90px);
}

/* CTA TITLE */

.cta h1{
    color: #fff;
    font-size: 42px;
    line-height: 1.5;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* CTA TEXT */

.cta p{
    color: #b8d2ff;
    font-size: 15px;
    line-height: 1.8;
    max-width: 750px;
    margin: auto;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

/* CTA BUTTON */

.cta .hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #00aaff;
    padding: 14px 35px;
    font-size: 15px;
    border-radius: 35px;
    transition: 0.5s ease;
    position: relative;
    z-index: 2;

    box-shadow:
    0 0 12px rgba(0,170,255,0.25);
}

/* BUTTON HOVER */

.cta .hero-btn:hover{
    background: #00aaff;

    transform: translateY(-5px);

    box-shadow:
    0 0 15px #00aaff,
    0 0 35px #00aaff;
}

/* FLOAT ANIMATION */

.cta{
    animation: floatBox 4s ease-in-out infinite;
}

@keyframes floatBox{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* =========================
        MOBILE DESIGN
========================= */

@media(max-width:768px){

    /* CTA SECTION */

    .cta{
        width: 90%;
        margin: 70px auto;
        padding: 60px 20px;
        border-radius: 15px;
    }

    /* CTA TITLE */

    .cta h1{
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    /* CTA TEXT */

    .cta p{
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    /* CTA BUTTON */

    .cta .hero-btn{
        padding: 12px 28px;
        font-size: 14px;
    }

    /* FOOTER */

    .footer{
        padding: 25px 15px;
    }

    /* FOOTER TEXT */

    .footer p{
        font-size: 13px;
        line-height: 1.6;
    }

}
/* ICON CONTAINER */

.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ICON STYLE */

.icons svg{
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;

    font-size: 17px;
    color: #8ab4ff;

    border: 1px solid rgba(0,170,255,0.2);
    border-radius: 50%;

    background: rgba(12,18,38,0.9);

    cursor: pointer;

    transition: 0.5s ease;

    box-shadow:
    0 0 8px rgba(0,170,255,0.08);

    position: relative;
    overflow: hidden;
}

/* SHINE EFFECT */

.icons svg::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: rgba(255,255,255,0.15);

    transform: skewX(-25deg);

    transition: 0.7s;
}

/* HOVER EFFECT */

.icons svg:hover::before{
    left: 130%;
}

.icons svg:hover{
    color: #fff;

    transform:
    translateY(-5px)
    scale(1.08);

    border-color: #00aaff;

    background: #00aaff;

    box-shadow:
    0 0 12px #00aaff,
    0 0 28px rgba(0,170,255,0.4);
}

/* FLOATING ANIMATION */

.icons svg{
    animation: floatIcon 4s ease-in-out infinite;
}

.icons svg:nth-child(2){
    animation-delay: 0.5s;
}

.icons svg:nth-child(3){
    animation-delay: 1s;
}

.icons svg:nth-child(4){
    animation-delay: 1.5s;
}

.icons svg:nth-child(5){
    animation-delay: 2s;
}

/* KEYFRAMES */

@keyframes floatIcon{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-4px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* MOBILE */

@media(max-width:768px){

    .icons{
        gap: 12px;
    }

    .icons svg{
        width: 38px;
        height: 38px;
        line-height: 38px;

        font-size: 15px;
    }

}