:root {
    --primary: #0056b3;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #00c2ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: -1px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    margin-left: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero */
.hero {
    padding: 120px 8%;
    text-align: center;
    background: radial-gradient(circle at top right, #f0f7ff, #ffffff);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-btn {
    width: 250px;
    margin: 0 auto;
}

/* General Sections */
.section-padding { padding: 80px 8%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }

/* Services Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h3 { color: var(--primary); margin-bottom: 15px; }
/* Pricing Section Styling */
.pricing-section {
    background-color: #f8fafc;
    padding: 100px 8%;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid #0056b3;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0056b3;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pkg-subtitle {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
}

.pkg-price span {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
}

.features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #334155;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✓";
    color: #0056b3;
    font-weight: 900;
    margin-right: 10px;
}

.btn {
    display: block;
    padding: 15px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover { background: #003d82; }
/* Styling for the logo image */
.logo img {
    height: 50px; /* Adjust this height to make your logo bigger or smaller */
    width: auto;  /* This keeps the logo from looking stretched */
    display: block;
}

/* Optional: Add a little hover effect to the logo */
.logo img:hover {
    opacity: 0.8;
    transition: 0.3s;
}
/* Contact Form */
.contact-container {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 1rem;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 8%;
    text-align: center;
}

@media (max-width: 768px) {
    .price-card.featured { transform: scale(1); }
}