/* Sections */
.section {
    max-width: 1150px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tagline {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 15px;
    animation: slideInRight 1s ease;
}

/* Buttons */
.btn-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    background: red;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(255, 68, 0, 0.4);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,212,255,0.6);
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.schedule-table th {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: #fff;
    padding: 12px 10px;
    font-weight: 600;
}

.schedule-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    transition: background 0.3s ease;
}

.schedule-table tr:hover td { background: rgba(0,212,255,0.1); }

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    color: #fff;
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
    box-shadow: 0 2px 8px rgba(67,160,71,0.3);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.faq-q { font-weight: 600; font-size: 15px; margin-bottom: 8px; color: var(--light); }
.faq-a { font-size: 14px; color: #ddd; display: none; margin-top: 6px; line-height: 1.5; }

/* Blog Posts */
.post-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}


.post-card {
    width: calc(33.333% - 12px);
}
@media (max-width: 768px) {
    .post-card {
        width: 100%;
    }
}

.full-blog-content-box {
    background-color: #ffffff !important;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    color: #000 !important;
    position: relative;
    z-index: 10;
}


.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,212,255,0.2);
}

.post-cat {
    font-size: 12px;
    color: var(--primary);
    padding: 4px 10px;
    background: rgba(0,212,255,0.2);
    border-radius: 12px;
    margin-bottom: 8px;
    display: inline-block;
}

.post-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--light); }
.post-excerpt { font-size: 13.5px; color: #ccc; line-height: 1.5; }

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.video-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,212,255,0.3);
}

.video-tag {
    font-size: 12px;
    color: #ccc;
    padding: 4px 8px;
    background: rgba(124,58,237,0.2);
    border-radius: 10px;
    margin-bottom: 8px;
    display: inline-block;
}

iframe {
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Reviews */
.rating-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15));
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.rating-score {
    font-size: 42px;
    font-weight: 700;
    color: #ffb300;
    text-shadow: 0 2px 8px rgba(255,179,0,0.3);
}

.rating-stars { color: #ffb300; font-size: 22px; }

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.review-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,212,255,0.2);
}

.review-name { font-weight: 600; font-size: 15px; }
.review-date { font-size: 12px; color: #aaa; }

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .section { margin: 20px 15px; padding: 20px; }
    .navbar { padding: 12px 20px; flex-direction: column; align-items: flex-start; }
    .nav-links { margin-top: 10px; }
    .rating-summary { flex-direction: column; text-align: center; }
    .faq-grid, .post-grid, .video-grid, .review-grid { grid-template-columns: 1fr; }
}
.review-card {
        background: linear-gradient(135deg, #7888cc 0%, #764ba2 100%);
        border-radius: 12px;
        padding: 20px;
        color: white;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .review-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
    }
    
    .rating-score {
        font-size: 48px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .review-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .fade-in-up {
        animation: fadeInUp 0.6s ease forwards;
    }

    .post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-cat {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;   /* DARK TITLE */
}

.post-excerpt {
    font-size: 14px;
    color: #222;   /* DARK EXCERPT */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 #blogDetailArea {
    background: transparent !important;
}

.full-blog-content-box {
    background: #ffffff !important;
    color: #000000 !important;
}

.full-blog-content-box p,
.full-blog-content-box h1,
.full-blog-content-box h2,
.full-blog-content-box h3,
.full-blog-content-box h4,
.full-blog-content-box span {
    color: #000 !important;
}
.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a3c8d;
    text-decoration: none;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    color: #0d47a1;
    transform: translateX(5px);
}
 .blog-container {
            max-width: 1200px;
            margin: 60px auto;
            display: flex;
            gap: 40px;
        }

        /* LEFT SIDE */
        .blog-main {
            flex: 2;
            background: #ffffff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* RIGHT SIDE */
        .blog-sidebar {
            flex: 1;
        }

        .sidebar-blog {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            background: #ffffff;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: 0.3s ease;
        }

        .sidebar-blog:hover {
            transform: translateY(-3px);
        }

        .sidebar-blog img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }

        .sidebar-blog a {
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            color: #111;
        }

        .sidebar-blog p {
            font-size: 12px;
            color: #777;
        }

        @media(max-width:768px) {
            .blog-container {
                flex-direction: column;
            }
        }

        .blog-main {
            color: #000 !important;
        }

        .blog-main p,
        .blog-main span,
        .blog-main div,
        .blog-main h1,
        .blog-main h2,
        .blog-main h3,
        .blog-main h4,
        .blog-main li {
            color: #000 !important;
        }
        

        /*new design*/
        /* Main Blog Layout */
.blog-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

/* Main Blog Section */
.blog-main {
    width: 70%;
}

/* Blog Content Images Auto Resize */
.blog-content img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    display: block;
    margin: 15px 0;
}

