*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* ===== COLORS ===== */
:root{
    --primary:#0F172A;
    --secondary:#2563EB;
    --accent:#22C55E;
    --light:#F8FAFC;
    --dark:#111827;
}

/* ===== CONTAINER ===== */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== HEADER ===== */
.header{
    background:var(--primary);
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h2{
    color:#fff;
}

.logo span{
    color:var(--secondary);
}

/* ===== NAV ===== */
.nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav a:hover{
    color:var(--accent);
}

.btn-nav{
    background:var(--secondary);
    padding:8px 15px;
    border-radius:5px;
}

.btn-nav:hover{
    background:var(--accent);
}

/* ===== MOBILE MENU ===== */
.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

/* ===== HERO ===== */
.hero{
    padding:80px 0;
    background:var(--light);
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.hero-text h1{
    font-size:40px;
    margin-bottom:15px;
}

.hero-text span{
    color:var(--secondary);
}

.btn-primary{
    background:var(--secondary);
    color:white;
    padding:10px 20px;
    border-radius:6px;
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
}

/* ===== SERVICES ===== */
.services{
    padding:70px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:white;
    padding:20px;
    border-radius:8px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.service-card img{
    width:60px;
    margin-bottom:10px;
}

/* ===== PORTFOLIO ===== */
.portfolio{
    padding:70px 0;
    background:var(--light);
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.portfolio-card img,
.portfolio-card video{
    width:100%;
    border-radius:10px;
    height:300px;
    object-fit:contain;
    background:#000;
}



/* ===== CTA ===== */
.cta{
    padding:60px 0;
    text-align:center;
}

.cta-box{
    background:var(--secondary);
    color:white;
    padding:40px;
    border-radius:10px;
}

/* ===== FOOTER ===== */
.footer{
    background:var(--primary);
    color:white;
    padding:50px 0 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer-col ul{
    list-style:none;
}

.footer-col a{
    color:#ccc;
    text-decoration:none;
}

.footer-col a:hover{
    color:white;
}

.footer-bottom{
    text-align:center;
    margin-top:20px;
    border-top:1px solid #333;
    padding-top:10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav{
        position:absolute;
        top:70px;
        left:-100%;
        width:100%;
        background:var(--primary);
        transition:.3s;
    }

    .nav ul{
        flex-direction:column;
        padding:20px;
    }

    .nav.active{
        left:0;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .services-grid,
    .portfolio-grid,
    .footer-container{
        grid-template-columns:1fr;
    }
}

body{
    font-family:'Poppins',sans-serif;
    line-height:1.6;
    background:#F8FAFC;
}

/* smooth look */
section{
    padding:80px 0;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.hero-text{
    flex:1;
}

.hero-image{
    flex:1;
    text-align:right;
}

.hero-image img{
    width:100%;
    max-width:450px;
}

/* mobile */
@media(max-width:768px){
    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-image{
        text-align:center;
        margin-top:20px;
    }

    .hero-text h1{
        font-size:28px;
    }
}

.service-card{
    background:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.service-card img{
    width:60px;
    margin-bottom:15px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* Tablet */
@media(max-width:992px){
    .services-grid,
    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:600px){
    .services-grid,
    .portfolio-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav{
        position:absolute;
        top:70px;
        left:-100%;
        width:100%;
        background:#0F172A;
        transition:0.3s;
    }

    .nav ul{
        flex-direction:column;
        padding:20px;
        gap:15px;
    }

    .nav.active{
        left:0;
    }
}

.btn-primary{
    background:#2563EB;
    color:white;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    display:inline-block;
    font-weight:500;
    transition:0.3s;
}

.btn-primary:hover{
    background:#1d4ed8;
    transform:scale(1.05);
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* tablet */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

/* mobile */
@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}

.hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.portfolio{
    padding:80px 0;
    background:#F8FAFC;
}

.portfolio-card{
    background:white;
    padding:15px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.portfolio-card img,
.portfolio-card video{
    width:100%;
    border-radius:10px;
    max-height:300px;
    object-fit:cover;
}

/* swiper arrows */
.swiper-button-next,
.swiper-button-prev{
    color:#2563EB;
}

/* pagination dots */
.swiper-pagination-bullet-active{
    background:#2563EB;
}

.portfolio-card img,
.portfolio-card video{
    width:100%;
    height:250px;
    object-fit:contain;
    background:#000;
}

/* ===== GALLERY ===== */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

/* ===== LIGHTBOX ===== */
.lightbox{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.lightbox img{
    max-width:90%;
    max-height:80%;
    border-radius:10px;
}

.lightbox .close{
    position:absolute;
    top:20px;
    right:40px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:500px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}

/* LIGHTBOX COMMON */
.lightbox img,
.lightbox video{
    border-radius:10px;
}

/* IMAGE POPUP (square) */
.lightbox img{
    max-width:600px;
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
}

/* VIDEO POPUP (reel style) */
.lightbox video{
    max-width:400px;
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;
}

/* ===== GALLERY GRID ===== */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item img,
.gallery-item video{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.gallery-item img:hover,
.gallery-item video:hover{
    transform:scale(1.05);
}

/* ===== LIGHTBOX ===== */
#lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

/* CLOSE BUTTON */
#closeBtn{
    position:absolute;
    top:20px;
    right:30px;
    color:white;
    font-size:35px;
    cursor:pointer;
}

/* IMAGE POPUP (1080x1080 style) */
#lightbox-img{
    display:none;
    max-width:500px;
    width:90%;
    aspect-ratio:1/1;
    object-fit:contain;
}

/* VIDEO POPUP (1080x1920 style) */
#lightbox-video{
    display:none;
    max-width:400px;
    width:90%;
    aspect-ratio:9/16;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-item img,
.gallery-item video{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
}

/* LIGHTBOX */
#lightbox{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  z-index:9999;
  justify-content:center;
  align-items:center;
}

/* CLOSE BUTTON */
#closeBtn{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:white;
  cursor:pointer;
}

/* IMAGE POPUP */
#lightbox-img{
  display:none;
  max-width:500px;
  width:90%;
  aspect-ratio:1/1;
  object-fit:contain;
}

/* VIDEO POPUP */
#lightbox-video{
  display:none;
  max-width:400px;
  width:90%;
  aspect-ratio:9/16;
}

.about-hero{
    background: linear-gradient(135deg, #2563EB, #1E3A8A);
    color:white;
    text-align:center;
    padding:100px 0 80px;
}

.about-hero h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.about-hero p{
    font-size:18px;
    opacity:0.9;
}


.about-grid{
    display:flex;
    gap:40px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:10px;
}

.mission{
    background:#F8FAFC;
    padding:60px 0;
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.mission-box{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.mission-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

.mission-box h3{
    color:#2563EB;
    margin-bottom:10px;
}


.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.process-step{
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.why-box{
    background:white;
    padding:20px;
    border-radius:10px;
    text-align:center;
}

/* responsive */
@media(max-width:768px){
    .about-grid{
        flex-direction:column;
    }

    .process-grid,
    .why-grid,
    .mission-grid{
        grid-template-columns:1fr;
    }
}

.about-text h2{
    font-size:32px;
    margin-bottom:15px;
    color:#111827;
}

.about-text p{
    font-size:16px;
    line-height:1.8;
    color:#4B5563;
}

.about-image img{
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.process-step{
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.process-step:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.process-step h4{
    color:#2563EB;
    margin-bottom:10px;
}

.why-box{
    background:white;
    padding:20px;
    border-radius:12px;
    text-align:center;
    font-weight:500;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.why-box:hover{
    background:#2563EB;
    color:white;
    transform:translateY(-5px);
}

.services-hero{
    background:linear-gradient(135deg,#2563EB,#1E3A8A);
    color:white;
    text-align:center;
    padding:100px 0;
}

/* SERVICE DETAIL */
.service-block{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:60px;
}

.service-block.reverse{
    flex-direction:row-reverse;
}

.service-img img{
    width:100%;
    max-width:400px;
}

.service-text h2{
    font-size:28px;
    margin-bottom:10px;
    color:#2563EB;
}

.service-text ul{
    margin-top:10px;
}

/* responsive */
@media(max-width:768px){
    .service-block{
        flex-direction:column;
        text-align:center;
    }
}

.services-hover-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* LEFT SIDE LIST */
.services-list{
    width:40%;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.service-item{
    background:#F3F4F6;
    padding:18px 20px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
    font-weight:500;
}

.service-item:hover{
    background:#2563EB;
    color:white;
    transform:translateX(5px);
}

/* RIGHT SIDE DETAIL */
.service-detail-box{
    width:60%;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    min-height:220px;
    transition:0.3s;
}

.service-detail-box h3{
    color:#2563EB;
    margin-bottom:10px;
}

.service-detail-box ul{
    margin-top:10px;
}

/* MOBILE */
@media(max-width:768px){
    .services-hover-wrapper{
        flex-direction:column;
    }

    .services-list,
    .service-detail-box{
        width:100%;
    }
}

.portfolio-hero{
    background:linear-gradient(135deg,#2563EB,#1E3A8A);
    color:white;
    text-align:center;
    padding:90px 0;
}

.filter-buttons{
    text-align:center;
    margin:40px 0;
}

.filter-buttons button{
    margin:5px;
    padding:10px 20px;
    border:none;
    background:#E5E7EB;
    border-radius:20px;
    cursor:pointer;
}

.filter-buttons button:hover{
    background:#2563EB;
    color:white;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.portfolio-item{
    background:white;
    padding:15px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.portfolio-item img,
.portfolio-item video{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:8px;
}

.case-study{
    background:#F8FAFC;
    padding:60px 0;
}

.case-grid{
    display:flex;
    gap:40px;
    align-items:center;
}

.case-img img{
    width:100%;
    max-width:400px;
}

.case-text h2{
    color:#2563EB;
}

@media(max-width:768px){
    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .case-grid{
        flex-direction:column;
        text-align:center;
    }
}

.contact-hero{
    background:linear-gradient(135deg,#2563EB,#1E3A8A);
    color:white;
    text-align:center;
    padding:80px 0;
}

.contact-grid{
    display:flex;
    gap:40px;
    padding:60px 0;
}

.contact-info{
    width:40%;
}

.contact-form{
    width:60%;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:8px;
}

.whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 20px;
    background:#25D366;
    color:white;
    border-radius:8px;
    text-decoration:none;
}

.success-msg{
    background:#D1FAE5;
    padding:10px;
    border-radius:8px;
    margin-bottom:15px;
}

@media(max-width:768px){
    .contact-grid{
        flex-direction:column;
    }
    .contact-info,
    .contact-form{
        width:100%;
    }
}

.blog-content {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.blog-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.blog-content h2 {
    font-size: 24px;
    margin-top: 25px;
    color: #2d6cdf;
}

.blog-content h3 {
    font-size: 20px;
    margin-top: 20px;
}

.blog-content p {
    margin-bottom: 15px;
}

.blog-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* =========================================================
   🌈 GLOBAL PREMIUM BACKGROUND (ALL PAGES)
========================================================= */
body{
    background: linear-gradient(135deg, #f8fbff 0%, #eaf2ff 40%, #f1f7ff 100%);
    position: relative;
    overflow-x: hidden;
}

/* floating gradient circles */
body::before{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
    top:-150px;
    left:-150px;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(30,58,138,0.15), transparent 70%);
    bottom:-120px;
    right:-120px;
    z-index:-1;
}


/* =========================================================
   ✨ HERO PREMIUM LOOK
========================================================= */
.hero{
    background: transparent !important;
    position: relative;
}

.hero-container{
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
}


/* =========================================================
   💎 GLASS CARD STYLE (services, portfolio, blog)
========================================================= */
.service-card,
.portfolio-card,
.blog-card,
.mission-box,
.process-step,
.why-box,
.service-detail-box,
.contact-form{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover,
.portfolio-card:hover,
.process-step:hover,
.why-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* =========================================================
   🎯 SECTION WRAPPER (soft card sections)
========================================================= */
.services,
.portfolio,
.case-study,
.mission{
    background: rgba(255,255,255,0.5);
    border-radius: 25px;
    margin: 40px auto;
    width: 95%;
    padding: 60px 30px;
    backdrop-filter: blur(10px);
}


/* =========================================================
   🚀 CTA PREMIUM
========================================================= */
.cta-box{
    background: linear-gradient(90deg,#1e3a8a,#3b82f6);
    color:white;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}


/* =========================================================
   🔵 BUTTON PREMIUM EFFECT
========================================================= */
.btn-primary{
    background: linear-gradient(90deg,#2563EB,#3b82f6);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

.btn-primary:hover{
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(37,99,235,0.6);
}


/* =========================================================
   🧠 NAVBAR GLASS EFFECT
========================================================= */
.header{
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* =========================================================
   📱 MOBILE OPTIMIZATION
========================================================= */
@media(max-width:768px){

    .hero-container{
        padding:25px;
    }

    .services,
    .portfolio,
    .mission,
    .case-study{
        padding:40px 20px;
    }

}

/* ===== MOBILE SERVICE ACCORDION ===== */
.service-mobile-detail{
    display:none;
    margin-top:10px;
    padding:12px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.service-item.active .service-mobile-detail{
    display:block;
}

/* desktop ला hide */
@media(min-width:769px){
    .service-mobile-detail{
        display:none !important;
    }
}
