/*==============================
  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;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0b1020;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:100px 8%;
}

/*==============================
CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0b1020;
}

::-webkit-scrollbar-thumb{
    background:#00d4ff;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#00b8e6;
}

/*==============================
SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h4{
    color:#00d4ff;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#b8c2d1;
    max-width:700px;
    margin:auto;
}

/*==============================
NAVBAR
==============================*/

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(10,15,30,.88);
    backdrop-filter:blur(12px);
}

.navbar{
    width:84%;
    margin:auto;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#fff;
}

.logo span{
    color:#00d4ff;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#00d4ff;
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/*==============================
HERO
==============================*/

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding-top:140px;
}

.hero-content{
    flex:1;
}

.hero-content h3{
    color:#00d4ff;
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#00d4ff;
}

.hero-content h2{
    font-size:36px;
    margin-bottom:20px;
}

.typing{
    color:#00d4ff;
}

.hero-content p{
    color:#b8c2d1;
    max-width:620px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:15px 34px;
    background:#00d4ff;
    color:#08101d;
    font-weight:700;
    border-radius:50px;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-6px);
    box-shadow:0 0 25px rgba(0,212,255,.5);
}

.btn2{
    background:transparent;
    color:#fff;
    border:2px solid #00d4ff;
}

.btn2:hover{
    background:#00d4ff;
    color:#08101d;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image video{

    width:100%;
    max-width:550px;
 height:350px;

    border-radius:20px;

    object-fit:cover;

    animation:float 4s ease-in-out infinite;

    box-shadow:0 0 35px rgba(0,217,255,.35);


    transition: transform .25s ease;
transform-style: preserve-3d;
will-change: transform;
}

/*==============================
FLOAT ANIMATION
==============================*/

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0);
    }

}

/*==============================
ABOUT SECTION
==============================*/

.about{
    background:#11182b;
}

.about-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:60px;
}

.about-image img{
    width:100%;
    max-width:520px;
    margin:auto;
    border-radius:20px;
    box-shadow:0 0 35px rgba(0,212,255,.15);
}

