/*==================================================
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;
    scroll-behavior:smooth;
}

html{
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b1120;
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
    position:relative;
}

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

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:120px 0;
}

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

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

::-webkit-scrollbar-track{
    background:#08101d;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(#3b82f6,#06b6d4);
    border-radius:50px;
}

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

body::before{
    content:"";
    position:fixed;
    width:700px;
    height:700px;
    background:#2563eb;
    border-radius:50%;
    filter:blur(180px);
    top:-250px;
    left:-250px;
    opacity:.25;
    z-index:-3;
}

body::after{
    content:"";
    position:fixed;
    width:650px;
    height:650px;
    background:#06b6d4;
    border-radius:50%;
    filter:blur(180px);
    bottom:-250px;
    right:-250px;
    opacity:.25;
    z-index:-3;
}

/*==================================================
PARTICLES
==================================================*/

.particles{
    position:fixed;
    inset:0;
    z-index:-2;
    background-image:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.08) 2px,transparent 2px),
    radial-gradient(circle at 70% 60%,rgba(255,255,255,.05) 2px,transparent 2px),
    radial-gradient(circle at 50% 80%,rgba(255,255,255,.08) 2px,transparent 2px);
    background-size:180px 180px;
    animation:moveParticles 20s linear infinite;
}

@keyframes moveParticles{

0%{
background-position:0 0;
}

100%{
background-position:180px 180px;
}

}

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

#loader{
    position:fixed;
    inset:0;
    background:#08101d;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.loader-circle{

width:80px;
height:80px;
border-radius:50%;
border:8px solid rgba(255,255,255,.1);
border-top:8px solid #3b82f6;
animation:spin 1s linear infinite;

}

@keyframes spin{

100%{
transform:rotate(360deg);
}

}

/*==================================================
HEADER
==================================================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
padding:20px 0;
z-index:1000;
transition:.4s;

}

header.active{

background:rgba(8,16,29,.75);
backdrop-filter:blur(20px);
box-shadow:0 10px 40px rgba(0,0,0,.4);

}

.nav{

display:flex;
justify-content:space-between;
align-items:center;

}

.logo{

font-size:30px;
font-weight:800;
color:#fff;

}

.logo span{

color:#06b6d4;

}

.nav-links{

display:flex;
gap:35px;

}

.nav-links a{

font-weight:500;
position:relative;
transition:.3s;

}

.nav-links a:hover{

color:#06b6d4;

}

.nav-links a::after{

content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:#06b6d4;
transition:.4s;

}

.nav-links a:hover::after{

width:100%;

}

.menu-btn{

display:none;
font-size:30px;
cursor:pointer;

}

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

.hero{

min-height:100vh;
display:flex;
align-items:center;

}

.hero-container{

display:grid;
grid-template-columns:repeat(2,1fr);
align-items:center;
gap:80px;

}

.hello{

font-size:22px;
color:#06b6d4;
margin-bottom:15px;

}

.hero h1{

font-size:68px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;

}

.hero h1 span{

background:linear-gradient(90deg,#3b82f6,#06b6d4);
-webkit-background-clip: text;
-webkit-text-fill-color:transparent;

}

.hero h2{

font-size:30px;
margin-bottom:25px;
height:40px;

}

.hero-text{

font-size:18px;
color:#d1d5db;
max-width:600px;
margin-bottom:35px;

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:35px;

}

.btn{

padding:15px 38px;
background:linear-gradient(135deg,#3b82f6,#06b6d4);
border-radius:50px;
font-weight:600;
transition:.4s;
box-shadow:0 15px 35px rgba(59,130,246,.35);

}

.btn:hover{

transform:translateY(-6px);
box-shadow:0 20px 45px rgba(6,182,212,.45);

}

.btn-outline{

background:transparent;
border:2px solid #3b82f6;

}

.btn-outline:hover{

background:#3b82f6;

}
/*==================================================
HERO IMAGE
==================================================*/

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

.image-box{
    width:420px;
    height:560px;
    border-radius:30px;
    overflow:hidden;
    padding:8px;
    background:linear-gradient(135deg,#3b82f6,#06b6d4);
    animation:floatImage 4s ease-in-out infinite
}

.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:24px;
    border:none;
}


@keyframes floatImage{

0%{
transform:translateY(0);
}

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

100%{
transform:translateY(0);
}

}

/*==================================================
SOCIAL ICONS
==================================================*/

.social-icons{
    display:flex;
    gap:18px;
}

.social-icons a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.1);
    font-size:22px;
    transition:.4s;
}

.social-icons a:hover{
    transform:translateY(-8px);
    background:linear-gradient(135deg,#3b82f6,#06b6d4);
    box-shadow:0 15px 35px rgba(6,182,212,.35);
}

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

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

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    position:relative;
}

.section-title h2::after{
    content:"";
    width:90px;
    height:4px;
    background:linear-gradient(90deg,#3b82f6,#06b6d4);
    position:absolute;
    left:50%;
    bottom:-12px;
    transform:translateX(-50%);
    border-radius:20px;
}

.section-title p{
    color:#cbd5e1;
    max-width:650px;
    margin:auto;
    margin-top:25px;
    font-size:17px;
}

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

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.about-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:22px;
    padding:45px 30px;
    text-align:center;
    transition:.45s;
}

.about-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(59,130,246,.25);
    border-color:#3b82f6;
}

.about-card i{
    font-size:55px;
    margin-bottom:25px;
    background:linear-gradient(#3b82f6,#06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.about-card p{
    color:#cbd5e1;
    font-size:15px;
}

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

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:45px 35px;
    text-align:center;
    transition:.45s;
    overflow:hidden;
    position:relative;
}

.service-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(59,130,246,.18);
    border-radius:50%;
    top:-90px;
    right:-90px;
    transition:.5s;
}

