*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f4f8fb;
}

/* Navbar */
nav{
    background: #0077b6;
    color:white;
    padding:15px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
}

/* Hero Section */
.hero{
    text-align:center;
    padding:80px 20px;
    background:linear-gradient(rgba(0,0,0,.5),
    rgba(0,0,0,.5)),
    url("https://images.unsplash.com/photo-1584515933487-779824d29309?w=1200");
    background-size: cover;
    background-position:center;
    color:white;
    
}

.hero h1{
    font-size:40px;
    margin-bottom:15px;
}

.hero p{
    margin-bottom:20px;
}

.btn{
    background:#0077b6;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
}

/* Sections */
section{
    padding:50px 20px;
    text-align:center;
}

.services{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.card{
    background: lightblue;
    width:250px;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

footer{
    background:#0077b6;
    color:white;
    text-align:center;
    padding:15px;
}
.plus1{
    padding-left: 15px;
}
.payment{
    display:flex;
    align-items:center;
    gap:10px;
    margin:20px 0;
}

.payment img{
    width:40px;
    height:40px;
}

.payment span{
    font-size:18px;
    font-weight:bold;
}
.slider{
    width:100%;
    height:350px;
}

.slider img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:10px;
}
.contact{
    padding:60px 20px;
    background:#f5f9ff;
}

.contact h1{
    text-align:center;
    margin-bottom:30px;
    color:#0077b6;
}

.contact-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.contact-info,{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    width:350px;
}

.contact-info h3{
    margin-bottom:15px;
    color:#0077b6;
}

.contact-info p{
    margin:10px 0;
}

.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ccc;
    border-radius:5px;
}
.about1{
    color: #0077b6;
}
.p1{
    font-weight: bold;
}


