*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#08111f;
color:white;
}

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


.header{
position:fixed;
top:0;
width:100%;
padding:20px 0;
background:rgba(0,0,0,.4);
backdrop-filter:blur(10px);
z-index:1000;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:#00e5ff;
  display:flex;
  align-items:center;
  font-weight:500;
}

nav a{
text-decoration:none;
color:white;
margin-left:25px;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#00e5ff;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
}

.navbar a:hover {
    color: #00bfff;
}
.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:linear-gradient(135deg,#0d1b2a,#1b263b);
}

.hero h1{
font-size:55px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:35px;
color:#cbd5e1;
}

.btn{
background:#00e5ff;
color:#000;
padding:15px 40px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn:hover{
background:white;
}

.about{
padding:100px 20px;
text-align:center;
}

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

.about p{
max-width:800px;
margin:auto;
line-height:1.8;
}

.services{
padding:100px 20px;
text-align:center;
}

.services h2{
margin-bottom:50px;
font-size:40px;
}

.cards{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
width:320px;
padding:30px;
background:#112240;
border-radius:20px;
transition:.4s;
}

.card:hover{
transform:translateY(-12px);
box-shadow:0 10px 30px rgba(0,229,255,.3);
}

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

footer{
background:#000;
padding:60px 20px;
text-align:center;
}

footer h2{
margin-bottom:15px;
}
/* Portfolio */

.portfolio{
padding:100px 20px;
text-align:center;
background:#0f172a;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
margin-top:40px;
}

.portfolio-item img{
width:100%;
border-radius:15px;
transition:.4s;
}

.portfolio-item img:hover{
transform:scale(1.05);
}

/* Testimonials */

.testimonials{
padding:100px 20px;
text-align:center;
}

.testimonial{
max-width:700px;
margin:auto;
background:#112240;
padding:40px;
border-radius:20px;
}

/* FAQ */

.faq{
padding:100px 20px;
background:#08111f;
}

.faq-box{
max-width:900px;
margin:20px auto;
background:#112240;
padding:25px;
border-radius:15px;
}

/* WhatsApp */

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,.4);
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}
/* Scroll Animation */

.card,
.portfolio-item,
.testimonial,
.faq-box{
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

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


/* Top Button */

.top-btn{
position:fixed;
bottom:100px;
right:20px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#00e5ff;
color:black;
font-size:22px;
cursor:pointer;
display:none;
z-index:999;
}


/* FAQ */

.faq-box p{
display:none;
margin-top:15px;
color:#ccc;
}
/* Loader */

#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#08111f;
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
}

.spinner{
width:60px;
height:60px;
border:6px solid #333;
border-top:6px solid #00e5ff;
border-radius:50%;
animation:spin 1s linear infinite;
}

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

/* Theme Button */

#theme-toggle{
background:#00e5ff;
border:none;
padding:10px 15px;
border-radius:30px;
cursor:pointer;
font-size:18px;
margin-left:20px;
}

/* Dark / Light */

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

.light-mode header{
background:#ffffff;
}

.light-mode .card,
.light-mode .faq-box,
.light-mode .testimonial{
background:#f2f2f2;
color:#111;
}

/* Mobile */

@media(max-width:768px){

header .container{
flex-direction:column;
}

nav{
margin-top:15px;
}

nav a{
display:block;
margin:10px 0;
}

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

.cards{
flex-direction:column;
align-items:center;
}

}
.stats{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:30px;
padding:80px 20px;
background:#0f172a;
text-align:center;
}

.stat-box{
background:#112240;
padding:30px;
border-radius:15px;
width:250px;
}

.contact{
padding:80px 20px;
text-align:center;
}

.contact form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact input,
.contact textarea{
padding:15px;
border:none;
border-radius:10px;
}

.newsletter{
padding:80px 20px;
text-align:center;
background:#112240;
}

.newsletter input{
padding:15px;
width:300px;
max-width:90%;
border:none;
border-radius:8px;
margin-bottom:15px;
}
.filter-buttons{
text-align:center;
margin:30px 0;
}

.filter-btn{
padding:12px 25px;
margin:5px;
border:none;
border-radius:30px;
cursor:pointer;
background:#00e5ff;
font-weight:bold;
}

.filter-btn.active{
background:#fff;
color:#000;
}

.portfolio-item{
transition:.4s;
}

.card:hover,
.stat-box:hover{
transform:translateY(-10px) scale(1.03);
}
/* ===== Header ===== */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.7);
    backdrop-filter:blur(10px);
    z-index:1000;
    padding:15px 0;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo a{
    color:#00e5ff;
    text-decoration:none;
    font-size:28px;
    font-weight:700;
}

.navbar{
    display:flex;
    gap:20px;
    align-items:center;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover{
    color:#00e5ff;
}

#theme-toggle{
    background:#00e5ff;
    border:none;
    padding:10px 15px;
    border-radius:30px;
    cursor:pointer;
}

/* ===== Hero ===== */
.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px 40px;
}

