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

/* HERO */
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* IMAGE FIT FULL SCREEN */
.hero-bg{
	position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;      /* IMPORTANT: NO CUT */
    object-position:center;

    background:#000;         /* fill empty area */

    z-index:1;
}

/* CONTENT */
.hero-content{
    position:relative;
    z-index:2;
    height:100%;
}

.hero-title{
    position:absolute;
    top:120px;
    left:9vw;
    transform:translateY(-40px); /* move up */
}


.hero-name{
    color:#7d86ff;              /* same blue tone */
    font-size:40px;            /* same size for both words */
    font-weight:700;
    line-height:1.1;
    text-transform:uppercase;  /* force CAPS */
    margin:0;
}


/* MENU */
.hero-menu{
    position:absolute;
    top:50vh;     /* responsive vertical */
    left:9vw;     /* same alignment as title */

    display:flex;
    flex-direction:column;
    gap:18px;
}


.hero-menu a{
    color:#fff;
    text-decoration:none;
    
    font-size:15px;
    position:relative;
    transition:0.3s ease;
}

/* LINE ANIMATION */
.hero-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#7d86ff;
    transition:0.3s;
}

.hero-menu a:hover{
    color:#7d86ff;
    transform:translateX(8px);
}

.hero-menu a:hover::after{
    width:100%;
}


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

    .hero-title{
        left:20px;
        top:50px;
    }

    .hero-menu{
        left:20px;
        bottom:100px;
    }
}
.home-btn{
    position:fixed;
    bottom:20px;
    left:20px;

    width:50px;
    height:50px;
    border-radius:50%;

    background:rgba(0,0,0,0.6);
    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.2);
    transition:0.3s;
    z-index:999;
}

.home-btn svg{
    width:22px;
    height:22px;
}

.home-btn:hover{
    background:#7d86ff;
    transform:scale(1.1);
    box-shadow:0 0 15px rgba(125,134,255,0.6);
}
                                                              /*service*/
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
   font-family: Arial, sans-serif;
}

/* HERO SECTION */
.svc-hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* BACKGROUND IMAGE */
.svc-bg{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;      /* IMPORTANT: NO CUT */
    object-position:center;

    background:#000;         /* fill empty area */

    z-index:1;

  
}

/* LEFT CONTENT */
.svc-left{
    position:absolute;
    top:30%;
    left:130px;
    z-index:2;

    color:#ffffff;
    max-width:500px;
}

/* HEADING */
.svc-left h2{
    font-size:32px;
    margin-bottom:25px;
    font-weight:600;
    
}

/* LIST */
.svc-left ul{
    list-style:none;
}

.svc-left li{
    margin:15px 0;

    line-height:1.6;
    
   
	 color:#fff;
    text-decoration:none;
   
    font-size:15px;
    position:relative;
    transition:0.3s ease;
}

/* HOVER EFFECT */
.svc-left li:hover{
    color:#7d86ff;
    transform:translateX(8px);
}

/* RESPONSIVE */
@media(max-width:1024px){
    .svc-left{
        left:50px;
    }
}

@media(max-width:768px){

    .svc-left{
        left:20px;
        top:25%;
        max-width:90%;
    }

    .svc-left h2{
        font-size:26px;
    }

    .svc-left li{
        font-size:16px;
    }
}

@media(max-width:480px){

    .svc-left{
        top:30%;
    }

    .svc-left h2{
        font-size:22px;
    }

    .svc-left li{
        font-size:14px;
    }
}
                                                         /*enquiry*/
/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
   font-family: Arial, sans-serif;
}

body{
    background:#000;
}

