*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}
body{
background:#08111f;
color:white;
overflow-x:hidden;
}
.navbar{
background:rgba(0,0,0,.25);
backdrop-filter:blur(15px);
}
.navbar-brand{
font-size:22px;
font-weight:bold;
color:#00f7ff!important;
}
.nav-link{
color:white!important;
margin-left:15px;
transition:.3s;
}
.nav-link:hover{
color:#00f7ff!important;
}
.hero{
min-height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(5,10,25,.8),rgba(5,10,25,.9)),
url(images/bg.jpg);
background-size:cover;
background-position:center;
}
.hero h1{
font-size:60px;
font-weight:800;
line-height:1.2;
}
.hero span{
color:#00f7ff;
}
.hero p{
margin:25px 0;
font-size:20px;
color:#d5d5d5;
}
.btn-primary{
background:#00f7ff;
border:none;
color:black;
font-weight:600;
padding:14px 35px;
}
.btn-primary:hover{
background:white;
color:black;
}
.hero-image{
animation:float 4s ease-in-out infinite;
max-width:90%;
}
@keyframes float{
0%{
transform:translateY(0px);
}
50%{
transform:translateY(-20px);
}
100%{
transform:translateY(0px);
}
}
@media(max-width:991px){
.hero{
text-align:center;
padding-top:120px;
}
.hero h1{
font-size:40px;
}
.hero p{
font-size:18px;
}
}
/*==============================
SECTION TITLE
==============================*/
.about-section{
padding-top:100px;
padding-bottom:80px;
background:#091523;
}
.section-tag{
color:#00f7ff;
font-weight:600;
letter-spacing:2px;
font-size:14px;
}
.section-title{
font-size:46px;
font-weight:800;
line-height:1.3;
}
.section-title span{
color:#00f7ff;
}
.section-text{
margin-top:20px;
color:#bfc9d4;
line-height:1.9;
font-size:17px;
}
/*==============================
GLASS IMAGE CARD
==============================*/
.glass-card{
background:rgba(255,255,255,.05);
padding:20px;
border-radius:25px;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
box-shadow:0 20px 60px rgba(0,255,255,.15);
}
/*==============================
MISSION CARD
==============================*/
.info-card{
padding:40px;
background:#101d30;
border-radius:25px;
transition:.4s;
border:1px solid rgba(255,255,255,.06);
}
.info-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,255,255,.25);
}
.icon-box{
width:75px;
height:75px;
border-radius:20px;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
background:#00f7ff;
color:#000;
margin-bottom:20px;
}
.info-card h3{
font-weight:700;
margin-bottom:15px;
}
.info-card p{
color:#cfd8e2;
line-height:1.8;
}
/*==============================
COUNTER
==============================*/
.counter-section{
padding:90px 0;
background:linear-gradient(135deg,#07101d,#0f2340);
}
.counter-card{
padding:40px;
border-radius:20px;
background:#13263d;
transition:.4s;
}
.counter-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,255,255,.20);
}
.counter{
font-size:60px;
font-weight:800;
color:#00f7ff;
margin-bottom:10px;
}
.counter-card h5{
color:white;
font-weight:600;
}
@media(max-width:768px){
.section-title{
font-size:34px;
}
.counter{
font-size:42px;
}
}
/*==============================
SERVICES SECTION
==============================*/
.services-section{
    background:#07111f;
    position:relative;
}
.service-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px 30px;
    height:100%;
    transition:.4s;
    backdrop-filter:blur(15px);
    overflow:hidden;
    position:relative;
}
.service-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:#00f7ff22;
    border-radius:50%;
    top:-120px;
    right:-120px;
    transition:.5s;
}
.service-card:hover::before{
    transform:scale(1.5);
}
.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 60px rgba(0,247,255,.25);
    border-color:#00f7ff;
}
.service-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:#00f7ff;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:25px;
    transition:.4s;
}
.service-card:hover .service-icon{
    transform:rotate(10deg) scale(1.1);
}
.service-card h4{
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}
.service-card p{
    color:#c7d2de;
    line-height:1.8;
    margin-bottom:0;
}
/* Mobile */
@media(max-width:768px){
.service-card{
    padding:30px 25px;
}
.service-icon{
    width:65px;
    height:65px;
    font-size:26px;
}
}
/*==============================
PORTFOLIO
==============================*/
.portfolio-section{
background:#08121f;
}
.filter-btn{
padding:12px 28px;
border:none;
margin:8px;
border-radius:50px;
background:#122338;
color:#fff;
font-weight:600;
transition:.3s;
}
.filter-btn:hover,
.filter-btn.active{
background:#00f7ff;
color:#000;
box-shadow:0 0 20px rgba(0,247,255,.5);
}
.portfolio-card{
position:relative;
overflow:hidden;
border-radius:20px;
cursor:pointer;
background:#111;
}
.portfolio-card img{
width:100%;
height:280px;
object-fit:cover;
transition:.6s;
}
.portfolio-card:hover img{
transform:scale(1.15);
}
.portfolio-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:30px;
background:linear-gradient(transparent,#000);
transform:translateY(100%);
transition:.5s;
}
.portfolio-card:hover .portfolio-overlay{
transform:translateY(0);
}
.portfolio-overlay h4{
font-weight:700;
color:#00f7ff;
}
.portfolio-overlay p{
margin:0;
color:#fff;
}
.portfolio-item{
transition:.5s;
}
/*==============================
TEAM SECTION
==============================*/
.team-section{
background:#071420;
}
.team-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
overflow:hidden;
transition:.4s;
backdrop-filter:blur(15px);
}
.team-card:hover{
transform:translateY(-12px);
box-shadow:0 20px 60px rgba(0,247,255,.25);
border-color:#00f7ff;
}
.team-image{
position:relative;
overflow:hidden;
}
.team-image img{
width:100%;
height:320px;
object-fit:cover;
transition:.5s;
}
.team-card:hover img{
transform:scale(1.1);
}
.team-social{
position:absolute;
left:50%;
bottom:-60px;
transform:translateX(-50%);
display:flex;
gap:12px;
transition:.4s;
}
.team-card:hover .team-social{
bottom:20px;
}
.team-social a{
width:45px;
height:45px;
display:flex;
justify-content:center;
align-items:center;
background:#00f7ff;
color:#000;
border-radius:50%;
text-decoration:none;
font-size:18px;
transition:.3s;
}
.team-social a:hover{
transform:rotate(360deg);
background:#fff;
}
.team-content{
padding:25px;
text-align:center;
}
.team-content h4{
font-weight:700;
margin-bottom:8px;
color:#fff;
}
.team-content span{
color:#00f7ff;
font-size:15px;
font-weight:500;
}
@media(max-width:768px){
.team-image img{
height:280px;
}
}
/*==============================
CAREERS SECTION
==============================*/
.careers-section{
background:#08111f;
}
.job-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
padding:30px;
height:100%;
transition:.4s;
backdrop-filter:blur(15px);
}
.job-card:hover{
transform:translateY(-10px);
border-color:#00f7ff;
box-shadow:0 20px 50px rgba(0,247,255,.25);
}
.job-top{
display:flex;
justify-content:space-between;
margin-bottom:20px;
}
.job-badge{
background:#00f7ff;
color:#000;
padding:8px 15px;
border-radius:50px;
font-size:13px;
font-weight:700;
}
.job-type{
background:#122338;
padding:8px 15px;
border-radius:50px;
font-size:13px;
}
.job-card h4{
font-weight:700;
margin-bottom:15px;
}
.job-card p{
color:#c8d3df;
line-height:1.8;
}
.job-info{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-top:15px;
color:#00f7ff;
}
/*==============================
JOB MODAL
==============================*/
.job-modal{
background:#0e1c2d;
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
color:#fff;
}
.custom-input{
background:#122338;
border:none;
color:#fff;
padding:12px;
}
.custom-input:focus{
background:#122338;
color:#fff;
box-shadow:0 0 15px rgba(0,247,255,.3);
}
.custom-input::placeholder{
color:#aab6c4;
}
/*==============================
BLOG SECTION
==============================*/
.blog-section{
background:#071420;
}
.featured-blog{
background:rgba(255,255,255,.05);
border-radius:25px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
transition:.4s;
height:100%;
}
.featured-blog:hover{
transform:translateY(-10px);
box-shadow:0 20px 60px rgba(0,247,255,.25);
}
.featured-blog img{
width:100%;
height:320px;
object-fit:cover;
}
.blog-content{
padding:30px;
}
.blog-category{
display:inline-block;
padding:8px 18px;
background:#00f7ff;
color:#000;
border-radius:50px;
font-weight:700;
font-size:13px;
margin-bottom:15px;
}
.blog-content h3{
font-weight:700;
margin-bottom:15px;
}
.blog-content p{
color:#c9d3df;
line-height:1.8;
}
/*==============================
BLOG CARD
==============================*/
.blog-card{
background:#102033;
border-radius:20px;
overflow:hidden;
transition:.4s;
height:100%;
}
.blog-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 45px rgba(0,247,255,.25);
}
.blog-card img{
height:180px;
width:100%;
object-fit:cover;
}
.blog-body{
padding:20px;
}
.blog-body span{
font-size:13px;
font-weight:700;
color:#00f7ff;
}
.blog-body h5{
margin:15px 0;
font-weight:700;
line-height:1.5;
}
.blog-body a{
text-decoration:none;
color:#fff;
font-weight:600;
transition:.3s;
}
.blog-body a:hover{
color:#00f7ff;
}
/*==============================
NEWSLETTER
==============================*/
.newsletter-section{
padding:80px 0;
background:#08111f;
}
.newsletter-box{
background:linear-gradient(135deg,#00d8ff,#0056ff);
padding:50px;
border-radius:25px;
}
.newsletter-box h2{
font-weight:800;
color:#fff;
}
.newsletter-box p{
color:#eef8ff;
margin-bottom:0;
}
.newsletter-form{
display:flex;
gap:10px;
}
.newsletter-form input{
flex:1;
padding:14px 20px;
border:none;
border-radius:50px;
outline:none;
}
.newsletter-form button{
padding:14px 28px;
border:none;
border-radius:50px;
background:#08111f;
color:#fff;
font-weight:700;
transition:.3s;
}
.newsletter-form button:hover{
background:#fff;
color:#000;
}
@media(max-width:991px){
.newsletter-box{
text-align:center;
}
.newsletter-form{
margin-top:25px;
flex-direction:column;
}
.newsletter-form button{
width:100%;
}
}
/*==============================
CONTACT
==============================*/
.contact-section{
background:#071420;
}
.contact-info{
display:flex;
flex-direction:column;
gap:25px;
}
.contact-card{
display:flex;
align-items:flex-start;
gap:20px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:25px;
border-radius:20px;
transition:.4s;
}
.contact-card:hover{
transform:translateY(-8px);
border-color:#00f7ff;
box-shadow:0 15px 40px rgba(0,247,255,.25);
}
.contact-icon{
width:65px;
height:65px;
display:flex;
justify-content:center;
align-items:center;
background:#00f7ff;
color:#000;
font-size:24px;
border-radius:18px;
flex-shrink:0;
}
.contact-card h5{
font-weight:700;
margin-bottom:8px;
}
.contact-card p{
margin:0;
color:#c7d4df;
line-height:1.8;
}
/*==============================
CONTACT FORM
==============================*/
.contact-form{
background:rgba(255,255,255,.05);
border-radius:25px;
padding:40px;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(15px);
}
.contact-input{
background:#122338;
border:none;
color:#fff;
padding:16px;
border-radius:12px;
}
.contact-input::placeholder{
color:#a8b6c6;
}
.contact-input:focus{
background:#122338;
color:#fff;
box-shadow:0 0 15px rgba(0,247,255,.35);
}
/*==============================
MAP
==============================*/
.map-section iframe{
width:100%;
height:450px;
border:none;
display:block;
}
/*==============================
MOBILE
==============================*/
@media(max-width:768px){
.contact-form{
padding:25px;
}
.contact-card{
padding:20px;
}
.contact-icon{
width:55px;
height:55px;
font-size:20px;
}
.map-section iframe{
height:320px;
}
}
/*=================================
FOOTER
=================================*/
.footer{
background:#030b16;
padding:80px 0 25px;
}
.footer-logo{
font-weight:800;
color:#00f7ff;
margin-bottom:20px;
}
.footer-text{
color:#bfc8d3;
line-height:1.9;
}
.footer h5{
margin-bottom:20px;
font-weight:700;
}
.footer-links{
padding:0;
list-style:none;
}
.footer-links li{
margin-bottom:12px;
}
.footer-links a{
text-decoration:none;
color:#c9d2dd;
transition:.3s;
}
.footer-links a:hover{
color:#00f7ff;
padding-left:8px;
}
.footer-contact{
list-style:none;
padding:0;
}
.footer-contact li{
margin-bottom:18px;
color:#c9d2dd;
display:flex;
gap:12px;
align-items:flex-start;
}
.footer-contact i{
color:#00f7ff;
margin-top:5px;
}
.social-links{
display:flex;
gap:12px;
margin-top:25px;
}
.social-links a{
width:45px;
height:45px;
display:flex;
justify-content:center;
align-items:center;
background:#122338;
color:#fff;
border-radius:50%;
text-decoration:none;
transition:.4s;
}
.social-links a:hover{
background:#00f7ff;
color:#000;
transform:translateY(-5px);
}
.footer-divider{
margin:45px 0 25px;
border-color:rgba(255,255,255,.08);
}
.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}
.footer-bottom p{
margin:0;
color:#9fb0c0;
}
@media(max-width:768px){
.footer{
text-align:center;
}
.social-links{
justify-content:center;
}
.footer-contact li{
justify-content:center;
}
.footer-bottom{
justify-content:center;
}
}
/*=============================
PAGE LOADER
=============================*/
#loader{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:#08111f;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
transition:.6s;
}
.spinner{
width:70px;
height:70px;
border:6px solid rgba(255,255,255,.2);
border-top:6px solid #00f7ff;
border-radius:50%;
animation:spin 1s linear infinite;
}
@keyframes spin{
100%{
transform:rotate(360deg);
}
}
/*=============================
TOP BUTTON
=============================*/
#topBtn{
position:fixed;
right:25px;
bottom:25px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#00f7ff;
color:#000;
font-size:22px;
display:none;
cursor:pointer;
z-index:999;
transition:.4s;
box-shadow:0 10px 30px rgba(0,247,255,.4);
}
#topBtn:hover{
transform:translateY(-6px);
}
/*=============================
THEME BUTTON
=============================*/
#themeToggle{
position:fixed;
left:25px;
bottom:25px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#122338;
color:#fff;
font-size:22px;
cursor:pointer;
z-index:999;
transition:.3s;
}
#themeToggle:hover{
background:#00f7ff;
color:#000;
}
/*=============================
LIGHT MODE
=============================*/
body.light-mode{
background:#f5f7fb;
color:#111;
}
body.light-mode section{
background:#f5f7fb !important;
}
body.light-mode .service-card,
body.light-mode .team-card,
body.light-mode .job-card,
body.light-mode .blog-card,
body.light-mode .contact-card,
body.light-mode .contact-form,
body.light-mode .counter-card,
body.light-mode .info-card{
background:#ffffff;
color:#111;
border:1px solid #dddddd;
}
body.light-mode p,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5{
color:#111 !important;
}
a{
    text-decoration:none;
    color:inherit;
}
a:hover{
    color:#00f7ff;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a192f, #0b2545, #102a4f);
  color: #fff;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  background: radial-gradient(circle at 20% 20%, rgba(69, 210, 255, 0.18), transparent 16%),
              radial-gradient(circle at 80% 30%, rgba(255, 105, 180, 0.16), transparent 16%),
              radial-gradient(circle at 50% 80%, rgba(144, 238, 144, 0.14), transparent 16%);
  animation: moveBackground 18s linear infinite;
}
.hero::after {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  animation: drift 24s linear infinite;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero .hero-image {
  position: relative;
  z-index: 1;
}
@keyframes moveBackground {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15%, -10%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-40px, 40px); }
}
