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

body{
    background:#0a0a0a;
    color:white;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;

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

    padding: 15px 40px;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#00aaff;
}
.logo{
    font-size: 2rem;
}
nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

nav a:hover{
    color:#00aaff;
}

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

    max-width:1400px;
    width:95%;
    margin:auto;

    gap:80px;
    padding:80px 40px;
    min-height:85vh;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url("../images/studio.png");

    background-size:cover;
    background-position:center;
    border-radius:20px;
}

.hero-image img{
    width:700px;
    max-width:100%;
    border-radius:20px;
    box-shadow:0 0 30px rgba(0,191,255,.4);
}

.hero-content{
    flex:1;
    max-width:700px;
}

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

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    background:#00bfff;
    color:#000;
    padding:18px 40px;
    font-size:18px;
    font-weight:bold;
}

.btn2{
    border:2px solid #00bfff;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
}

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:60px;
}

.stat-box{
    background:#111827;
    padding:30px;
    border-radius:20px;
    width:250px;
    text-align:center;
}

.stat-box h2{
    color:#00bfff;
    font-size:45px;
}
.stat-card{
    width:240px;
    height:180px;
}

.stat-card h2{
    font-size:55px;
}

section{
    padding:80px 10%;
}

h2{
    text-align:center;
    margin-bottom:40px;
    color:#00aaff;
}

.services{
    text-align:center;
}

.service-box{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:20px;
    padding:25px;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(0,191,255,.4);
}

.about-gallery img{
    width:280px;
    height:220px;
    object-fit:cover;
}

.photo{
    height:220px;
    background:#111;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact{
    text-align:center;
}

.contact button{
    margin-top:15px;
    padding:12px 25px;
    background:#00aaff;
    border:none;
    border-radius:8px;
    color:white;
    cursor:pointer;
}

.footer{
    background:#000;
    padding:20px 10px;
    text-align:center;
    border-top:2px solid #00bfff;
}

.footer p{
    color:#ccc;
    font-size:14px;
    margin-bottom:10px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#00bfff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:white;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

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

body{
    background:linear-gradient(135deg,#050816,#0f172a);
    color:white;
    min-height:100vh;
    padding-top: 90px;
}

header{
    text-align:center;
    padding:30px;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
}

header h1{
    color:#00bfff;
    text-shadow:0 0 20px #00bfff;
}

.container,
.about-container,
.main-container{
    width:95%;
    max-width:1600px;
    margin:auto;
}

.about-card{
    width:100%;
    max-width:none;

    margin:auto;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);

    border-radius:20px;
    padding:50px;

    text-align:center;

    box-shadow:0 0 25px rgba(0,191,255,0.2);
}
.about-card p{
    font-size:20px;
    line-height:1.8;
    max-width:1100px;
    margin:auto;
}
.about-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:30px;
}

.about-gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
}
@media(max-width:768px){

.about-card{
    padding:25px;
}

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

.about-gallery img{
    height:220px;
}

}
.team{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:50px;
    flex-wrap:wrap;
}

.team-card{
    width:320px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,191,255,0.5);
}

.team-card h3{
    color:#00bfff;
    margin-bottom:10px;
}

.team-card p{
    font-size:20px;
    font-weight:600;
}
section{
    width:95%;
    max-width:1600px;
    margin:auto;
    padding:80px 20px;
}

.contact-section{
    min-height:100vh;
    padding:120px 10%;
    text-align:center;
}

.contact-section h1{
    font-size:60px;
    color:#00bfff;
    margin-bottom:10px;
}

.subtitle{
    color:#ccc;
    margin-bottom:50px;
}

.contact-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.contact-card{
    width:300px;
    background:#111827;
    padding:30px;
    border-radius:20px;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 20px rgba(0,191,255,.5);
}

.contact-card h3{
    color:#00bfff;
    margin-bottom:10px;
}

.contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:10px;
    background:#1f2937;
    color:white;
}

.contact-form textarea{
    height:150px;
}

.contact-form button{
    width:100%;
    padding:15px;
    border:none;
    background:#00bfff;
    color:white;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}
.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:white;
    padding:15px 25px;
    border-radius:50px;
    text-decoration:none;
}
.about-section{
    padding:120px 10%;
    text-align:center;
}

.about-section h1{
    color:#00bfff;
    font-size:50px;
    margin-bottom:40px;
}

.about-card{
    max-width:900px;
    margin:auto;
    background:#111827;
    padding:40px;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,191,255,.2);
}

.about-card p{
    font-size:20px;
    line-height:1.8;
}

.team-container{
    display:flex;
    justify-content:center;
    gap:30px;
    margin-top:50px;
    flex-wrap:wrap;
}

.team-card{
    width:350px;
    background:#111827;
    padding:30px;
    border-radius:20px;
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,191,255,.5);
}