/* MAIN */
.enq-page{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* BACKGROUND */
.enq-bg{
   position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;      /* IMPORTANT: NO CUT */
    object-position:center;

    background:#000;         /* fill empty area */

    z-index:1;
}

/* WRAPPER */
.enq-wrapper{
    position:absolute;
    top:10%;
    left:130px;
    z-index:2;
    color:#fff;
     width:300px;   
	 background:rgba(0,0,0,0.3);
    padding:10px;
    border-radius:8px;
}

/* HEADING */
.enq-heading{
	font-size:28px;
    margin-bottom:20px;
    font-weight:600;
    
}

/* FORM */
.enq-form{
    display:flex;
    flex-direction:column;
}

/* FIELD */
.enq-field{
    display:flex;
    flex-direction:column;
    margin-bottom:15px;
}

/* LABEL */
.enq-field label{
    color:#ddd;
	
	margin-bottom:2px;
    font-size:13px;
}

/* INPUT */
.enq-field input,
.enq-field textarea{
   
    border-radius:4px;
    border:1px solid rgba(255,255,255,0.2);

    background:rgba(255,255,255,0.08);
    color:#fff;
    outline:none;
    transition:0.3s;
	
	 padding:5px 8px;   /* smaller height */
    font-size:13px;

}

/* PLACEHOLDER */
.enq-field input::placeholder,
.enq-field textarea::placeholder{
    color:rgba(255,255,255,0.6);
}

/* FOCUS */
.enq-field input:focus,
.enq-field textarea:focus{
    border:1px solid #7d86ff;
    box-shadow:0 0 8px rgba(125,134,255,0.5);
}

/* TEXTAREA */
.enq-field textarea{
    height:80px;
    resize:none;
}

/* BUTTON */
.enq-submit{
    margin-top:10px;
   
    border:none;
    border-radius:5px;

    background:#7d86ff;
    color:#fff;
    cursor:pointer;

    transition:0.3s;
	
	padding:6px;
    font-size:13px;
}

.enq-submit:hover{
    background:#4b54ff;
    box-shadow:0 0 10px rgba(125,134,255,0.6);
}

/* TOOLTIP */
.tooltip-box{
    position:fixed;
    padding:6px 10px;
    border-radius:5px;

    background:white;
    color:black;
    font-size:12px;

    white-space:nowrap;
    z-index:9999;

    pointer-events:none;

    opacity:0;
    transform:translateY(5px);
    transition:0.2s;

    border:1px solid rgba(255,255,255,0.2);
}

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

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

    .enq-wrapper{
        left:20px;
        top:20%;
        width:90%;
    }

    .enq-heading{
        font-size:22px;
    }
}

@media(max-width:480px){

    .enq-wrapper{
        top:25%;
    }

    .enq-field input,
    .enq-field textarea{
        font-size:13px;
    }
}
                                                      /*contact*/
/* RESET */
*{
   margin:0;
    padding:0;
    box-sizing:border-box;
   font-family: Arial, sans-serif;
}

body{
    background:#000;
}

/* MAIN */
.cnt-page{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* BACKGROUND */
.cnt-bg{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;      /* IMPORTANT: NO CUT */
    object-position:center;

    background:#000;         /* fill empty area */

    z-index:1;

}

/* WRAPPER */
.cnt-wrapper{
    position:absolute;
    top:37%;
    left:130px;
    z-index:2;
    color:#fff;
    max-width:450px;
}

/* TITLE */
.cnt-title{
    font-size:28px;
    margin-bottom:20px;
    font-weight:600;
    
}

/* ROW */
.cnt-row{
    display:flex;
    align-items:flex-start;
    margin-bottom:18px;
}

/* LABEL */
.cnt-label{
    width:90px;
    font-weight:600;
    color:#ddd;
}

/* COLON */
.cnt-colon{
    margin:0 10px;
}

/* VALUE */
.cnt-value{
    flex:1;
    color:#ccc;
    line-height:1.6;
}
/* ICON */
.cnt-icon{
    width:40px;
    font-size:18px;
    display:flex;
    align-items:center;
}

/* COLORS */
.cnt-icon.whatsapp i{
    color:#25D366; /* WhatsApp green */
}

.cnt-icon.phone i{
    color:#fff; /* blue */
}

.cnt-icon.email i{
    color:#ff4d4d; /* red */
}

/* ROW ALIGN */
.cnt-row{
    display:flex;
    align-items:center;
    margin-bottom:15px;
}

/* TEXT */
.cnt-value{
    color:#fff;
    margin-left:10px;
}

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

    .cnt-wrapper{
        left:20px;
        top:20%;
        max-width:90%;
    }

    .cnt-title{
        font-size:22px;
    }

    .cnt-label{
        width:80px;
        font-size:14px;
    }

    .cnt-value{
        font-size:14px;
    }
}

@media(max-width:480px){

    .cnt-wrapper{
        top:25%;
    }

    .cnt-row{
        flex-direction:column;
    }

    .cnt-colon{
        display:none;
    }

    .cnt-label{
        margin-bottom:5px;
    }
}
	                                                    /*artist*/			
