/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding-left: 80px;
    padding-right: 80px;
}

/* ========== HERO SECTION ========== */
.hero {
    background-color: var(--sectionBgColor);
    padding: 0px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
    border-radius: var(--sectionRadius);
}

.tags {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.tag-combined {
    background: #E8F4FF;
    color: #1e88e5;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tag-text {
    color: #1e88e5;
}

.tag-dot {
    color: #1e88e5;
    font-size: 16px;
    font-weight: bold;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 .blue {
    color: #0066cc;
}

.hero-image {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.hero-image img {
    width: 100%;
    display: block;
    height: auto;
}

/* ========== STORY SECTION ========== */
.story-section {
    padding: 80px 20px;
    background: #fff;
    border-radius: var(--sectionRadius);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== QUOTE SECTION ========== */
.quote-section {
    background: rgba(190, 229, 255, 0.7);
    background-image: url(../../images/Highlights/images/section3Bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.quote-card {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 38px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 95%;
    background: #FFFFFF66;
    padding: 40px;
    border-radius: 32px;
}

.quote-image {
    border-radius: 22px;
    overflow: hidden;
    width: 310px;
    height: 421px;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quote-content {
    color: #0d3b5c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.quote-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #000000;
    font-weight: normal;
}

.quote-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #0a2540;
}

.quote-title {
    font-size: 16px;
    color: #000000;
}

/* ========== PILLARS SECTION ========== */
.pillars-section {
    padding: 80px 0;
    background: #ffffff;
    border-radius: var(--sectionRadius);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pillars-section h2 {
    text-align: center;
    font-size: 66px;
    margin-bottom: 40px;
    color: #000000;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pillar-card {
    background: #f0f4f8;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    margin-bottom: 20px;
}

.pillar-icon img {
    width: 70px;
    height: 70px;
}

.pillar-card h4 {
    font-size: 18px;
    color: #1a3a52;
    line-height: 1.4;
}

/* ========== SPEAKERS SECTION ========== */
.speakers-section {
    padding: 80px 0;
    background: #C5E5FC;
    border-radius: 24px;
    display: flex;
    align-items: center;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.speaker-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 0;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.speaker-image {
    width: 100%;
    height: 262px;
    margin: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 20px;
        border-radius: 32px !important;
}

.speaker-content {
    padding: 20px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.speaker-card h4 {
    font-size: 22px;
    margin: 0;
    color: #000000;
}

.speaker-title {
    font-size: 14px;
    color: #1e88e5;
    margin: 0;
    line-height: 1.4;
}

.speaker-divider {
    width: 100%;
    border-bottom: 1px solid #0000001A !important;
    margin: 8px 0;
}

.speaker-quote {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* ========== COMMITMENT SECTION ========== */
.commitment-section {
    padding: 80px 0;
    background: #F8FCFF;
    border-radius: 24px;
    display: flex;
    align-items: center;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.commitment-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.commitment-image img {
    width: 100%;
    display: block;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 80px 0;
    background: #FFFFFF;
    border-radius: 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.gallery-section .tags {
    margin-bottom: 30px;
}

.gallery-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    background: #F1F9FF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== UTILITY STYLES ========== */
ul {
    margin-bottom: 0px !important;
}

li a {
    text-decoration: none !important;
}

/* ========================================
   RESPONSIVE DESIGN - ALL DEVICES
   ======================================== */

/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
    .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .story-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image,
    .commitment-image {
        order: -1;
    }

    .quote-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .quote-image {
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .speaker-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .speaker-divider {
        margin: 15px auto;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .pillars-section h2 {
        font-size: 48px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .commitment-content h2 {
        font-size: 36px;
    }

    .story-content p,
    .commitment-content p {
        font-size: 17px;
    }

    .quote-text,
    .speaker-quote {
        font-size: 17px;
    }

    .pillar-card {
        padding: 30px 20px;
    }

    .pillar-icon img {
        width: 60px;
        height: 60px;
    }

    .pillar-card h4 {
        font-size: 16px;
    }
}

/* Tablet Portrait - 768px and below */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding: 60px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .tag-combined {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 8px 15px;
        gap: 8px;
        font-size: 14px;
    }

    .tag-text {
        font-size: 12px;
    }

    .tag-dot {
        font-size: 12px;
    }

    .story-section,
    .quote-section,
    .pillars-section,
    .speakers-section,
    .commitment-section,
    .gallery-section {
        padding: 60px 0;
        min-height: auto;
    }

    .story-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-content p,
    .commitment-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .quote-section {
        padding: 40px 20px;
    }

    .quote-card {
        padding: 30px 20px;
        gap: 25px;
    }

    .quote-image {
        width: 100%;
        max-width: 250px;
        height: 300px;
    }

    .quote-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .quote-content {
        gap: 20px;
    }

    .quote-content h3 {
        font-size: 20px;
    }

    .quote-title {
        font-size: 14px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillars-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .pillar-card {
        padding: 30px 20px;
    }

    .pillar-icon img {
        width: 60px;
        height: 60px;
    }

    .pillar-card h4 {
        font-size: 16px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .speaker-card {
        padding: 0;
    }

    .speaker-image {
        height: 250px;
        max-width: 100%;
    }

    .speaker-content {
        padding: 20px;
    }

    .speaker-content h4 {
        font-size: 20px;
    }

    .speaker-title {
        font-size: 13px;
    }

    .speaker-quote {
        font-size: 15px;
    }

    .commitment-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .gallery-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .header-info {
        flex-direction: column;
        gap: 10px;
    }

    .info {
        font-size: 13px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero {
        padding: 40px 0 40px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .tag-combined {
        padding: 6px 12px;
        gap: 6px;
        font-size: 12px;
    }

    .tag-text {
        font-size: 11px;
    }

    .tag-dot {
        font-size: 11px;
    }

    .story-section,
    .quote-section,
    .pillars-section,
    .speakers-section,
    .commitment-section,
    .gallery-section {
        padding: 40px 0;
    }

    .story-content p,
    .commitment-content p {
        font-size: 15px;
    }

    .quote-section {
        padding: 30px 15px;
    }

    .quote-card {
        padding: 20px 15px;
        gap: 20px;
    }

    .quote-image {
        max-width: 200px;
        height: 250px;
    }

    .quote-text {
        font-size: 15px;
    }

    .quote-content {
        gap: 15px;
    }

    .quote-content h3 {
        font-size: 18px;
    }

    .quote-title {
        font-size: 13px;
    }

    .pillars-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .commitment-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .gallery-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .pillar-card {
        padding: 25px 15px;
    }

    .pillar-icon img {
        width: 50px;
        height: 50px;
    }

    .pillar-card h4 {
        font-size: 15px;
    }

    .speaker-image {
        height: 220px;
    }

    .speaker-content {
        padding: 15px;
    }

    .speaker-content h4 {
        font-size: 18px;
    }

    .speaker-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .speaker-divider {
        margin: 8px 0;
    }

    .speaker-quote {
        font-size: 14px;
        line-height: 1.6;
    }

    .gallery-grid {
        gap: 10px;
    }

    .info {
        font-size: 12px;
    }

    .info i {
        font-size: 14px;
    }
}