.about-content h4{
    color:#00d4ff;
    letter-spacing:2px;
    margin-bottom:10px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-content p{
    color:#c5cfdd;
    margin-bottom:18px;
}

.about-boxes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.about-box{
    background:#192238;
    padding:25px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.about-box:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
    box-shadow:0 0 25px rgba(0,212,255,.2);
}

.about-box i{
    font-size:36px;
    color:#00d4ff;
    margin-bottom:15px;
}

.about-box h3{
    margin-bottom:10px;
}

.about-box p{
    font-size:14px;
    color:#b8c2d1;
}

/*==============================
SERVICES
==============================*/

.services{
    background:#0b1020;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#192238;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:#00d4ff;
    box-shadow:0 0 30px rgba(0,212,255,.25);
}

.service-card i{
    font-size:48px;
    color:#00d4ff;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.service-card p{
    color:#b8c2d1;
    font-size:15px;
}

/*==============================
TABLET RESPONSIVE
==============================*/

@media(max-width:992px){

    .about-container{
        grid-template-columns:1fr;
    }

    .about-boxes{
        grid-template-columns:1fr;
    }

    .services-container{
        grid-template-columns:repeat(2,1fr);
    }

}

/*==============================
MOBILE RESPONSIVE
==============================*/

@media(max-width:768px){

    section{
        padding:80px 6%;
    }

    .hero{
        flex-direction:column-reverse;
        text-align:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content h2{
        font-size:28px;
    }

    .hero-content p{
        margin:auto auto 30px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .services-container{
        grid-template-columns:1fr;
    }

}

/*==============================
PORTFOLIO
==============================*/

.portfolio{
    background:#11182b;
}

.portfolio-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.portfolio-card{
    background:#192238;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.portfolio-card:hover{
    transform:translateY(-12px);
    box-shadow:0 0 30px rgba(0,212,255,.20);
    border-color:#00d4ff;
}

.portfolio-card img{
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-content{
    padding:25px;
}

.portfolio-content h3{
    margin-bottom:12px;
}

.portfolio-content p{
    color:#b8c2d1;
    margin-bottom:20px;
}

.project-btn{
    color:#00d4ff;
    font-weight:600;
}

.project-btn i{
    margin-left:8px;
    transition:.3s;
}

.project-btn:hover i{
    transform:translateX(6px);
}

/*==============================
WHY CHOOSE US
==============================*/

.why-us{
    background:#0b1020;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#192238;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
    box-shadow:0 0 30px rgba(0,212,255,.25);
}

.why-card i{
    font-size:48px;
    color:#00d4ff;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:#b8c2d1;
    font-size:15px;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

    .portfolio-container{
        grid-template-columns:repeat(2,1fr);
    }

    .why-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .portfolio-container{
        grid-template-columns:1fr;
    }

    .why-container{
        grid-template-columns:1fr;
    }

}


/*==============================
OUR PROCESS
==============================*/

.process{
    background:#11182b;
}

.process-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    position:relative;
    background:#192238;
    padding:70px 25px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
    box-shadow:0 0 30px rgba(0,212,255,.25);
}

.process-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:42px;
    font-weight:800;
    color:rgba(255,255,255,.08);
}

.process-card i{
    font-size:48px;
    color:#00d4ff;
    margin-bottom:20px;
}

.process-card h3{
    margin-bottom:15px;
}

.process-card p{
    color:#b8c2d1;
    font-size:15px;
}

/*==============================
TEAM
==============================*/

.team{
    background:#0b1020;
}

.team-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.team-card{
    background:#192238;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.team-card:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
    box-shadow:0 0 30px rgba(0,212,255,.25);
}

.team-card img{
    height:280px;
    object-fit:cover;
}

.team-card h3{
    margin:20px 0 10px;
}

.team-card span{
    display:block;
    color:#b8c2d1;
    padding:0 20px 25px;
}

/*==============================
OUR COMMITMENT
==============================*/

.values{
    background:#11182b;
}

.values-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:#192238;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.value-card:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
    box-shadow:0 0 30px rgba(0,212,255,.25);
}

.value-card i{
    font-size:46px;
    color:#00d4ff;
    margin-bottom:20px;
}

.value-card h3{
    margin-bottom:15px;
}

.value-card p{
    color:#b8c2d1;
    font-size:15px;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

    .process-container,
    .team-container,
    .values-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .process-container,
    .team-container,
    .values-container{
        grid-template-columns:1fr;
    }

}




/*==============================
CONTACT SECTION
==============================*/

.contact{
    background:#0b1020;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#192238;
    padding:20px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.info-box:hover{
    border-color:#00d4ff;
    transform:translateX(8px);
}

.info-box i{
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#00d4ff;
    color:#08101d;
    font-size:24px;
}

.info-box h3{
    margin-bottom:5px;
}

.info-box p{
    color:#b8c2d1;
}

.social-links{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social-links a{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#192238;
    color:#fff;
    border-radius:50%;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
}

.social-links a:hover{
    background:#00d4ff;
    color:#08101d;
    transform:translateY(-6px);
}

.contact-form{
    background:#192238;
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    margin-bottom:20px;
    padding:15px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#0b1020;
    color:#fff;
    font-size:15px;
}

.contact-form textarea{
    resize:vertical;
    min-height:160px;
}

/*==============================
FOOTER
==============================*/

.footer{
    background:#070b15;
    padding:70px 8% 25px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-box h2{
    margin-bottom:20px;
}

.footer-box h2 span{
    color:#00d4ff;
}

.footer-box h3{
    margin-bottom:20px;
}

.footer-box p,
.footer-box li{
    color:#b8c2d1;
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#b8c2d1;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#00d4ff;
    padding-left:6px;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    color:#b8c2d1;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .navbar{
        width:92%;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:-100%;
        width:100%;
        background:#10192d;
        flex-direction:column;
        text-align:center;
        padding:30px 0;
        transition:.4s;
    }

    .nav-links.active{
        left:0;
    }

    .menu-btn{
        display:block;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

}

.nav-links a.active{
    color:#00d4ff;
}

/*==============================
BACK TO TOP
==============================*/

#backToTop{

    position:fixed;
    right:25px;
    bottom:25px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:#00d4ff;
    color:#08101d;

    font-size:22px;
    cursor:pointer;

    display:none;

    z-index:999;

    transition:.4s;
}

#backToTop:hover{

    transform:translateY(-8px);

    box-shadow:0 0 25px rgba(0,212,255,.5);

}

/*==============================
WHATSAPP
==============================*/

.whatsapp-btn{

    position:fixed;

    left:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    z-index:999;

    transition:.4s;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

}




/*=========================
PREMIUM NAVBAR
=========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:#050816;
}

.header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border-bottom:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.navbar{

max-width:1300px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 30px;

}

.logo{

font-size:30px;

font-weight:bold;

text-decoration:none;

color:white;

}

.logo span{

color:#00d9ff;

}

.nav-links{

display:flex;

gap:35px;

list-style:none;

}

.nav-links a{

color:white;

text-decoration:none;

font-size:17px;

transition:.4s;

position:relative;

}

.nav-links a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:2px;

background:#00d9ff;

transition:.4s;

}

.nav-links a:hover{

color:#00d9ff;

}

.nav-links a:hover::after{

width:100%;

}

.nav-buttons{

display:flex;

gap:15px;

}

.theme-btn,

.menu-btn{

width:45px;

height:45px;

border:none;

border-radius:50%;

cursor:pointer;

font-size:18px;

background:#0c1b34;

color:white;

transition:.4s;

}

.theme-btn:hover,

.menu-btn:hover{

background:#00d9ff;

color:#000;

transform:rotate(360deg);

}

.menu-btn{

display:none;

}

.header.active{

background:#071120;

box-shadow:0 0 20px rgba(0,0,0,.4);

}

@media(max-width:900px){

.nav-links{

position:fixed;

top:85px;

right:-100%;

width:260px;

height:100vh;

background:#09162d;

display:flex;

flex-direction:column;

align-items:center;

padding-top:60px;

transition:.4s;

}

.nav-links.active{

right:0;

}

.menu-btn{

display:block;

}

}



/*========================
HERO SECTION
=========================*/

.hero{

min-height:100vh;

display:flex;

align-items:center;

justify-content:space-between;

padding:130px 10% 50px;

position:relative;

overflow:hidden;

background:linear-gradient(135deg,#050816,#09162d,#071b38);

}

.hero-content{

width:50%;

z-index:2;

}

.hero-tag{

display:inline-block;

padding:10px 20px;

border-radius:30px;

background:rgba(0,217,255,.12);

color:#00d9ff;

margin-bottom:20px;

}

.hero h1{

font-size:65px;

color:white;

line-height:1.2;

margin-bottom:20px;

}

.hero h1 span{

color:#00d9ff;

}

.hero h2{

font-size:32px;

color:white;

margin-bottom:20px;

}

.typing{

color:#00d9ff;

}

.hero-text{

color:#bdbdbd;

font-size:18px;

line-height:1.8;

max-width:550px;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.btn1,.btn2{

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

transition:.4s;

}

.btn1{

background:#00d9ff;

color:black;

}

.btn2{

border:2px solid #00d9ff;

color:#00d9ff;

}

.btn1:hover{

transform:translateY(-5px);

box-shadow:0 0 30px #00d9ff;

}

.btn2:hover{

background:#00d9ff;

color:black;

}

.hero-image{

width:45%;

text-align:center;

z-index:2;

}

.hero-image img{

width:100%;

max-width:550px;

animation:float 4s ease-in-out infinite;

transition: transform .25s ease;
transform-style: preserve-3d;
will-change: transform;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

}

.circle{

position:absolute;

border-radius:50%;

filter:blur(40px);

animation:move 8s infinite alternate;

}

.c1{

width:250px;

height:250px;

background:#00d9ff55;

top:-60px;

left:-60px;

}

.c2{

width:180px;

height:180px;

background:#6d5cff55;

right:10%;

bottom:20%;

}

.c3{

width:120px;

height:120px;

background:#00ff8855;

bottom:-20px;

left:40%;

}

@keyframes move{

100%{

transform:translate(40px,-40px);

}

}

@media(max-width:900px){

.hero{

flex-direction:column;

text-align:center;

}

.hero-content,

.hero-image{

width:100%;

}

.hero h1{

font-size:45px;

}

.hero-buttons{

justify-content:center;

margin-bottom:40px;

}

}



/*==========================
LOADER
==========================*/

#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100vh;

background:#050816;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:1s;

}

.loader-logo{

font-size:55px;

font-weight:800;

color:white;

animation:pulse 1.2s infinite;

}

.loader-logo span{

color:#00d9ff;

}

@keyframes pulse{

0%{

transform:scale(.9);

opacity:.5;

}

50%{

transform:scale(1.05);

opacity:1;

}

100%{

transform:scale(.9);

opacity:.5;

}

}

/*==========================
CUSTOM CURSOR
==========================*/

.cursor{

    display:block;

position:fixed;

width:20px;

height:20px;

border-radius:50%;

background:#00d9ff;

pointer-events:none;

transform:translate(-50%,-50%);

z-index:999999;

transition:transform .08s linear;

box-shadow:
0 0 20px #00d9ff,
0 0 40px #00d9ff,
0 0 60px #00d9ff;

}




/*==========================
FLOATING BACKGROUND
==========================*/

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(45px);
    animation:floatCircle 10s ease-in-out infinite alternate;
    z-index:0;
}

.c1{
    width:220px;
    height:220px;
    background:rgba(0,217,255,.18);
    top:5%;
    left:-60px;
}

.c2{
    width:180px;
    height:180px;
    background:rgba(109,92,255,.18);
    right:8%;
    top:20%;
    animation-duration:12s;
}

.c3{
    width:140px;
    height:140px;
    background:rgba(0,255,136,.18);
    bottom:8%;
    left:35%;
    animation-duration:14s;
}

.c4{
    width:120px;
    height:120px;
    background:rgba(255,0,170,.15);
    top:60%;
    right:25%;
    animation-duration:11s;
}

.c5{
    width:90px;
    height:90px;
    background:rgba(255,255,0,.12);
    top:15%;
    left:45%;
    animation-duration:9s;
}

@keyframes floatCircle{

    0%{
        transform:translate(0,0) scale(1);
    }

    50%{
        transform:translate(35px,-30px) scale(1.08);
    }

    100%{
        transform:translate(-25px,25px) scale(.95);
    }

}

/*==========================
MOUSE LIGHT EFFECT
==========================*/

.mouse-light{
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;

    background: radial-gradient(
        circle,
        rgba(0,217,255,.22) 0%,
        rgba(0,217,255,.10) 35%,
        rgba(0,217,255,0) 75%
    );

    transform: translate(-50%, -50%);
    transition: left .08s linear, top .08s linear;
    filter: blur(18px);
}


/*==============================
LIGHT MODE
==============================*/

body.light-mode{
    background:#f5f7fb;
    color:#111;
}

body.light-mode .header{
    background:rgba(255,255,255,.9);
    border-bottom:1px solid #ddd;
}

body.light-mode .logo,
body.light-mode .nav-links a,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4{
    color:#111;
}

body.light-mode .logo span{
    color:#00b7ff;
}

body.light-mode .hero,
body.light-mode .services,
body.light-mode .why-us,
body.light-mode .team,
body.light-mode .contact{
    background:#f5f7fb;
}

body.light-mode .about,
body.light-mode .portfolio,
body.light-mode .process,
body.light-mode .values,
body.light-mode .footer{
    background:#ffffff;
}

body.light-mode .service-card,
body.light-mode .portfolio-card,
body.light-mode .why-card,
body.light-mode .process-card,
body.light-mode .team-card,
body.light-mode .value-card,
body.light-mode .contact-form,
body.light-mode .info-box{
    background:#ffffff;
    color:#111;
    border:1px solid #ddd;
}

body.light-mode p,
body.light-mode span,
body.light-mode .hero-text,
body.light-mode .portfolio-content p,
body.light-mode .footer-box p,
body.light-mode .footer-box li{
    color:#555;
}

body.light-mode .theme-btn,
body.light-mode .menu-btn{
    background:#e8eef5;
    color:#111;
}