/* =========================
   BODY
========================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
}

/* =========================
   TITLE
========================= */
.main-title {
    font-size: 50px;
    color:#5bb5d6
}

.sub-title {
    font-size: 25px;
    color: #75d9de;
}

/* =========================
   IMAGE
========================= */
.banner {
    width: 80%;
    border-radius: 15px;
    margin: 20px;
}

/* =========================
   COMMON BOX STYLE
========================= */
.long-box, .card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    border-radius: 15px;
}

/* =========================
   LONG BOX (ABOUT SECTIONS)
========================= */
.long-box {
    width: 80%;
    margin: 30px auto;
    text-align: left;
}

/* =========================
   SECTION HEADINGS COLOR ONLY
========================= */
.long-box h2,
section > h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #e97fd7; /* gold/yellow for main headings */
}

.long-box p {
    text-align: justify;
    line-height: 1.8;
    font-size: 15px;
    margin-top: 10px;
}

/* =========================
   CARD CONTAINER
========================= */
.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* =========================
   CARD
========================= */
.card {
    min-width: 260px;
    max-width: 320px;
    transition: 0.4s;
}

/* =========================
   CARD TITLES COLOR ONLY
========================= */
.card h3 {
    color: #00e5ff; /* cyan/light blue for card items */
}

.card p {
    font-size: 14px;
    word-break: break-word;
    overflow-wrap: anywhere;
    color: #fff;
}

/* =========================
   LINKS
========================= */
.card a {
    color: #00e5ff;
    text-decoration: none;
    word-break: break-all;
}

.card a:hover {
    text-decoration: underline;
}

/* =========================
   HOVER EFFECT
========================= */
.card:hover {
    transform: translateY(-10px) scale(1.05);
}

/* =========================
   BUTTON
========================= */
.btn {
    display: inline-block; /* allows multiple buttons on same line if needed */
    margin: 10px 15px;     /* spacing between buttons */
    padding: 14px 35px;
    font-size: 18px;
    background: #0077b6;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none; /* removes underline */
    line-height: normal;
    text-align: center;
}

.btn:hover {
    background: #023e8a;
}