/* RESET */
*{
   margin:0;
    padding:0;
    box-sizing:border-box;
   font-family: Arial, sans-serif;
}

body{
    background:#000;
	
}

/* MAIN */
.art-page{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
	padding-top:0%;
	
	
}

/* BACKGROUND */
.art-bg{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;      /* IMPORTANT: NO CUT */
    object-position:center;

    background:#000;         /* fill empty area */

    z-index:1;
}

/* WRAPPER */
.art-wrapper{
    position:relative;
    z-index:2;
    padding:80px 80px;
    color:#fff;
    max-width:500px;
    
    left:3vw;           /* keep same left spacing */
   

}

/* TITLE */
.art-title{
    font-size:30px;
    margin-bottom:20px;
    
}

/* IMAGE ROW */
.art-img-row{
    display:flex;
    gap:12px;
    margin-bottom:24px;
}

/* IMAGES */
.art-img-row img{
    width:120px;
    height:120px;
    object-fit:cover;
    border:3px solid #fff;
}

/* TEXT */
.art-text{
    margin-top:-20px;   /* move text up */
}

.art-text p{
    margin:15px 0;
    line-height:1.6;
	 color:#fff;
    text-decoration:none;
    
    font-size:14px;
    position:relative;
    transition:0.3s ease;
	
}

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

    .art-wrapper{
        padding:6vh 6vw;   /* same spacing */
		left:0vw;
    }

    .art-title{
        font-size:22px;
		
    }

    .art-text p{
        font-size:13px;
    }
}

/* =========================
   DESKTOP / LAPTOP FIX
========================= */
@media (min-width: 769px){

    html, body{
        height:100%;
        overflow:hidden !important; /* force no scroll */
    }

    .art-page{
        height:100vh;
        overflow:hidden;
    }

    .art-wrapper{
        height:100vh;
        display:flex;
        flex-direction:column;
			
    }

    .art-text{
    padding-right:10px;
	  max-height:60vh;
    }
	
}


@media(max-width:480px){

    .art-img-row{
        flex-direction:column;
    }

    .art-img-row img{
        width:100%;
        height:auto;
    }
}
												     /*gallery*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#000;
}

/* PAGE */
.g2-page{
    position:relative;
    min-height:100vh;
}

/* BG */
.g2-bg{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;      /* IMPORTANT: NO CUT */
    object-position:center;

    background:#000;         /* fill empty area */

    z-index:1;
}

/* WRAPPER */
.g2-wrapper{
    position:relative;
    z-index:2;
    padding:80px 100px; /* little more left spacing */
	left:35px;
}

/* TITLE */
.g2-title{
    color:#fff;
   font-size:28px;
    margin-bottom:20px;
    letter-spacing:2px;
}

/* =========================
   GRID FIX (MAIN CHANGE)
========================= */
.g2-grid{
    display:grid;
    grid-template-columns:repeat(3, 90px); /* fixed same layout */
    gap:30px;

    width:max-content;
}


/* =========================
   CARD SIZE FIX
========================= */
.g2-card{
    position:relative;
    display:block;
    overflow:hidden;

    width:90px;
    height:90px;
}

/* IMAGE */
.g2-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

/* OVERLAY */
.g2-overlay{
    position:absolute;
    top:0;
    left:0;
    width:90px;
    height:90px;

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

    background:rgba(0,0,0,0.4);
    color:#fff;

    transition:0.4s;
}

/* TITLE */
.g2-overlay h3{
    font-size:10px;
    margin-bottom:8px;
    letter-spacing:1px;
	 
}

/* BUTTON */
.g2-overlay span{
    border:1px solid #fff;
    padding:5px 12px;
    font-size:11px;
    letter-spacing:1px;
}
.g2-overlay span:hover{
	background:black;
}

/* HOVER EFFECT */
.g2-card:hover img{
    transform:scale(1.1);
}

.g2-card:hover .g2-overlay{
    background:rgba(0,0,0,0.6);
}

/* =========================
   RESPONSIVE
   ----------------*/
@media(max-width:768px){
    .g2-grid{
        grid-template-columns:repeat(2, 120px);
        gap:15px;
    } 
	.g2-wrapper{
        padding:40px 20px;   /* reduce side spacing */
        left:20px;              /* remove left shift */
    }

    .g2-card{
        width:120px;
        height:120px;
    }
}