.team-card h2{
    color:#00bfff;
    margin-bottom:15px;
}

.services-section{
    padding:120px 8%;
    text-align:center;
}

.services-section h1{
    font-size:55px;
    color:#00bfff;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#111827;
    padding:35px;
    border-radius:20px;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,191,255,0.5);
}

.icon{
    font-size:50px;
    margin-bottom:15px;
}

.service-card h3{
    color:#00bfff;
    margin-bottom:15px;
}

.service-card p{
    color:#d1d5db;
}
.packages-section{
    padding:120px 8%;
    text-align:center;
}

.packages-section h1{
    font-size:55px;
    color:#00bfff;
    margin-bottom:60px;
}

.packages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.package-card{
    background:#111827;
    padding:40px;
    border-radius:20px;
    position:relative;
    transition:0.4s;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,191,255,.5);
}

.featured{
    border:2px solid #00bfff;
}

.badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#00bfff;
    color:white;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
}

.price{
    font-size:50px;
    font-weight:bold;
    color:#00bfff;
    margin:20px 0;
}

.package-card ul{
    list-style:none;
    padding:0;
}

.package-card li{
    margin:12px 0;
    color:#d1d5db;
}

.package-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 25px;
    background:#00bfff;
    color:white;
    text-decoration:none;
    border-radius:50px;
}

.portfolio-section{
    padding:120px 8%;
    text-align:center;
}

.portfolio-section h1{
    color:#00bfff;
    font-size:55px;
    margin-bottom:50px;
}

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



.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.portfolio-card img{
    height:350px;
}

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

.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,.9));
    color:white;
}

.overlay h3{
    color:#00bfff;
}
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;

    background:rgba(0,0,0,0.9);
    backdrop-filter:blur(10px);

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

    padding:0 50px;
    z-index:1000;
}

.logo{
    color:#00bfff;
    font-size:42px;
    font-weight:bold;
}

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

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:18px;
    font-weight:500;
    transition:0.3s;
}

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

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

body{
    padding-top:80px;
}


/* ===== MOBILE MENU FIX ===== */

.menu-toggle{
    display:none;
    font-size:35px;
    color:#00bfff;
    cursor:pointer;
}
@media (max-width:768px){
    header{
        flex-direction:column;
        padding:15px;
        text-align:center;
    }

    .logo{
        font-size:2rem;
        margin-bottom:10px;
    }

    .menu-toggle{
        display:block;
        width:100%;
        text-align:center;
        margin:10px 0;
    }

    #navbar{
        display:none;
        width:100%;
    }

    #navbar.active{
        display:block;
    }

    #navbar ul{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        padding:15px 0;
    }

    #navbar ul li{
        list-style:none;
    }

    #navbar ul li a{
        display:block;
        width:180px;
        background:#111827;
        padding:12px;
        border-radius:15px;
        text-decoration:none;
        color:white;
        transition:0.3s;
    }

    #navbar ul li a:hover{
        background:#00bfff;
        color:black;
    }
}
#navbar ul{
    list-style:none;
}
header{
    position:relative;
}
@media (max-width:768px){

    header{
        position:relative;
        flex-direction:column;
        padding:15px;
        text-align:center;
    }

    .menu-toggle{
        display:block;
        width:100%;
        text-align:center;
        margin:10px 0;
    }

    #navbar{
        display:none;
        width:100%;
    }

    #navbar.active{
        display:block;
    }

    #navbar ul{
        list-style:none;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        padding:15px 0;
    }
}
@media (max-width:768px){

   .hero{
    min-height:100vh;

    background-image:
    linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.6)
    ),
    url("../images/wedding.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

}
/* Contact Form */
.contact-form{
    max-width:700px;
    margin:50px auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:none;
    border-radius:15px;
    background:#0b1830;
    color:white;
    font-size:16px;
    box-shadow:0 0 10px rgba(0,191,255,0.2);
}

.contact-form textarea{
    min-height:150px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    box-shadow:0 0 20px #00bfff;
}

.contact-form button{
    background:#00bfff;
    color:white;
    border:none;
    padding:18px;
    font-size:18px;
    font-weight:bold;
    border-radius:50px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px #00bfff;
}

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

.contact-form{
    width:90%;
}

}
.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    animation:slider 15s infinite;
    background-size:cover;
    background-position:center;
}

@keyframes slider{

    0%{
        background-image:
        linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
        url("images/team.jpg");
    }

    33%{
        background-image:
        linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
        url("images/prewedding.jpg");
    }

    66%{
        background-image:
        linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
        url("images/birthday.jpg");
    }

    100%{
        background-image:
        linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
        url("images/wedding.jpg");
    }
}

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

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap: 20px;
}
.review-card{
    background:#08152d;
    padding:25px;
    border-radius:15px;
    color:white;
    box-shadow:0 0 15px rgba(0,191,255,.3);
}