/* Main Blog Thumbnail Image */
.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Sidebar */
.blog-sidebar {
    width: 30%;
}

.sidebar-blog {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.sidebar-blog img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

/* Blog Title */
.blog-title {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 10px;
}
/* ---- BLOG PAGE FINAL FIXED CSS ---- */

/* Blog layout */
.blog-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

/* Left Side */
.blog-main {
    width: 70%;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Right Side */
.blog-sidebar {
    width: 30%;
}

/* Blog Content Images Auto Resize */
.blog-content img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
    display: block;
    margin: 15px 0;
}

/* Blog Featured Image */
.blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Right Sidebar Blog */
.sidebar-blog {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.sidebar-blog:hover {
    transform: translateY(-3px);
}

.sidebar-blog img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
    }

    .blog-main,
    .blog-sidebar {
        width: 100%;
    }
}
 .ssb-video-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #1f2d1f, #2e3b2e);
            color: #fff;
        }

        .body {
            background-color: white;
        }

        .video-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .video-header h2 {
            font-size: 32px;
            font-weight: 700;
        }

        .video-header p {
            margin-top: 10px;
            color: #ccc;
        }

        .yt-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background: #ff0000;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 14px;
            transition: 0.3s ease;
        }

        .yt-btn:hover {
            background: #cc0000;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .video-card {
            background: #ffffff;
            color: #000;
            border-radius: 12px;
            padding: 15px;
            position: relative;
            transition: 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .video-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #0d6efd;
            color: #fff;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 20px;
        }

        .video-frame iframe {
            width: 100%;
            height: 190px;
            border-radius: 8px;
        }

        .video-title {
            margin-top: 10px;
            font-weight: 600;
            font-size: 14px;
        }

        .scroll-down-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 10px 22px;
            background: #0d6efd;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 14px;
            transition: 0.3s ease;
        }

        .scroll-down-btn:hover {
            background: #084298;
            transform: translateY(3px);
        }

        .video-item {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .video-item[style*="block"] {
            opacity: 1;
        }

        .btn-btn {
            text-decoration: none !important;
            color: #fff;
        }

        .btn-btn:hover {
            text-decoration: none !important;
            color: #fff;
        }

        .youtube-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 22px;
            background: #FF0000;
            color: #fff;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s ease;
            font-size: 15px;
        }

        .youtube-btn i {
            font-size: 20px;
        }

        .youtube-btn:hover {
            background: #cc0000;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
           /* Section Base */
.director-advice {
    padding: 70px 0;
    background: #ffffff; /* Clean white */
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #012D54;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #F9B233;
    display: block;
    margin: 10px auto 0;
    border-radius: 20px;
}

/* Two Column Layout */
.advice-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
}

.advice-text {
    width: 60%;
}

.advice-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.advice-img {
    width: 40%;
}

.advice-img img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0px 3px 14px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* Methodology Box */
.method-box {
    margin-top: 40px;
    padding: 35px;
    background: #fafafa; /* lighter box */
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.method-box ul {
    list-style: none;
    padding: 0;
}

.method-box ul li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #222;
    font-weight: 500;
}

.method-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: #F9B233; /* gold tick */
    font-size: 20px;
    font-weight: bold;
}

/* Spacing */
.mt-60 {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 992px) {
    .advice-wrapper {
        flex-direction: column;
    }
    .advice-text, .advice-img {
        width: 100%;
    }
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.day-card {
  background: #ffffff;
  border-left: 5px solid #00b894;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.day-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.day-card h3 {
  color: #0f3057;
  margin-bottom: 12px;
  font-size: 18px;
}

.day-card ul {
  padding-left: 18px;
}

.day-card ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}