*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
scroll-behavior:smooth;
}

/* NAVBAR */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background:rgb(188, 178, 178);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: gray /* hover pe color change */
}

/* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* 🔥 MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background:rgb(188, 178, 178);
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    nav ul.active {
        display: flex;
    }
}

/* HERO */

.hero{
height:90vh;
background:url('images/bg2.jpeg') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:rgb(0, 0, 0);
}

.hero h1{
font-size:50px;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background: #ff6600;
color:white;
text-decoration:none;
border-radius:5px;
}

/* ABOUT */

.about {
    padding: 80px 20px;
    background: linear-gradient(to right, #f9f9f9, #f1f1f1);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* 🔥 Stats */
.about-stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.stat-box {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6600;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
}

/* Image */
.about-img img {
    width: 100%;
    max-width: 350px;   /* size control */
    height: 400px;      /* fixed height */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Hover effect */
.about-img img:hover {
    transform: scale(1.05);
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        flex-direction: column;
    }
}

/* SERVICES */

.services{
padding:80px 10%;
text-align:center;
background:#f5f5f5;
}

.service-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:30px;
color:#ff6600;
margin-bottom:10px;
}

/* GALLERY */

.gallery{
padding:80px 10%;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.gallery-grid img{
width:100%;
cursor:pointer;
border-radius:10px;
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* POPUP */

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
justify-content:center;
align-items:center;
}

.popup img{
max-width:80%;
}

.popup span{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

/* CONTACT */

.contact{
padding:80px 10%;
}

.contact-container{
display:flex;
gap:40px;
flex-wrap:wrap;
}

form{
flex:1;
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea{
padding:10px;
border:1px solid #ccc;
border-radius:5px;
}

button{
padding:12px;
background: #ff6600;
border:none;
color:white;
cursor:pointer;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}

.social i{
margin:10px;
font-size:20px;
cursor:pointer;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    z-index: 1000;

    /* Animation */
    animation: float 2s ease-in-out infinite, glow 2s infinite;

    transition: transform 0.3s;
}

/* Hover pe zoom */
.whatsapp-float:hover {
    transform: scale(1.2);
}

/* Jump / float animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Glow effect */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px #25D366;
    }
    50% {
        box-shadow: 0 0 10px #25D366, 0 0 15px #25D366;
    }
    100% {
        box-shadow: 0 0 5px #25D366;
    }
}

/* RESPONSIVE */

@media(max-width:768px){

.about-container{
flex-direction:column;
}

.hero h1{
font-size:35px;
}

}
.social a {
    color: white;
    margin: 0 10px;
    font-size: 22px;
    transition: 0.3s;
}

.social a:hover {
    color: #ff6600;
}