.review-card h4{
    color:#00bfff;
    margin-top:15px;
}
.review-card h4{
    color:#00bfff;
    margin-top:15px;
}
form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

form input,
form select,
form textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    background:#08152d;
    color:white;
}

form button{
    padding:15px;
    border:none;
    border-radius:10px;
    background:#00bfff;
    color:white;
    font-size:18px;
    cursor:pointer;
}

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

.map-section h2{
    color:#00bfff;
    margin-bottom:30px;
    font-size:2.5rem;
}

.map-container iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,191,255,.3);
}

.call-btn{
    position:fixed;
    bottom:100px;
    right:25px;

    width:65px;
    height:65px;

    background:#00bfff;
    color:white;

    border-radius:50%;

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

    font-size:30px;

    text-decoration:none;

    box-shadow:0 0 20px rgba(0,191,255,.6);

    z-index:999;
    transition:.3s;
}

.call-btn:hover{
    transform:scale(1.1);
}

@media(max-width:768px){

.hero{
    flex-direction:column;
    text-align:center;
    padding:100px 20px;
}

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

.hero-image img{
    width: 700px;;
}

}
.share-btn{
    background:#00bfff;
    color:black;
    border:none;
    padding:15px 30px;
    border-radius:50px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.share-btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px #00bfff;
}

.share-float{
    position:fixed;
    bottom:90px;
    left:20px;

    width:60px;
    height:60px;

    background:#00bfff;
    color:white;

    border-radius:50%;

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

    font-size:28px;
    text-decoration:none;

    box-shadow:0 0 20px rgba(0,191,255,0.6);

    z-index:999;
    transition:0.3s;
}

.share-float:hover{
    transform:scale(1.1);
}
.lightbox{
    display:none;

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.95);

    z-index:99999;

    justify-content:center;
    align-items:center;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
    box-shadow:0 0 30px rgba(0,191,255,0.5);
}

.close-lightbox{
    position:absolute;
    top:20px;
    right:30px;

    font-size:40px;
    color:white;

    cursor:pointer;
}
.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;

    width:100vw;
    height:100vh;

    background:rgba(0,0,0,0.98);

    justify-content:center;
    align-items:center;

    z-index:99999;
}

.lightbox img{
    width:auto;
    height:auto;

    max-width:98vw;
    max-height:98vh;

    object-fit:contain;

    border-radius:10px;
}

.close-lightbox{
    position:absolute;
    top:20px;
    right:30px;

    font-size:45px;
    color:white;

    cursor:pointer;
    z-index:100000;
}
.trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.trust-card{
    background:#111827;
    padding:25px;
    border-radius:15px;
    text-align:center;
    border:1px solid rgba(0,191,255,.2);
}
.cta{
    text-align:center;
    padding:80px 20px;
}

.cta p{
    margin:20px 0;
    font-size:18px;
}

.cta .hero-btn{
    display:inline-block;
    margin-top:20px;
}
.service-card{
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(0,191,255,.5);
}
.gallery-btn{
    text-align:center;
    margin-top:35px;
}

.gallery-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:260px;
    height:70px;

    background:#00bfff;
    color:white;
    text-decoration:none;

    border-radius:50px;
    font-size:22px;
    font-weight:600;

    transition:.3s;
}

.gallery-link:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(0,191,255,.5);
}
.developer-section{
    text-align:center;
    padding:60px 20px;
}

.developer-section img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #00bfff;
    box-shadow:0 0 20px rgba(0,191,255,.4);
}

.developer-section h2{
    color:#00bfff;
    margin:15px 0;
}

.developer-section p{
    color:#ccc;
    margin-bottom:20px;
}

.developer-section a{
    display:inline-block;
    padding:12px 25px;
    background:#00bfff;
    color:black;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}
.footer{
    margin-top:50px;
    padding:40px 20px;
    text-align:center;

    background:#081425;
    border-top:2px solid rgba(0,191,255,.2);
}

.footer-top h2{
    color:#00bfff;
    margin-bottom:10px;
}

.footer-top p{
    color:#ccc;
}

.footer-links{
    margin:25px 0;
}

.footer-links a{
    color:#00bfff;
    text-decoration:none;
    margin:0 15px;
    font-weight:600;
}

.footer-links a:hover{
    color:white;
}

.developer-credit{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;

    margin:25px 0;
}

.developer-credit img{
    width:60px;
    height:60px;
    border-radius:50%;
    border:2px solid #00bfff;
}

.verified{
    color:white;
    background:#0a66c2;
    border-radius:50%;
    padding:2px 6px;
    font-size:12px;
}

.footer-bottom{
    margin-top:20px;
    color:#aaa;
    font-size:14px;
}