body {
font-family: 'Poppins', sans-serif;
margin: 0;
background: url('assets/beach-bg.jpg') no-repeat center center fixed;
background-size: cover;
color: #222;
}

/* Header */

header {
text-align: center;
padding: 25px;
background: rgba(255,255,255,0.92);
box-shadow: 0 2px 10px rgba(0,0,0,0.15);
position: relative;
}

header h1 {
color: #0a3d62;
margin-bottom: 5px;
}

header a {
text-decoration: none;
color: inherit;
}

.tagline {
color: #555;
font-style: italic;
}

/* Top Buttons */

.top-buttons {
position: absolute;
right: 20px;
top: 20px;
}

.top-buttons button,
.page-btn {
margin-left: 10px;
padding: 10px 18px;
border: none;
border-radius: 8px;
background: #1e90ff;
color: white;
cursor: pointer;
font-weight: bold;
text-decoration: none;
display: inline-block;
}

.top-buttons button:hover,
.page-btn:hover {
background: #0a3d62;
}

/* Hero */

.hero {
text-align: center;
margin: 40px auto;
max-width: 1000px;
background: rgba(255,255,255,0.9);
padding: 50px 30px;
border-radius: 20px;
}

.hero h2 {
color: #0a3d62;
font-size: 2rem;
}

.hero p {
font-size: 1.1rem;
margin: 20px 0;
}

.hero-btn {
padding: 14px 28px;
border: none;
border-radius: 30px;
background: #28a745;
color: white;
font-size: 1rem;
cursor: pointer;
font-weight: bold;
text-decoration: none;
display: inline-block;
}

.hero-btn:hover {
background: #1f7d35;
}

/* Features */

.features {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
gap: 20px;
padding: 30px;
max-width: 1200px;
margin: auto;
}

.feature {
background: rgba(255,255,255,0.9);
padding: 25px;
border-radius: 15px;
text-align: center;
}

.feature h3 {
color: #0a3d62;
}

/* Cards */

.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 30px;
gap: 20px;
}

.card {
background: rgba(255,255,255,0.9);
padding: 40px;
border-radius: 15px;
cursor: pointer;
font-weight: bold;
text-align: center;
flex: 1 1 220px;
min-width: 220px;
transition: 0.3s;
}

.card:hover {
background: #1e90ff;
color: white;
transform: translateY(-5px);
}

/* Content Sections */

.about,
.testimonials,
.cta,
.page-card {
max-width: 1000px;
margin: 40px auto;
background: rgba(255,255,255,0.92);
padding: 40px;
border-radius: 20px;
}

.about h2,
.cta h2,
.page-card h2,
.page-card h3 {
color: #0a3d62;
}

/* Testimonials */

.testimonial-slider {
display: flex;
gap: 20px;
overflow-x: auto;
}

.testimonial {
min-width: 300px;
background: #f5f5f5;
padding: 20px;
border-radius: 10px;
}

/* Generic Page Layout */

.page-container {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
gap: 20px;
}

/* Forms */

.form-group {
margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 12px;
border-radius: 8px;
border: 1px solid #ccc;
box-sizing: border-box;
font-size: 1rem;
}

.success-message {
color: green;
font-weight: bold;
margin-top: 15px;
}

/* WhatsApp */

.whatsapp-chat{
width:65px;
position:fixed;
right:15px;
bottom:15px;
cursor:pointer;
z-index:9999;
background:white;
border-radius:50%;
padding:5px;
box-shadow:0 4px 12px rgba(0,0,0,0.25);
}

/* Footer */

footer {
background: rgba(255,255,255,0.92);
text-align: center;
padding: 20px;
margin-top: 40px;
}

/* Mobile */

@media(max-width:768px){

.top-buttons{
position: static;
margin-top: 15px;
}

.hero h2{
font-size:1.5rem;
}

.cards{
margin:20px;
}

.card{
min-width:100%;
}

.hero,
.about,
.testimonials,
.cta,
.page-card{
margin:20px;
padding:25px;
}

.whatsapp-chat{
width:60px;
right:10px;
bottom:10px;
}

}
/* Mobile Fixes */

html,
body{
overflow-x:hidden;
max-width:100%;
}

*{
box-sizing:border-box;
}

@media(max-width:768px){

.top-buttons{
display:flex;
flex-direction:column;
gap:10px;
align-items:center;
}

.top-buttons button{
margin:0;
width:220px;
}

}