
body {
    margin: 0;
    font-family: Arial, sans-serif;

    background-image: linear-gradient(
        rgba(255,255,255,0.7),
        rgba(255,255,255,0.7)
    ),
    url("images/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* HEADER */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
   background: rgba(255,255,255,0.7);
    padding: 25px 20px;   /* increased height */
    border-bottom: 1px solid #ddd;
}

.logo {
    position: absolute;
    left: 30px;
    width: 110px;
}
/* RIGHT SIDE PHOTO */
.photo {
    position: absolute;
    right: 30px;
    width: 110px; /* same size as logo */
    height: auto;
}
.logo,
.photo {
    width: 140px;   /* increased from 110px */
    border-radius: 6px;
    padding: 4px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.title {
    text-align: center;
}

.title h1 {
    margin: 0;
    font-size: 30px;   /* bigger */
    color: #2c3e50;
}

.title h2 {
    margin: 0;
    font-size: 24px;
    color: #666;
}

/* NAVBAR */
nav {
    background: #2c3e50;
    padding: 12px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    text-decoration: underline;
}
/* WELCOME SECTION */
.home-welcome {
    text-align: center;
    padding: 40px 20px;
}

.home-welcome h1 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.home-welcome p {
    color: #0f0e0e;
    font-size: 16px;
}

/* STRIP (simple professional line) */
.home-strip {
    text-align: center;
    margin: 30px 0;
    font-size: 16px;
    color:#0f0e0e;
    font-style: Arial, sans-serif;
    letter-spacing: 0.5px;
}


/* VALUES SECTION */
/* VALUES SECTION */
.home-values {
    display: flex;
    justify-content: center;   /* center align */
    gap: 20px;                 /* spacing */
    margin-top: 30px;
    flex-wrap: wrap;           /* responsive */
}

/* EACH BOX */
.value {
    flex: 0 0 380px;           /* 🔥 smaller fixed size */
    max-width: 380px;

    background: rgba(255,255,255,0.9);  /* visible */
    padding: 12px;

    border: 1px solid #ddd;
    text-align: center;
    border-radius: 8px;

    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* IMAGE */
.value img {
    display: block;
    margin: 0 auto 10px;

    width: 80px;               /* 🔥 reduced image size */
    height: 80px;
    object-fit: cover;

    border-radius: 50%;
    border: 2px solid #ddd;
}

/* TEXT */
.value h3 {
    color: #2c3e50;
    margin-bottom: 6px;
    font-size: 16px;           /* smaller text */
}

.value p {
    color: #555;
    line-height: 1.5;
    font-size: 13px;
}
.yt-box {
    width: 250px;
    margin: 30px auto;
    text-align: center;

    background: rgba(255,255,255,0.9);
    padding: 15px;

    border-radius: 8px;
    border: 1px solid #ddd;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* LINK STYLE */
.yt-box a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

/* HOVER EFFECT */
.yt-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* TITLE */
.about-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.about-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #0f0e0e;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.about-card {
   background: rgba(255,255,255,0.75);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);

    text-align: center;
}

/* IMAGE */
.about-card img {
    width: 70px;
    height: 70px;

    object-fit: contain;   /* 🔥 shows full image (no cutting) */
    background: #fff;      /* keeps clean background */

    border-radius: 50%;    /* circle */
    border: 1px solid #ddd;  /* lighter border (not bold) */

    padding: 6px;          /* space inside circle */
    margin-bottom: 10px;
}

/* HEADING */
.about-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;

    text-align: left;
    display: flex;
    align-items: flex-start;
}

/* BULLET FIX */
.about-card ul li::before {
    content: "•";
    position: absolute;
    left: 5px;
    top: 2px;
    font-size: 18px;
    color: #2c3e50;
}
 /* ===== PROGRAM PAGE ===== */

/* ===== PROGRAM PAGE FINAL ===== */
/* TITLE */
.program-title {
    text-align: center;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 10px;
}

.program-subtitle {
    text-align: center;
    color:#0f0e0e;
    margin-bottom: 40px;
}

/* ===== PROGRAM PAGE FINAL (REPLACE FULL SECTION) ===== */

.programs-container {
    width: 85%;
    margin: auto;
}

/* ROW LAYOUT */
.program-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
}

