/* ===== RESET ===== */


/* ===== HERO ===== */
.conf-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url("../images/7.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 130px 20px;
    color: white;
}

.hero-content h1 {
    font-size: 38px;
    max-width: 900px;
    margin: auto;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section.alt {
    background: #f4faff;
}

.section-title {
    font-size: 32px;
    color: #005b7f;
    margin-bottom: 20px;
}

.section-text {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

/* ===== ORGANIZING COMMITTEE ===== */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.committee-card {
    background: white;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    transition: .3s;
}

.committee-card:hover {
    transform: translateY(-5px);
}

/* ===== REVIEW COMMITTEE ===== */
.review-list {
    list-style: none;
    font-size: 18px;
    max-width: 600px;
    margin: auto;
    text-align: left;
}

.review-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8;
}

/* ===== IMPORTANT DATES ===== */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: auto;
}

.date-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.date-card h3 {
    color: #005b7f;
    margin-bottom: 8px;
}

/* ===== PROCESS ===== */
.process-box {
    max-width: 850px;
    margin: auto;
    text-align: left;
}

.process-box h3 {
    color: #005b7f;
    margin: 15px 0 5px;
}

.process-box p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* ===== TRACKS ===== */
.track-list {
    max-width: 850px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.track-list span {
    background: white;
    padding: 10px 18px;
    border-radius: 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
    font-size: 15px;
    color: #005b7f;
}

/* ===== CONTACT CTA ===== */
/* ============================================================
   NEW CONTACT INFORMATION DESIGN (NO CARDS)
=============================================================== */

.contact-section-new {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.contact-email {
    font-size: 18px;
    color: #444;
    margin-bottom: 35px;
}

/* 2-column layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    text-align: left;
}

/* subtitles */
.contact-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #005b7f;
    margin-bottom: 20px;
    border-left: 4px solid #0078b5;
    padding-left: 10px;
}

/* contact items */
.contact-item {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

/* committee list */
.committee-list-right {
    list-style: none;
    padding: 0;
}

.committee-list-right li {
    font-size: 17px;
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
}

.committee-list-right li::before {
    content: "•";
    margin-right: 10px;
    font-size: 22px;
    color: #0078b5;
}

/* responsive */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}


/* ===== OBJECTIVES SECTION ===== */

.objective-list {
    max-width: 850px;
    margin: auto;
    margin-top: 20px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.objective-item .bullet {
    width: 12px;
    height: 12px;
    background: #0078b5;
    border-radius: 50%;
    margin-top: 6px;
    margin-right: 12px;
    flex-shrink: 0;
}

.objective-item p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* =======================================================
   AREA OF THRUST – PREMIUM CARD STYLE + PERFECT ALIGNMENT
========================================================= */

.area-thrust-section {
    background: #f4faff;
    padding: 60px 20px;
    text-align: center;
}

.area-thrust-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #005b7f;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Wrapper for all tracks */
.track-list-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Track Card Style */
.track-box {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    transition: 0.3s ease-in-out;
    border-left: 6px solid #0078b5;
}

.track-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Track Title */
.track-title {
    font-size: 24px;
    font-weight: 700;
    color: #003d57;
    margin-bottom: 20px;
    text-align: center;
}

/* UL Styling */
.track-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Bullet & Text */
.track-ul li {
    font-size: 17px;
    color: #333;
    padding: 3px 0;
    line-height: 1.6;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    transition: 0.2s ease-in-out;
}

/* Attractive Professional Bullet */
.track-ul li::before {
    content: "●";
    color: #0078b5;
    font-size: 14px;
    font-weight: bold;
    margin-right: 12px;
    margin-top: 4px;
}

/* Hover */
.track-ul li:hover {
    color: #005b7f;
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .section-title {
        font-size: 28px;
    }

    .track-box {
        padding: 25px 20px;
    }

    .track-title {
        font-size: 20px;
    }

    .track-ul li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .area-thrust-section {
        padding: 45px 10px;
    }

    .track-box {
        padding: 20px 18px;
        border-radius: 12px;
    }
}

/* ======================================================
   ADDITIONAL COMMITTEE SECTION
====================================================== */

.committee-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card Style */
.committee-card2 {
    background: white;
    padding: 22px 25px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
    border-left: 5px solid #0078b5;
}

.committee-card2:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* Subtitle */
.committee-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #005b7f;
    margin-bottom: 15px;
    text-align: left;
}

/* List inside card */
.committee-card2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.committee-card2 ul li {
    font-size: 16px;
    color: #333;
    padding: 6px 0;

    display: flex;
    align-items: center;
}

/* bullet style */
.committee-card2 ul li::before {
    content: "•";
    font-size: 22px;
    color: #0078b5;
    margin-right: 10px;
}

/* responsive */
@media (max-width: 480px) {
    .committee-subtitle {
        font-size: 18px;
    }
}


/* ======================================================
   REGISTRATION FEE – MODERN PREMIUM DESIGN
====================================================== */

.registration-section {
    padding-bottom: 80px;
}

/* Grid */
.fee-grid {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

/* Cards */
.fee-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0 0 25px 0;
    text-align: center;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease;
    overflow: hidden;
}

/* Gradient Top Header */
.fee-card h3 {
    background: linear-gradient(135deg, #0078b5, #005b8a);
    color: white;
    padding: 18px 10px;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    border-radius: 18px 18px 0 0;
}

/* Amount */
.fee-amount {
    font-size: 25px;
    font-weight: 500;
    color: #222;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Hover Effect */
.fee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

/* Small Text Under Price (Optional Note) */
.fee-note {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .fee-amount {
        font-size: 28px;
    }

    .fee-card h3 {
        font-size: 16px;
    }
}