
        html, body {
            height: auto !important;
            overflow-x: hidden;
            overflow-y: auto !important;
        }

        .s-home {
            position: relative;
        }

        .s-intro {
            background: #ffffff;
            text-align: center;
        }

        .intro-heading {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .intro-text {
            font-size: 18px;
            max-width: 700px;
            margin: auto;
            line-height: 1.6;
        }


/* SECTION */
.photo-section{
    background:#000;
    padding:80px 20px;
    color:#fff;
}

/* MAIN CONTAINER */
.photo-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}


/* LEFT TEXT SIDE */
.photo-left{
    flex:0 0 35%;
}

.photo-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.3;
    color:#FFFFFF;
}

.photo-desc{
    font-size:16px;
    color:#ccc;
    line-height:1.7;
    margin-bottom:15px;
}


/* RIGHT GRID SIDE */
.photo-right{
    flex:0 0 65%;
}


/* INSTAGRAM STYLE GRID */
.photo-grid{
    display:flex;
    flex-wrap:wrap;
    margin:-5px; /* removes outer gap imbalance */
}


/* EXACT 3 PER ROW ALWAYS */
.photo-item{
    width:33.3333%;
    padding:5px;
    box-sizing:border-box;
}


/* IMAGE WRAPPER */
.photo-img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    border-radius:6px;
    transition:0.4s ease;
}


/* HOVER EFFECT */
.photo-img:hover{
    transform:scale(1.05);
    opacity:0.9;
}


/* RESPONSIVE */
@media (max-width:992px){

    .photo-container{
        flex-direction:column;
        gap:30px;
    }

    .photo-left,
    .photo-right{
        flex:0 0 100%;
        width:100%;
    }

    .photo-title{
        font-size:26px;
    }

}


@media (max-width:576px){

    .photo-section{
        padding:50px 15px;
    }

    .photo-title{
        font-size:22px;
    }

    .photo-desc{
        font-size:15px;
    }

}



    @media (max-width:768px){
    
    section h2{
    font-size:22px !important;
    line-height:1.6 !important;
    }
    
    section div[style*="font-size:80px"]{
    font-size:50px !important;
    }
    
    }

.about-section{
    background:#0b0b0b;
    padding:100px 20px;
    color:#fff;
}


/* CONTAINER */
.about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}


/* IMAGE BOX */
.about-image-box{
    position:relative;
    flex:0 0 50%;
}


/* IMAGE */
.about-image-box img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:12px;
}


/* TITLE OVERLAY */
.about-image-title{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    border-radius:0 0 12px 12px;
}

.about-image-title h2{
    margin:0;
    font-size:26px;
}

.about-image-title span{
    font-size:14px;
    color:#aaa;
}


/* CONTENT SIDE */
.about-content{
    flex:0 0 50%;
}


/* HEADING */
.about-heading{
    font-size:28px;
    margin-bottom:20px;
    line-height:1.4;
}


/* TEXT */
.about-text{
    color:#bbb;
    margin-bottom:15px;
    line-height:1.7;
}


/* QUOTE */
.about-quote{
    margin-top:30px;
    padding-left:20px;
    border-left:3px solid #fff;
}

.about-quote p{
    font-style:italic;
    color:#ddd;
    margin-bottom:10px;
}


/* SIGNATURE */
.about-signature{
    font-family:cursive;
    font-size:18px;
    color:#fff;
}


/* RESPONSIVE */
@media(max-width:992px){

    .about-container{
        flex-direction:column;
        gap:40px;
    }

    .about-image-box,
    .about-content{
        flex:100%;
    }

    .about-image-box img{
        height:450px;
    }

}


@media(max-width:600px){

    .about-section{
        padding:60px 15px;
    }

    .about-heading{
        font-size:22px;
    }

    .about-image-box img{
        height:350px;
    }

}