/* SECOND ROW CENTER */
.second-row {
    justify-content: center;
}

/* CARD */
.program-card {
    background: rgba(255, 255, 255, 0.95);  /* 🔥 light highlight */
    padding: 20px;
    border-radius: 12px;

    border: 1px solid rgba(0,0,0,0.08);

    text-align: center;
    cursor: pointer;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);  /* soft shadow */
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    background: #9e9b9b;  /* brighter on hover */
}
.program-card {
    background: linear-gradient(135deg, #ebedef, #f3f4f6);
}

/* SECOND ROW CARD SIZE */
.second-row .program-card {
    width: 30%;
}

/* IMAGE */
.program-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* HOVER */
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* ✅ PERFECT CENTER ALIGNMENT */
.program-card:nth-child(4) {
    grid-column: 1 / 3;
    justify-self: center;
}

.program-card:nth-child(5) {
    grid-column: 2 / 4;
    justify-self: center;
}
/* HOVER */
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}


/* IMAGE HOVER */
.image img:hover {
    transform: scale(1.08);
}

/* TEXT */
.text {
    flex: 1;
}

.text h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 20px;
}

.text p {
    color: #444;
    line-height: 1.7;
    font-size: 15px;
}

/* IMAGE */
.image {
    flex: 1;
    text-align: center;
}

.image img {
    width: 200px;
    height: 200px;
    object-fit: cover;

    border-radius: 50%; /* circle */
    border: 3px solid #000;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* IMAGE HOVER */
.image img:hover {
    transform: scale(1.08);
}
/* DETAIL PAGE */
.detail-container {
    width: 80%;
    margin: 40px auto;
}

/* TITLE */
.detail-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* TOP SECTION */
.detail-section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

/* IMAGE */
.detail-image {
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TEXT */
.detail-text {
    flex: 1;
}

/* BOX */
.detail-box {
   background: rgba(255,255,255,0.75);
    padding: 20px;
    margin-bottom: 20px;

    border-left: 4px solid #2c3e50;
    border-radius: 8px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* LIST */
.detail-box ul {
    padding-left: 20px;
}

/* BUTTON */
.back-btn {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: white;
    background: #2c3e50;
    padding: 10px 15px;
    border-radius: 5px;
}
.program-block {
    cursor: pointer;
}
/* PAGE CONTAINER */
.detail-container {
    width: 70%;
    margin: 50px auto;
}

/* TITLE */
.detail-title {
    text-align: center;
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* SECTION BOX */
.detail-box {
    position: relative;
    padding: 25px 30px;
    margin-bottom: 35px;

   background: rgba(255,255,255,0.75);
    border-radius: 10px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* HOVER EFFECT */
.detail-box:hover {
    transform: translateY(-5px);
}

/* SECTION HEADING */
.detail-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

/* UNDERLINE EFFECT */
.detail-box h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #2c3e50;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* PARAGRAPH */
.detail-box p {
    color: #555;
    line-height: 1.7;
}

/* MODERN POINT STYLE */
.point {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
}

/* CUSTOM BULLET */
.point::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-size: 20px;
}

/* BACK BUTTON */
.back-btn {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: white;
    background: #2c3e50;
    padding: 10px 18px;
    border-radius: 30px;
    transition: 0.3s;
}

.back-btn:hover {
    background: #1a252f;
}
/* CONTACT CARD */
.contact-card {
    width: 60%;
    margin: 40px auto;
   background: rgba(255,255,255,0.7);
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-card h2 {
    text-align: center;
    color: #2c3e50;
}

.contact-intro {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

/* ICON */
.icon {
    font-size: 22px;
}

/* TEXT */
.contact-item strong {
    color: #2c3e50;
}

.contact-item p {
    margin: 5px 0 0;
    color: #444;
}

/* FOOTER */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 40px;
}