* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    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;
    border-bottom: 2px solid #e30a0a;
	font-weight: bold;
}
/* Banner */
.ban {
    position: relative;
}

.img img {
    width: 100%;
    height: 600px;
    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: red;
    font-size: 65px;
     font-family: Arial, Helvetica, sans-serif;
    

}
.bname p {
    font-size: 22px;
}

/* Cards */
.con1 {
    max-width: 1200px;
    margin: 30px auto;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.card1,
.card2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(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;
}


.card3 {
    width: 205%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-align: center;
}

.image-box {
    display: flex;
    width: 100%;
    gap: 250px;
}
.image-box .img1{
    margin-left:90px;
    padding: 20px;
}

.image-box img {
    width: 30%;
    height: auto;
    object-fit: cover;
    display: block;
}

.card3 h1 {
    padding: 15px;
    font-size: 22px;
    margin-bottom: 30px;
    color: #333;
}

/* --------------------------------------------------------------- */
/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

/* ================= TITLE SECTION ================= */
.pro {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

.pro h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #222;
}

.pro .desc {
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

/* ================= GALLERY ================= */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
}

.gallery-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* Alternative gallery style */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.item img:hover {
    transform: scale(1.05);
}

/* ================= BUTTON ================= */
#viewMoreBtn {
    display: block;
    margin: 40px auto;
    padding: 15px 40px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    background: #82cdf0;
    cursor: pointer;
    transition: 0.3s;
}

#viewMoreBtn:hover {
    background: #f797e5;
}




/* ================= TABLET ================= */
@media (max-width: 992px) {

    .gallery-container,
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .pro h1 {
        font-size: 28px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .gallery-container,
    .gallery {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .gallery-container img,
    .item img {
        height: 220px;
    }

    .pro .desc {
        font-size: 16px;
        padding: 0 10px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .pro h1 {
        font-size: 22px;
    }

    #viewMoreBtn {
        font-size: 16px;
        padding: 12px 25px;
    }
}


@media (max-width: 768px) {

    body {
        padding-top: 100px;
    }

.navbar{
	height: 100px;

}
.nav {
        height: auto;
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }

    .left img {
        width: 120px;
    }

    .right ul {
        flex-wrap: wrap;
        justify-content: center;
		flex-direction: row;
        gap: 12px;
    }

    .right ul li a {
        font-size: 16px;
    }


}