body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#111;
}

/* HEADER */
.header{
    background:#0b1c2d;
    padding:10px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    height:55px;
}

.menu-icon{
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* SIDE MENU */
.side-menu{
    position:fixed;
    top:0;
    right:-260px;
    width:260px;
    height:100%;
    background:#0b1c2d;
    padding-top:60px;
    transition:0.4s;
    z-index:999;
}

.side-menu a{
    display:block;
    padding:15px 20px;
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid #1f2d3d;
}

.side-menu a:hover{
    background:#1abc9c;
}

.close-btn{
    position:absolute;
    top:10px;
    right:20px;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* SLIDER */
.slider{
    position:relative;
    width:100%;
}

.slide-img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}
/* OVERLAY BUTTONS (HORIZONTAL) */
.overlay-buttons{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    display:flex;
    justify-content:center;
    gap:10px;
    z-index:10;
    flex-wrap:nowrap;   /* wrap band */
    padding:0 10px;
}

.overlay-buttons a{
    background:#66cdd1;
    padding:10px 14px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    font-weight:bold;
    font-size:11px;
    text-align:center;
    white-space:nowrap;   /* text break na ho */
}
/* BUTTONS BELOW SLIDER */
.button-group{
    margin-top:15px;
    padding:20px 10px;
    background-image: url('img/button-background.avif');  /* apni image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}
.button-group a{
    background:#66cdd1;
    padding:14px 10px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    font-weight:bold;
    font-size:13px;
    width:45%;
    text-align:center;
}

/* LATEST BAR */
.latest-bar{
    background:#000;
    color:#fff;
    padding:8px;
    font-size:14px;
}

.latest-bar span{
    color:red;
    font-weight:bold;
}
/* INFO SECTION */
.info-section{
   
    padding:30px 15px;
    text-align:center;
    margin-top: 15px;
    
    background-image: url('img/photo-background.jpg');  /* apni image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.info-section h2{
    margin-bottom:10px;
    font-size:25px;
}

.info-section p{
    font-size:20px;
    margin-bottom:20px;
    color:#555;
}

/* PHOTO GRID */
/* PHOTO GRID */
.photo-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;   /* gap thoda bada */
}

/* BIG PHOTO BOX */
.photo-box{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    padding-bottom:10px;
}

.photo-box img{
    width:100%;
    height:200px;   /* height bada kiya */
    object-fit:cover;
}

.photo-box h4{
    margin:12px 0;
    font-size:15px;
    font-weight:bold;
}

       
     .gallery-right{
    background-image: url('img/photo-background.webp');  /* apni image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* MAIN FOOTER */
.main-footer{
    background:#063646;
    color:#fff;
    padding:40px 20px;
}

/* LOGO ROW */
.footer-logos{
    display:flex;
    justify-content:space-around;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.footer-logos img{
    height:40px;
    margin:10px 15px;
    opacity:0.9;
}

/* FOOTER CONTENT */
.footer-content{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    max-width:1200px;
    margin:auto;
}

.footer-col{
    width:30%;
    min-width:250px;
    margin-bottom:20px;
}

.footer-col h3{
    font-size:18px;
    margin-bottom:10px;
}

.footer-col p{
    font-size:14px;
    line-height:1.6;
}

.footer-col a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
}

.footer-col a:hover{
    text-decoration:underline;
}

/* COPYRIGHT */
.copyright{
    background:#e9e9e9;
    text-align:center;
    padding:15px;
    font-size:14px;
}