/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    height: 15vh;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.left img {
    width: 150px;
    height: auto;
    display: block;
}

/* Menu */
.right ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.right ul li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
   
    padding: 5px 0;
}

.right ul li a:hover {
    color: #e30a0a;
    font-weight: bold;
    border-bottom: 2px solid #e30a0a;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    body {
        padding-top: 130px;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .right ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .right ul li a {
        font-size: 16px;
    }

    .left img {
        width: 120px;
    }
}

@media (max-width: 480px) {

    body {
        padding-top: 150px;
    }

    .right ul {
        gap: 10px;
    }

    .right ul li a {
        font-size: 14px;
    }

    .left img {
        width: 100px;
    }
}



/* ================= BANNER ================= */
.ban {
    position: relative;
}

.img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.bname {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translateY(-50%);
    color: white;
}

.bname h1 {
    font-size: 55px;
    color: black;
}

.bname h1 b {
    color: orangered;
    font-size: 65px;
}

.bname p {
    font-size: 20px;
    color: #000;
    margin-left: 20px;
    font-weight: bold;
    
}

/* ================= PRODUCT CARDS ================= */
.con1 {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.card1,
.card2,
.card3 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
}

.card1 img,
.card2 img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    padding: 20px;
}

.card1 h1,
.card2 h1 {
    padding: 15px;
    font-size: 22px;
}

/* special double image card */
.card3 {
    width: 205%;
	height: 460px;
}

.card3 h1 {
    padding: 15px;
    font-size: 22px;
    
    color: #333;

}
.image-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
	
}

.image-box img {
    width: 40%;
	margin-top:-80px;
    object-fit: cover;
}

/* .image-box  .img1{
	
	width: 10%;
	padding: 90px;
	margin-top: -150px;
} */
/* ================= PHOTO GALLERY INTRO ================= */
.pro {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

.pro h1 {
    font-size: 36px;
    color: #222;
   
}

.pro .desc {
    max-width: 1050px;
    margin-left:50px ;
	margin-top: 20px;
    text-align: justify;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* ================= GALLERY ================= */
.gallery-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	background-color: #f8f9fa;
    gap: 20px;
    /* padding: 20px; */
}

.gallery-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* hidden images */
.more-photo {
    display: none;
}

/* button */
#viewMoreBtn {
    display: block;
	height: 7vh;
	width: 220px;
    /* margin: 50px auto; */
	margin-left:980px;
	margin-bottom: 15px;
    /* padding: 15px 40px; */
    font-size: 17px;
    border: none;
    border-radius: 10px;
    background: black;
	color: white;
    cursor: pointer;
}

#viewMoreBtn:hover {
    background: #fc2904;
}

/* ================= FOOTER ================= */
footer iframe {
    width: 100%;
    border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .con1 {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .right ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .img img {
        height: 300px;
    }

    .bname {
        left: 10%;
    }

    .bname h1 {
        font-size: 28px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .card1 img,
    .card2 img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .left img {
        width: 120px;
    }

    .bname p {
        font-size: 14px;
    }

    #viewMoreBtn {
        font-size: 16px;
        padding: 12px 25px;
    }
}
/* ------------------------------------------------------------ */

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5;
    padding-top: 90px; /* Space for fixed navbar */
}
/* -------------------------------------------------------------------- */
/* ================= TABLET ================= */
@media (max-width: 992px) {

    .con1 {
        grid-template-columns: 1fr;
    }

    .card3 {
        width: 100%;
        height: auto;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    #viewMoreBtn {
        margin: 20px auto;
        display: block;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    body {
        padding-top: 120px;
    }

    .nav {
        flex-direction: column;
        padding: 10px;
        height: auto;
    }

    .right ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .right ul li a {
        font-size: 16px;
    }

    .left img {
        width: 120px;
    }

    /* Banner */
    .img img {
        height: 250px;
    }

    .bname {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .bname h1 {
        font-size: 28px;
    }

    .bname h1 b {
        font-size: 34px;
    }

    .bname p {
        font-size: 14px;
        margin-left: 0;
    }

    /* Cards */
    .con1 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card1 img,
    .card2 img {
        height: 250px;
    }

    .card3 {
        width: 100%;
        height: auto;
    }

    .image-box {
        flex-direction: column;
        align-items: center;
    }

    .image-box img {
        width: 90%;
        margin-top: 0;
    }

    /* Gallery */
    .gallery-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .gallery-container img {
        height: 220px;
    }

    .pro .desc {
        margin: 15px auto;
        width: 90%;
        text-align: left;
        font-size: 16px;
    }

    /* Button */
    #viewMoreBtn {
        width: 200px;
        height: 50px;
        margin: 20px auto;
        display: block;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    body {
        padding-top: 140px;
    }

    .left img {
        width: 100px;
    }

    .right ul li a {
        font-size: 14px;
    }

    .bname h1 {
        font-size: 22px;
    }

    .bname h1 b {
        font-size: 28px;
    }

    .bname p {
        font-size: 12px;
    }

    .card1 h1,
    .card2 h1,
    .card3 h1 {
        font-size: 18px;
    }

    .gallery-container img {
        height: 180px;
    }
}

/* ------------------------------------------------------------
 */

 /* ================= TABLET ================= */
@media (max-width: 992px) {

    .con1 {
        grid-template-columns: 1fr;
    }

    .bname h1 {
        font-size: 42px;
    }

    .bname p {
        font-size: 18px;
    }

    .card3 {
        width: 100%;
    }

    .image-box {
        gap: 40px;
        justify-content: center;
    }

    .image-box img {
        width: 40%;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

   
    .nav {
        flex-direction: column;
        height: auto;
        /* padding: 10px; */
        gap: 15px;
    }

    .right ul {
        flex-direction: row;
        gap: 10px;
        text-align: center;
    }

    .left img {
        width: 120px;
    }

    .img img {
        height: 250px;
        
    }
    .con{
        margin-top: -100px;
    }
    .bname {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
        margin-bottom: 100px;
    }

    .bname h1 {
        font-size: 28px;
    }

    .bname p {
        font-size: 14px;
    }

    .con1 {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .card1 img,
    .card2 img {
        height: 250px;
        padding: 10px;
    }

    .card3 {
        width: 100%;
    }

    .image-box {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .image-box img {
        width: 90%;
    }

    .card1 h1,
    .card2 h1,
    .card3 h1 {
        font-size: 18px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .left img {
        width: 100px;
    }

    .right ul li a {
        font-size: 14px;
    }

    .bname h1 {
        font-size: 22px;
    }

    .bname p {
        font-size: 12px;
    }

    .card1 img,
    .card2 img {
        height: 200px;
    }

    .image-box img {
        width: 95%;
    }
}

.more-photo button {
   
    padding: 12px 25px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1100px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.more-photo button:hover {
    background:red;
    transform: translateY(-2px);
}