.service-card:hover::before{
    transform:scale(1.4);
}

.service-card:hover{
    transform:translateY(-15px);
    border-color:#06b6d4;
    box-shadow:0 25px 50px rgba(6,182,212,.25);
}

.service-card i{
    font-size:55px;
    margin-bottom:25px;
    color:#3b82f6;
}

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

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

/*==================================================
HOVER GLOW
==================================================*/

.about-card,
.service-card,
.btn,
.social-icons a{
    will-change:transform;
}

.about-card:hover,
.service-card:hover{
    cursor:pointer;
}

/*==================================================
FADE ANIMATION
==================================================*/

.fade-up{
    opacity:0;
    transform:translateY(70px);
    transition:1s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}
/*==================================================
CERTIFICATIONS
==================================================*/

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.certificate-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    overflow:hidden;
    transition:.45s;
    text-align:center;
    position:relative;
}

.certificate-card:hover{
    transform:translateY(-12px);
    border-color:#06b6d4;
    box-shadow:0 25px 50px rgba(6,182,212,.30);
}

.certificate-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.5s;
}

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

.certificate-card h3{
    padding:22px;
    font-size:22px;
    font-weight:600;
}

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

.contact form{
    width:100%;
    max-width:750px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact input,
.contact textarea{
    width:100%;
    padding:18px 22px;
    border:none;
    outline:none;
    border-radius:15px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:16px;
    backdrop-filter:blur(12px);
    transition:.35s;
}

.contact textarea{
    resize:none;
}

.contact input:focus,
.contact textarea:focus{
    border-color:#3b82f6;
    box-shadow:0 0 20px rgba(59,130,246,.25);
}

.contact input::placeholder,
.contact textarea::placeholder{
    color:#b8c2d3;
}

.contact button{
    border:none;
    cursor:pointer;
    align-self:center;
}

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

footer{
    padding:35px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    background:#08101d;
}

footer p{
    color:#cbd5e1;
    font-size:15px;
}

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

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#3b82f6,#06b6d4);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:999;
    box-shadow:0 15px 35px rgba(59,130,246,.35);
}

#topBtn.show{
    opacity:1;
    visibility:visible;
}

#topBtn:hover{
    transform:translateY(-8px);
}

/*==================================================
SMOOTH REVEAL
==================================================*/

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/*==================================================
GLOW EFFECT
==================================================*/

.btn,
.image-box,
.about-card,
.service-card,
.certificate-card{
    transition:all .4s ease;
}

.image-box:hover{
    box-shadow:
        0 0 25px rgba(59,130,246,.45),
        0 0 50px rgba(6,182,212,.35);
}

/*==================================================
SELECTION
==================================================*/

::selection{
    background:#3b82f6;
    color:#fff;
}
/*==================================================
MOBILE MENU
==================================================*/

@media (max-width:900px){

.menu-btn{
    display:block;
    z-index:1001;
}

.nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:rgba(8,16,29,.98);
    backdrop-filter:blur(25px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:35px;
    transition:.4s;
    box-shadow:-10px 0 30px rgba(0,0,0,.4);
}

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

.nav-links a{
    font-size:20px;
}

.hero-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:60px;
}

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

.social-icons{
    justify-content:center;
}

.about-grid,
.service-grid,
.certificate-grid{
    grid-template-columns:1fr;
}

.image-box{
    width:340px;
    height:340px;
}

.hero h1{
    font-size:52px;
}

.hero h2{
    font-size:24px;
}

.section-title h2{
    font-size:40px;
}

}

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

@media (max-width:768px){

.section{
    padding:90px 0;
}

.container{
    width:92%;
}

.hero{
    padding-top:100px;
}

.hero h1{
    font-size:46px;
}

.hero-text{
    font-size:16px;
}

.btn{
    padding:14px 30px;
}

.image-box{
    width:300px;
    height:300px;
}

.section-title h2{
    font-size:36px;
}

.about-card,
.service-card,
.certificate-card{
    padding:35px 25px;
}

}

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

@media (max-width:576px){

.logo{
    font-size:24px;
}

.hero h1{
    font-size:36px;
}

.hero h2{
    font-size:20px;
}

.hero-text{
    font-size:15px;
}

.image-box{
    width:250px;
    height:250px;
}

.btn{
    width:100%;
    text-align:center;
}

.hero-buttons{
    flex-direction:column;
}

.social-icons{
    flex-wrap:wrap;
}

.social-icons a{
    width:48px;
    height:48px;
    font-size:18px;
}

.section-title h2{
    font-size:30px;
}

.about-card h3,
.service-card h3,
.certificate-card h3{
    font-size:20px;
}

.contact input,
.contact textarea{
    padding:15px;
}

#topBtn{
    width:50px;
    height:50px;
}

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes fadeIn{

from{
    opacity:0;
}

to{
    opacity:1;
}

}

@keyframes slideUp{

from{
    opacity:0;
    transform:translateY(70px);
}

to{
    opacity:1;
    transform:translateY(0);
}

}

.hero-content{
    animation:slideUp 1s ease;
}

.hero-image{
    animation:fadeIn 1.2s ease;
}

.about-card,
.service-card,
.certificate-card{
    animation:fadeIn .8s ease;
}

/*==================================================
UTILITY CLASSES
==================================================*/

.text-center{
    text-align:center;
}

.mt-1{
    margin-top:10px;
}

.mt-2{
    margin-top:20px;
}

.mt-3{
    margin-top:30px;
}

.mb-1{
    margin-bottom:10px;
}

.mb-2{
    margin-bottom:20px;
}

.mb-3{
    margin-bottom:30px;
}

.hidden{
    display:none;
}

/*==================================================
END OF FILE
==================================================*/