body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fb;
    color: #222;
}

.navbar {
    background: #0a2342;
    color: #fff;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}
.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}
.nav-logo i {
    color: #1e90ff;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-menu li a:hover {
    color: #1e90ff;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    background: linear-gradient(rgba(10, 35, 66, 0.8), rgba(30, 144, 255, 0.8)), url('images/backgorund.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 5rem 0 3rem 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-buttons .btn {
    margin: 0 0.5rem;
}

.btn {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: #1e90ff;
    color: #fff;
}
.btn-primary:hover {
    background: #0a2342;
    color: #1e90ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}
.btn-secondary {
    background: #fff;
    color: #0a2342;
    border: 2px solid #1e90ff;
}
.btn-secondary:hover {
    background: #1e90ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about, .services, .packages, .contact {
    background: #fff;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(10,35,66,0.07);
}
.about-content, .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}
.about-text, .about-info {
    flex: 1 1 300px;
}
.info-card {
    background: #f0f4fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    color: #0a2342;
}
.info-card i {
    color: #1e90ff;
    margin-right: 0.5rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card {
    background: #f0f4fa;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(10,35,66,0.05);
    margin-bottom: 1rem;
}
.service-card i {
    font-size: 2.5rem;
    color: #1e90ff;
    margin-bottom: 1rem;
}

.packages-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.package-card {
    background: #f0f4fa;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(10,35,66,0.05);
    margin-bottom: 1rem;
    border: 2px solid #0a2342;
}
.package-card.featured {
    border: 2px solid #1e90ff;
    background: #e6f0fa;
}
.package-card h3 {
    margin-bottom: 0.5rem;
    color: #0a2342;
}
.package-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 1rem;
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.package-card ul li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.contact-info {
    flex: 1 1 250px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.contact-item i {
    font-size: 1.5rem;
    color: #1e90ff;
}
.contact-form {
    flex: 1 1 300px;
    background: #f0f4fa;
    padding: 2rem;
    border-radius: 12px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}
.contact-form button {
    width: 100%;
}

.footer {
    background: #0a2342;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    margin-top: 2rem;
    border-radius: 16px 16px 0 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin: 0;
}

@media (max-width: 900px) {
    .nav-container, .container {
        padding: 0 1rem;
    }
    .about-content, .contact-content {
        flex-direction: column;
    }
    .services-grid, .packages-grid {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero {
        background-attachment: scroll;
        padding: 3rem 0 2rem 0;
    }
    .navbar {
        padding: 0.5rem 0;
    }
    .nav-logo {
        font-size: 1.2rem;
    }
    .logo-img {
        height: 32px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #0a2342;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        z-index: 99;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        margin: 0.5rem 0;
    }
    .nav-menu li a {
        display: block;
        padding: 0.5rem 2rem;
    }
    .hamburger {
        display: flex;
    }
    .container {
        padding: 1rem 0.5rem;
    }
    .footer {
        border-radius: 0;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
} 