/* ===== NAVBAR ===== */
.navbar {
  background-image: linear-gradient(
    to right,
    #dbeafe,
    #e6e6fa,
    #d8b4fe
);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1f2937;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.10);
}

/* Logo */
.logo a {
    text-decoration: none;
    color: #1f1f1f; /* dark text for contrast */
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2b2b2b;         /* prevents blue default + good contrast */
    font-weight: 600;
    font-size: 1rem;
    transition: 0.25s;
}

.nav-links a:hover {
    color: #1e3a8a;         /* same blue tone used in your cards */
    transform: translateY(-2px);
}


/* ===== PREMIUM SIMPLE HEADER ===== */
header {
    text-align: center;
    margin: 40px auto 50px;
    padding: 30px 20px;

    max-width: 900px;                     /* keeps it neat */
    background: #ffffff;                  /* clean white */
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);  /* soft premium shadow */
}

header h1 {
    font-size: 2.6rem;
    color: #1f2937;                       /* dark premium text */
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

header p {
    font-size: 1.15rem;
    color: #4b5563;                       /* smooth grey */
    margin-top: 0;
    line-height: 1.6;
}

/* ===== SEARCH BAR ===== */
.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#searchInput {
    width: 80%;
    max-width: 450px;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #2563eb;
    border-radius: 10px;
    outline: none;
    transition: 0.25s;
}

#searchInput:focus {
    border-color: #1e40af;
    box-shadow: 0 0 8px rgba(30, 64, 175, 0.4);
}

/* ===== CARD SECTION ===== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 30px;
}

.card {
    background-image: linear-gradient(to right, rgb(230, 230, 250), rgb(246, 243, 251));
    padding: 2rem;
    width: 250px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card h2 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.card p {
    color: #333;
    margin-bottom: 15px;
}

.card a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 6px;
    background-color: #2563eb;
    transition: 0.25s;
}

.card a:hover {
    background-color: #1e40af;
}


/* =====FOOTER ===== */
.footer-container {
    background: #ffffff;                 /* clean white */
    border-top: 1px solid #e5e7eb;       /* light border */
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* soft premium shadow */
}

.contact-section {
    padding: 15px;
    text-align: left;                    /* ★ left aligned */
}

.contact-section h3 {
    color: #1f2937;                      /* dark premium heading */
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-section p {
    color: #4b5563;                      /* smooth grey */
    margin-bottom: 8px;
}

.contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-section li {
    margin-bottom: 8px;
}

.contact-section a {
    text-decoration: none;
    color: #374151;                      /* ★ prevents blue link */
    transition: 0.2s;
}

.contact-section a:hover {
    color: #2563eb;                      /* soft blue hover */
    padding-left: 3px;                   /* tiny movement animation */
}

.contact-section.contact-right {
    text-align: left;                    /* ★ FIXED: left aligned */
    padding-right: 40px;
}

/* bottom small footer strip */
footer {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    padding: 12px 0;
    margin-top: 10px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .card-container { gap: 1.2rem; }
    .card { width: 200px; }
    #searchInput { width: 90%; }
}

@media (max-width: 480px) {
    .card { width: 160px; padding: 1rem; }
    #searchInput { width: 95%; font-size: 14px; }
}

body {
    background-color: rgb(255, 255, 255);
}

/* ===== SEO TEXT BOX ===== */
.seo-section {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, sans-serif;
    text-align: center;
}

.seo-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.seo-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}
