/* ================= RESET ================= */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Arial, sans-serif;
scroll-behavior: smooth;
}

html, body {
overflow-x: hidden;
background: #f6f8fb;
color: #222;
}

/* ================= NAVBAR ================= */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 50px;
background: #0F4C81;
color: white;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}

.logo {
font-size: 18px;
font-weight: bold;
display: flex;
gap: 10px;
align-items: center;
}

.nav-links {
list-style: none;
display: flex;
gap: 20px;
}

.nav-links li a {
color: white;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.nav-links li a:hover {
color: #F4B400;
}

.menu-toggle {
display: none;
font-size: 22px;
cursor: pointer;
}

/* MOBILE NAV */
.nav-links.active {
display: flex;
}

/* ================= HERO ================= */
.hero {
height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-video {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 1;
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: white;
padding: 20px;
}

.hero-content h1 {
font-size: 52px;
margin-bottom: 10px;
animation: fadeInUp 1s ease;
}

.hero-content p {
font-size: 18px;
margin-bottom: 20px;
}

.hero-buttons button {
padding: 12px 25px;
margin: 5px;
border: none;
cursor: pointer;
background: #F4B400;
color: black;
border-radius: 5px;
transition: 0.3s;
}

.hero-buttons button:hover {
background: white;
}

/* ================= NOTICE BAR ================= */
.notice-bar {
background: #F4B400;
color: black;
padding: 10px;
font-weight: bold;
}

/* ================= SECTION BASE ================= */
.section {
padding: 80px 10%;
text-align: center;
}

.section h2 {
font-size: 32px;
margin-bottom: 20px;
color: #0F4C81;
}

/* ================= CARDS ================= */
.card-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 30px;
}

.card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: 0.3s;
cursor: pointer;
}

.card:hover {
transform: translateY(-10px);
background: #f0f7ff;
}

/* ================= STATS ================= */
.stats {
display: flex;
justify-content: space-around;
background: #0F4C81;
color: white;
padding: 60px 10%;
flex-wrap: wrap;
gap: 20px;
text-align: center;
}

.stat-box h2 {
font-size: 42px;
}

/* ================= TESTIMONIALS ================= */
.testimonial-slider {
max-width: 600px;
margin: auto;
}

.testimonial {
display: none;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial.active {
display: block;
}

/* ================= GALLERY ================= */
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}

.gallery-grid img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
}

.gallery-grid img:hover {
transform: scale(1.05);
}

/* ================= CTA ================= */
.cta {
background: linear-gradient(135deg, #0F4C81, #1e88e5);
color: white;
padding: 80px 10%;
text-align: center;
}

.cta button {
margin-top: 20px;
padding: 12px 25px;
border: none;
background: #F4B400;
cursor: pointer;
border-radius: 5px;
}

/* ================= CONTACT ================= */
.contact-container {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}

form {
flex: 1;
min-width: 280px;
display: flex;
flex-direction: column;
gap: 10px;
}

form input,
form textarea {
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
}

form button {
background: #0F4C81;
color: white;
padding: 12px;
border: none;
cursor: pointer;
}

.map {
flex: 1;
min-width: 280px;
}

iframe {
width: 100%;
height: 250px;
border: none;
border-radius: 10px;
}

/* ================= WHATSAPP ================= */
.whatsapp {
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
color: white;
font-size: 24px;
padding: 15px;
border-radius: 50%;
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
z-index: 999;
}

/* ================= FOOTER ================= */
footer {
background: #111;
color: white;
text-align: center;
padding: 20px;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

/* NAV */
.nav-links {
display: none;
flex-direction: column;
background: #0F4C81;
position: absolute;
top: 60px;
right: 0;
width: 220px;
padding: 15px;
border-radius: 0 0 10px 10px;
}

.menu-toggle {
display: block;
}

/* HERO */
.hero-content h1 {
font-size: 28px;
}

.hero-content p {
font-size: 14px;
}

/* CARDS */
.card-container {
grid-template-columns: 1fr;
}

/* STATS */
.stats {
flex-direction: column;
}

/* CONTACT */
.contact-container {
flex-direction: column;
}

/* GALLERY */
.gallery-grid {
grid-template-columns: 1fr 1fr;
}

.gallery-grid img {
height: 150px;
}
}