@media(max-width:480px){
    .g2-grid{
        grid-template-columns:1fr;
        width:100%;
    }
    .g2-wrapper{
        padding:40px 20px;   /* reduce side spacing */
        left:1px;              /* remove left shift */
    }

    .g2-card{
        width:100%;
        height:180px;
    }
}

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

body{
    background:#000;
}

/* PAGE */
.pnt-page{
    position:relative;
    min-height:100vh;
}

/* BG */
.pnt-bg{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;      /* IMPORTANT: NO CUT */
    object-position:center;

    background:#000;         /* fill empty area */

    z-index:1;
    
}

/* BACK BUTTON */
.pnt-back-btn{
    position:fixed;
    top:20px;
    left:240px;
    z-index:3;

    color:#fff;
    text-decoration:none;
    border:1px solid #fff;
    padding:6px 12px;
    font-size:14px;

    transition:0.3s;
}

.pnt-back-btn:hover{
    background:#fff;
    color:#000;
}

/* WRAPPER */
.pnt-wrapper{
    position:relative;
    z-index:2;
    padding:80px 80px;
    left:55px;
    height:100vh;
    display:flex;
    flex-direction:column;
}



/* TITLE */
.pnt-title{
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
	
}

/* GRID */
.pnt-grid{
    display:grid;
    gap:15px;   /* increased a little more */

    justify-content:start;
    align-content:start;

    height:calc(100vh - 150px);
    overflow-y:auto;
    padding-right:10px;
    grid-template-columns:repeat(4, 1fr); /* 4 columns */
    max-width:400px;  
}

/* CARD */
.pnt-card{
    overflow:hidden;
    cursor:pointer;

}

/* IMAGE */
.pnt-card img{
    width:75px;
    height:75px;
    object-fit:cover;
    display:block;
    transition:0.4s;
	width:100%;
    aspect-ratio:1/1;   /* perfect square */

}

/* HOVER */
.pnt-card:hover img{
    transform:scale(1.1);
}


@media(max-width:768px){
    .pnt-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:480px){
    .pnt-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}



/* ======================
   LIGHTBOX
====================== */
.pnt-lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    z-index:999;
    justify-content:center;
    align-items:center;
}

/* SHOW */
.pnt-lightbox.active{
    display:flex;
}

/* IMAGE */
.pnt-light-img{
    max-width:80%;
    max-height:80%;
}

/* CLOSE */
.pnt-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* NAV BUTTONS */
.pnt-prev,
.pnt-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    font-size:40px;
    cursor:pointer;
    padding:10px;
}

.pnt-prev{ left:30px; }
.pnt-next{ right:30px; }



/* HIDE EXTRA IMAGES */
.more-img{
    display:none;
}

/* BUTTON WRAPPER */
.pnt-actions{
   position:fixed;
    top:20px;
    right:210px;   /* RIGHT SIDE */

    z-index:3;

    color:#fff;
    text-decoration:none;
    border:1px solid #fff;
    padding:6px 12px;
    font-size:14px;

    transition:0.3s;
}

/* BUTTON STYLE */
.pnt-btn{
     position:fixed;
    top:20px;
    left:220px;
    z-index:3;

    color:#fff;
    text-decoration:none;
    border:1px solid #fff;
    padding:6px 12px;
    font-size:14px;

    transition:0.3s;
}
.pnt-btn1{
    position:fixed;
    top:20px;
    left:136px;   /* adjust so it sits before pnt-btn */
    z-index:3;

    color:#fff;
    text-decoration:none;
    border:1px solid #fff;
    padding:6px 12px;
    font-size:14px;

    transition:0.3s;
}

/* HOVER */
.pnt-btn1:hover{
    background:#fff;
    color:#000;
}



/* HOVER */
.pnt-btn:hover{
    background:#fff;
    color:#000;
}
/* RESPONSIVE */
@media(max-width:768px){
    .pnt-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){

    .pnt-wrapper{
        padding:50px 15px;   /* reduce side space */
		left:10px;
    }

    .pnt-grid{
        grid-template-columns:repeat(3, 1fr); /* 3 images per row */
        gap:8px;  /* 🔥 reduce gap */
        height:auto;
        overflow:visible;
    }

    .pnt-card{
        width:100%;
        height:auto;
    }

    .pnt-card img{
        width:100%;
        height:100px; /* consistent size */
        object-fit:cover;
    }
	
	
}