/* ===== Mobile ===== */
@media (max-width:768px){

    .header .container{
        display:flex;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .navbar{
        display:flex;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
        margin-top:0;
    }

    .navbar a{
        display:inline-block;
        padding:8px 10px;
        font-size:14px;
    }

    .hero{
        padding-top:100px;
    }
}
/* ===========================
   Mobile Responsive Navbar
=========================== */

#menuBtn{
    display:none;
    background:#00e5ff;
    color:#000;
    border:none;
    padding:10px 15px;
    border-radius:8px;
    font-size:22px;
    cursor:pointer;
}

@media (max-width:768px){

    .header .container{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .navbar{
        display:flex;
        flex-direction:column;
        width:100%;
        text-align:center;
        margin-top:15px;
    }

    .navbar a{
        display:block;
        padding:12px;
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .hero{
        padding-top:140px;
    }

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

    .hero p{
        font-size:18px;
    }

    .cards{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .card{
        width:95%;
    }

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

    .stats{
        flex-direction:column;
        align-items:center;
    }

    .stat-box{
        width:90%;
    }

    .contact form{
        width:100%;
    }

    .newsletter input{
        width:90%;
    }
}
/* Premium WhatsApp Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn:hover {
  background: linear-gradient(135deg, #2EEA74, #0F7A6A);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.btn:active {
  transform: scale(0.97);
}

.btn i {
  font-size: 22px;
}
/* ===== Mobile Menu Add-on ===== */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    user-select:none;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    #navLinks{
        display:none;
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#112240;
        flex-direction:column;
        z-index:999;
    }

    #navLinks.active{
        display:flex;
    }

    #navLinks a{
        display:block;
        padding:15px;
        margin:0;
        text-align:center;
        border-bottom:1px solid rgba(255,255,255,.1);
    }
}
.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
    z-index:1001;
    position:relative;
}

@media(max-width:768px){

#navLinks{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#112240;
    flex-direction:column;
}

#navLinks.active{
    display:flex;
}

.menu-toggle{
    display:block;
    position:absolute;
    right:20px;
    top:20px;
    z-index:1002;
}
}
/* Premium Video Portfolio */

.portfolio video{
width:100%;
border-radius:15px;
display:block;
background:#000;
}

.portfolio-item{
background:#112240;
padding:15px;
border-radius:18px;
transition:.35s;
overflow:hidden;
}

.portfolio-item:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,229,255,.35);
}

.portfolio-item h3{
margin-top:15px;
text-align:center;
}

@media(max-width:768px){

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

}
.footer{
    background: linear-gradient(135deg,#0f172a,#1e293b);
    padding:40px 20px;
    text-align:center;
    color:#fff;
}

.social-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.social-links a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:24px;
    text-decoration:none;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    transition:.4s ease;
    box-shadow:0 0 15px rgba(0,198,255,.2);
}

.social-links a:hover{
    transform:translateY(-8px) scale(1.1);
    background:#00c6ff;
    color:#111;
    box-shadow:0 0 25px #00c6ff;
}

.footer p{
    margin-top:25px;
    color:#d1d5db;
    font-size:15px;
}
.social-links a:nth-child(1):hover{
    background:#1877F2;
    color:#fff;
}

.social-links a:nth-child(2):hover{
    background:#E4405F;
    color:#fff;
}

.social-links a:nth-child(3):hover{
    background:#0A66C2;
    color:#fff;
}

.social-links a:nth-child(4):hover{
    background:#25D366;
    color:#fff;
}

.social-links a:nth-child(5):hover{
    background:#FF0000;
    color:#fff;
}

.video-container{
  max-width:315px;
  margin:auto;
}

.video-container iframe{
  width:100%;
  height:560px;
  border:none;
  border-radius:10px;
  }
iframe{
    width:100%;
    aspect-ratio:9/16;
    height:auto;
    border:none;
}
iframe{
    width:360px;
    height:640px;
    border:none;
  }
.video-card{
    width:100%;
    max-width:380px;
    margin:20px auto;
    background:#162544;
    border-radius:15px;
    padding:15px;
    text-align:center;
    box-shadow:0 0 10px rgba(0,255,255,.2);
}

.video-wrapper{
    width:100%;
    aspect-ratio:9/16;
    overflow:hidden;
    border-radius:12px;
}

.video-wrapper iframe{
    width:100%;
    height:100%;
    border:none;
    display:block;
      }
/* Portfolio Responsive */
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    justify-items:center;
}

.video-card{
    width:100%;
    max-width:360px;
    background:#13244a;
    border-radius:15px;
    padding:12px;
}

.video-card iframe{
    width:100%;
    aspect-ratio:9/16;
    border:none;
    border-radius:12px;
    display:block;
}

/* Mobile */
@media (max-width:768px){

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

    .video-card{
        max-width:340px;
        margin:auto;
    }

    .video-card iframe{
        height:605px;
    }
  }
/* Portfolio Videos */
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.portfolio-item{
    background:#13244a;
    border-radius:15px;
    padding:15px;
    text-align:center;
}

.portfolio-video{
    width:100%;
    aspect-ratio:9/16;
    overflow:hidden;
    border-radius:12px;
}

.portfolio-video iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

.facebook-video{
    max-width:360px;
    margin:auto;
}

@media (max-width:768px){

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

.portfolio-item{
max-width:360px;
margin:auto;
width:100%;
}

.portfolio-video{
height:640px;
aspect-ratio:auto;
}

.portfolio-video iframe{
height:100%;
}
}
.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
  }
