/*========================================================================
                              INDEX PAGE 
========================================================================*/

body,
html {
    margin: 0;
    padding: 0;
}

app-header-logo h1 {
    background-image: url(../../images/sgr5.png) !important;
}

app-home .jumbotron-fluid {
    background-image: url(../../images/slider.jpg);
}

@media (max-width: 768px) {
    app-home .jumbotron-fluid {
        background-image: url(../../images/sliderSmall.png);
    }
}

app-home-presentation .picture.picto-award {
    background-image: url("../../images/1.jpg");
}

app-home-presentation .picture.picto-user {
    background-image: url(../../images/2.jpg);
}

html {
    scroll-behavior: smooth;
}




/*========================================================================
                              ABOUT US PAGE 
========================================================================*/
:root {
    --primary-color: #2B2D73;
    --primary-dark: #1f2052;
    --text-color: #555;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --section-padding: 80px 0;
    --card-padding: 40px;
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.about-hero {
    position: relative;
    background-image: url('../../images/slider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero .subtitle {
    font-size: 1.25rem;
    margin-top: 10px;
    font-weight: 500;
}

.about-hero .tagline {
    font-size: 1rem;
    margin-top: 5px;
    font-style: italic;
    opacity: 0.9;
}


/* Section Title */
/* .section-title {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
} */

/* .section-title::after {
   
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
} */

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Standard Card Style */
.standard-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.standard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 45, 115, 0.15);
}

/* Standard Icon Container */
.standard-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
}

.standard-icon i {
    font-size: 2rem;
    color: white;
}

/* ========================================
   BACKGROUND SECTION
   ======================================== */
.background-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.background-content {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
    margin-top: 40px;
}

.background-content p {
    margin-bottom: 25px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    margin-top: 40px;
}

.highlight-box h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ========================================
   VISION & MISSION SECTION
   ======================================== */
.vision-mission-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.vision-card,
.mission-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
    text-align: center;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 45, 115, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vision-card h3,
.mission-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vision-card p,
.mission-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ========================================
   CORE SERVICES SECTION
   ======================================== */
.core-services-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 45, 115, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.learn-more i {
    margin-left: 8px;
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* ========================================
   THREE PILLARS SECTION
   ======================================== */
.pillars-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.pillars-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 60px;
}

.pillar-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 45, 115, 0.15);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
}

.pillar-icon i {
    font-size: 2.5rem;
    color: white;
}

.pillar-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pillar-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ========================================
   BRAND POSITIONING SECTION
   ======================================== */
.positioning-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.positioning-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.positioning-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 25px;
}

.tagline-large {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

.core-values-grid {
    /* This custom grid now takes full control, overriding Bootstrap's row/col behavior */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* .value-card {
    text-align: center;
    padding: var(--card-padding) 30px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
} */

/* .value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 45, 115, 0.1);
} */

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-padding);
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43, 45, 115, 0.4);
    text-decoration: none;
}

.btn-cta i {
    margin-left: 10px;
    transition: var(--transition);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.home-page .max-w-800 {
    max-width: 1000px;
    /* Overrides style.css 800px for home only */
}

.home-page .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.home-page .mb-md {
    margin-bottom: var(--spacing-md);
}

.home-page .display-inline-block {
    display: inline-block;
}

.home-page .mt-md {
    margin-top: var(--spacing-md);
}

.home-page .mt-sm {
    margin-top: 10px;
}

.home-page .mt-xxl {
    margin-top: 120px;
}



/* ========================================
       HOME PAGE STYLES (SCOPED)
       ======================================== */


/* --- Hero Section --- */
.home-page .hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.home-page .hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-page .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 0.2s cubic-bezier(0, 1, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-70%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #D4AF37;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .slider-indicators {
        bottom: 25px !important;
        gap: 10px !important;
    }

    .slider-dot {
        width: 8px !important;
        height: 8px !important;
    }
}


.home-page .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 1.5s ease-in-out, visibility 0s;
}

.home-page .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    transform: scale(1.15);
    will-change: transform;
    z-index: 0;
}

.home-page .hero-slide.active .hero-bg-img {
    animation: kenBurnsZoomOut 15s linear forwards;
}

.home-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 45, 115, 0.4), rgba(5, 6, 20, 0.7));
    z-index: 1;
}

/* --- Hero Custom Layout (Logo+Text) --- */
.home-page .hero-custom-slide-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 60px;
    /* Offset for header */
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-page .hero-custom-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.home-page .hero-sgr-logo-large {
    width: clamp(180px, 25vw, 320px);
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
}

.home-page .hero-logo-shadow {
    position: absolute;
    bottom: 5px;
    width: 70%;
    height: 25px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    filter: blur(15px);
    z-index: 1;
}


.home-page .hero-text-container {
    text-align: left;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-page .hero-text-container h1 {
    opacity: 0;
    transform: translateX(-50px);
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.home-page .hero-text-container h2 {
    opacity: 0;
    transform: translateX(-50px);
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 4px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}


/* --- Homepage Shared Section Layout --- */
.home-page .row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.home-page .align-items-center {
    align-items: center;
}

.home-page .col-text,
.home-page .col-image {
    flex: 1;
    min-width: 300px;
}

.home-page .section-title:not(.cta-card .section-title):not(.cta-banner .section-title) {
    font-size: clamp(2.0rem, 5vw, 3.5rem) !important;
    margin-bottom: var(--spacing-sm);
}

.home-page .paragraph-text {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.home-page .text-white {
    color: white !important;
}


/* --- Specific Section Alignments Removed To Match V3 --- */

/* --- Component Styles --- */
.home-page .image-card {
    background: #FFFFFF;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: visible !important;
}

.home-page .image-card img {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    border-radius: 8px !important;
    position: relative;
    z-index: 5;
    display: block;
    width: 100%;
}

.home-page .image-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 15;
}

.home-page .glass-panel {
    background: transparent;
    padding: var(--spacing-lg);
    text-align: center;
    max-width: 1200px;
    margin: 50px auto;
    color: white;
}

.home-page .quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.home-page .quote-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-style: italic;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    line-height: 1.3;
}

/* --- Slider Controls --- */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-70%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #D4AF37;
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.slider-arrow:hover {
    color: #D4AF37;
    transform: translateY(-70%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

@media (max-width: 991px) {
    .home-page .hero-custom-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .home-page .hero-text-container {
        text-align: center;
        align-items: center;
        padding: 0 30px;
    }

    .home-page .hero-sgr-logo-large {
        width: 150px !important;
    }

    .home-page .hero-text-container h1 {
        font-size: 1.6rem !important;
        letter-spacing: 1px;
    }

    .home-page .hero-text-container h2 {
        font-size: 1.2rem !important;
        letter-spacing: 2px;
    }

    .home-page .paragraph-text {
        font-size: 0.95rem !important;
    }

    .home-page .hero-custom-slide-wrapper {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .slider-indicators {
        bottom: 25px !important;
        gap: 10px !important;
    }

    .slider-dot {
        width: 8px !important;
        height: 8px !important;
    }

    .slider-arrow {
        font-size: 1.8rem !important;
        padding: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 30px;
    }

    .slider-prev {
        left: 5px !important;
    }

    .slider-next {
        right: 5px !important;
    }

    .home-page .hero-section {
        min-height: 500px !important;
    }
}




/* --- Home Responsive --- */
@media (max-width: 991px) {
    .home-page .hero-custom-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .home-page .hero-text-container {
        text-align: center;
        align-items: center;
        padding: 0 30px;
    }

    .home-page .hero-sgr-logo-large {
        width: 150px !important;
    }

    .home-page .hero-text-container h1 {
        font-size: 1.6rem !important;
        letter-spacing: 1px;
    }

    .home-page .hero-text-container h2 {
        font-size: 1.2rem !important;
        letter-spacing: 2px;
    }
}

@media (max-width: 768px) {

    .home-page .section-about,
    .home-page .section-evaluation,
    .home-page .section-award,
    .home-page .section-quote {
        padding: 60px 0 !important;
    }

    .home-page .section-title {
        font-size: 1.8rem !important;
        /* Balanced mobile size */
        margin-bottom: 20px !important;
    }

    .home-page #isolated-intro-section .col-text,
    .home-page #isolated-award-section .section-title,
    .home-page #isolated-award-section .paragraph-text,
    .home-page #isolated-evaluation-section .col-text,
    .home-page #isolated-quote-section .container {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .home-page .section-about .col-image,
    .home-page .section-evaluation .col-image {
        margin-top: 10px !important;
        padding: 0 !important;
    }

    .home-page .section-about .image-card,
    .home-page .section-evaluation .image-card {
        background: #FFFFFF;
        padding: 6px;
        border-radius: 12px;
        margin: 0 auto;
        max-width: 95%;
        display: flex;
    }

    .home-page .row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .home-page .col-text {
        margin-bottom: 15px !important;
        margin-top: 10px !important;
    }

    .home-page .quote-text {
        font-size: 1.6rem !important;
        line-height: 1.4 !important;
    }

    .home-page .quote-icon {
        font-size: 3.5rem !important;
    }
}

/* --- Extra Utilities & Components --- */
.home-page .bg-darker {
    background-color: var(--color-primary-light);
}

.home-page .jury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.home-page .jury-card {
    background: #FFFFFF;
    padding: var(--spacing-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.home-page .jury-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.home-page .jury-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: var(--spacing-sm);
    filter: grayscale(100%);
    transition: var(--transition-fast);
}

.home-page .jury-card:hover img {
    filter: grayscale(0%);
}

.home-page .quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.home-page .author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
}

.home-page .author-details {
    text-align: left;
}

.home-page .author-details strong {
    display: block;
    color: var(--color-secondary);
}

.home-page .author-details span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.home-page .mt-lg {
    margin-top: var(--spacing-lg);
}

.home-page .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.home-page .display-inline-block {
    display: inline-block;
}

.home-page .mt-sm {
    margin-top: 10px;
}

/* Shared Section Layouts */
.section-award,
.section-quote,
.section-philosophy,
.section-unique {
    position: relative;
    padding: 200px 0;
    overflow: hidden;
    color: white;
}

/* 3D Flip Card Styles (Used in Vision & Mission) */
#vision_mision .cards-grid {
    perspective: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

#vision_mision .info-card {
    background-color: transparent !important;
    padding: 0 !important;
    height: 400px;
    box-shadow: none !important;
    cursor: pointer;
    border: none !important;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#vision_mision .info-card:hover .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.flip-card-front {
    background-size: cover;
    background-position: center;
    background-color: #F8F9FB;
}

.flip-card-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 20, 45, 0.8), rgba(26, 28, 80, 0.2));
    z-index: 1;
}

.flip-card-front h3 {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    font-size: 3.4rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-family: var(--font-heading);
}

.flip-card-back {
    background-color: #e2e6ea;
    transform: rotateX(180deg);
}

.flip-card-back p {
    color: #333333;
    line-height: 1.8;
    margin: 0;
    font-size: 1.45rem;
    text-align: center;
    font-weight: 500;
}

/*=================== Page Header Specifics Start ====================*/



@media (max-width: 768px) {
    .main-header {
        height: 70px;
    }
}

#about_header .section-title,
#cs_header .section-title,
#rc-header .section-title,
#qp-header .section-title,
#faq-header .section-title,
#reg-header .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

#about_header .section-subtitle,
#cs_header .section-subtitle,
#rc-header .section-subtitle,
#qp-header .section-subtitle,
#faq-header .section-subtitle,
#reg-header .section-subtitle {
    opacity: 0.9;
    max-width: 600px;
}

/*======================= Page Header Specifics End ===================*/

/*================ Section Container Container Start ==================*/
/* .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-text-heading);
    text-align: center;
    margin-bottom: var(--spacing-sm);
} */

.section-vision {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
    color: white;
}

/*================ Section Container Container End ====================*/

/*=========================== Contact Us start ==============================*/
.cvu-contact-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.contact-info {
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    background: #1a1a1d !important;
    color: #fff;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: #fff;
    position: relative;
    z-index: 2;
}

.info-desc {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.detail-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.detail-icon {
    font-size: 1.5rem;
}

.detail-text .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.detail-text p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-wrapper {
    padding: var(--spacing-xl);
    background: #fff;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-brand);
}

.luxury-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-brand-deep);
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    border-color: var(--color-accent);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.grayscale-map {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.grayscale-map:hover {
    filter: grayscale(0%);
}

@media (max-width: 900px) {

    .contact-card-wrapper,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cvu-contact-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-card-wrapper {
        min-height: auto;
    }

    .info-title {
        font-size: 1.6rem;
    }

    .info-desc {
        font-size: 0.95rem;
    }

    .detail-text p {
        font-size: 1rem;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
}

/* Custom Checkbox Styling */
.custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px;
    position: relative;
    padding-left: 36px;
}

.custom-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    opacity: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.custom-checkbox {
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 2px solid #888;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.custom-checkbox-wrapper:hover input~.custom-checkbox {
    border-color: #D4AF37;
}

.custom-checkbox-wrapper input:checked~.custom-checkbox {
    background-color: var(--color-brand-deep);
    border-color: var(--color-brand-deep);
}

.custom-checkbox::after {
    content: '✔';
    color: white;
    font-size: 14px;
    display: none;
}

.custom-checkbox-wrapper input:checked~.custom-checkbox::after {
    display: block;
}

.consent-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 400;
}

/* Modal Styling */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.custom-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.custom-modal-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.custom-modal-title {
    color: var(--color-brand-deep);
    margin-bottom: 10px;
}

.custom-modal-text {
    color: #666;
    margin-bottom: 30px;
}

/*=========================== Auth Header start ==============================*/
.auth-header {
    padding-top: 110px !important;
    padding-bottom: 90px !important;
    min-height: auto !important;
}

.max-w-500 {
    max-width: 500px !important;
}

@media (max-width: 768px) {
    .auth-header {
        padding-top: 100px !important;
        padding-bottom: 90px !important;
    }

    .auth-header .section-title {
        font-size: 2rem !important;
    }
}

/*=========================== Auth Header end ================================*/

/*=========================== FAQ start ==============================*/
#faqPage {
    background-color: var(--color-primary);
}


.faq-card-inner p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-accordion-section {
        padding: 60px 20px;
    }

    .faq-card-inner {
        padding: 0 25px 25px;
        font-size: 1rem;
    }
}

/*=========================== FAQ end ================================*/








/* Background Utility Classes */
.award-background,
.quote-background,
.philosophy-background,
.uniqueness-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.award-background {
    background-image: url('../images/cheering.jpg');
}

.quote-background {
    background-image: url('../images/chess.jpg');
}

.philosophy-background {
    background-image: url('../images/moreppl.jpg');
}

.uniqueness-background {
    background-image: url('../images/be-part-of.webp');
}

/* Overlay Utility Classes */
.award-overlay,
.quote-overlay,
.philosophy-overlay,
.uniqueness-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.award-overlay,
.philosophy-overlay {
    background: linear-gradient(to bottom, rgba(43, 45, 115, 0.7), rgba(5, 6, 20, 0.8));
}

.quote-overlay {
    background: linear-gradient(to bottom, rgba(43, 45, 115, 0.6), rgba(5, 6, 20, 0.7));
}

.uniqueness-overlay {
    background: rgba(43, 45, 115, 0.7);
}

.section-award .container,
.section-quote .container,
.section-philosophy .container,
.section-unique .container,
.section-vision .container {
    position: relative;
    z-index: 2;
}

.section-award .section-title,
.section-quote .section-title,
.section-philosophy .section-title,
.section-unique .section-title {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-award .paragraph-text {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.15rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 60px 0;
        --card-padding: 30px;
    }

    /* .section-title {
        font-size: 2.3rem;
    } */
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --card-padding: 25px;
    }

    .about-hero {
        height: 300px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero .subtitle {
        font-size: 1.1rem;
    }

    /* .section-title {
        font-size: 2rem;
    } */

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

    .pillar-card,
    .service-card,
    .vision-card,
    .mission-card {
        margin-bottom: 25px;
    }

    .positioning-content p,
    .background-content {
        font-size: 1.1rem;
    }

    .tagline-large {
        font-size: 1.5rem;
    }
}

/*========================================================================
                        VISION MISSION PAGE 
========================================================================*/

.vm-hero {
    position: relative;
    background-image: url('../../images/slider.jpg');
    /* change to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    /* same height as about-hero */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.vm-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* same dark overlay */
    z-index: 0;
}

.vm-hero .container {
    position: relative;
    z-index: 1;
    /* text stays above overlay */
}

.vm-subtitle {
    font-size: 1.25rem;
    margin-top: 10px;
    opacity: 0.95;
}


/* Vision & Mission Cards Section */
.vm-cards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vm-card {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(43, 45, 115, 0.15);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 20px rgba(43, 45, 115, 0.3);
}

.vm-icon i {
    font-size: 3rem;
    color: white;
}

.vm-label {
    color: #2B2D73;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
}

.vm-content {
    color: #555;
    font-size: 1.3rem;
    line-height: 1.9;
    text-align: center;
}

/* Three Principles Section */
.principles-section {
    padding: 80px 0;
    background: white;
}

.principles-title {
    text-align: center;
    color: #2B2D73;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.principle-item {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
}

.principle-number {
    width: 60px;
    height: 60px;
    background: #2B2D73;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.principle-text {
    color: #2B2D73;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vm-hero h1 {
        font-size: 2.5rem;
    }

    .vm-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .vm-content {
        font-size: 1.15rem;
    }
}

/*========================================================================
                             PHILOSOPHY PAGE 
========================================================================*/

.philosophy-hero {
    position: relative;
    background-image: url('../../images/slider.jpg');
    /* change to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    /* same height for consistency */
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    color: #fff;
    text-align: center;
}

.philosophy-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    z-index: 0;
}

.philosophy-hero .container {
    position: relative;
    z-index: 1;
    /* keeps text above overlay */
}

.ph-subtitle {
    font-size: 1.25rem;
    margin-top: 10px;
    opacity: 0.95;
}

/* Philosophy Content Section - PDF Page 7 */
.philosophy-content-section {
    padding: 80px 0;
    background: white;
}

.philosophy-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-text p {
    font-size: 1.3rem;
    line-height: 2;
    color: #555;
    margin-bottom: 30px;
}

.philosophy-text p strong {
    color: #2B2D73;
    font-weight: 600;
}

/* Uniqueness Section*/
.uniqueness-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* .section-title {
    text-align: center;
    color: #2B2D73;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
} */

/* Main Card Style */
.uniqueness-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    border-left: 6px solid #2B2D73;
    transition: all 0.3s ease;
}

.uniqueness-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(43, 45, 115, 0.15);
}

/* Big Top Card */
.big-card {
    padding: 55px 45px;
    margin-bottom: 40px;
}

/* Small Cards */
.small-card {
    padding: 35px 30px;
}

.uniqueness-card h3 {
    color: #2B2D73;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.uniqueness-card .subtitle {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    /* .section-title {
        font-size: 2.3rem;
    } */

    .big-card {
        padding: 40px 30px;
    }

    .small-card {
        padding: 30px 25px;
    }
}

/* Mission Statement Section */
.mission-statement-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    color: white;
    text-align: center;
}

.mission-statement-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.mission-statement-section p {
    font-size: 1.4rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .philosophy-hero h1 {
        font-size: 2.5rem;
    }

    .philosophy-text p {
        font-size: 1.15rem;
    }

    .quote-section blockquote {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .uniqueness-card {
        padding: 35px 25px;
    }
}

/*========================================================================
                             WHY CHOOSE SGR PAGE 
========================================================================*/

.why-hero {
    position: relative;
    background-image: url('../../images/slider.jpg');
    /* replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.why-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    z-index: 0;
}

.why-hero .container {
    position: relative;
    z-index: 1;
}

.why-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-hero .vm-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}


/* Singapore Foundation Section - PDF Page 5 */
.singapore-section {
    padding: 80px 0;
    background: white;
}

/* .section-title {
    text-align: center;
    color: #2B2D73;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
} */

/* .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 60px;
} */

.pillar-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s;
    border-top: 5px solid #2B2D73;
    margin-bottom: 30px;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 45, 115, 0.15);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.pillar-icon i {
    font-size: 2.5rem;
    color: white;
}

.pillar-card h3 {
    color: #2B2D73;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pillar-card p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Value of SGR Section - PDF Page 15 */
.value-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}



/* .value-card h3 {
    color: #2B2D73;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
} */

.value-card h3 i {
    font-size: 2rem;
}

/* .value-card p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
} */

/* Key Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-item h4 {
    color: #2B2D73;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #2B2D73;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0 10px 10px;
}

.btn-cta:hover {
    background: #f8f9fa;
    color: #2B2D73;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .why-hero h1 {
        font-size: 2.5rem;
    }

    /* 
    .section-title {
        font-size: 2rem;
    } */

    .pillar-card,
    .value-card {
        padding: 35px 25px;
    }
}

/*========================================================================
                              TEAM PAGE 
========================================================================*/

.team-hero {
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.team-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Intro Section */
.team-intro-section {
    padding: 80px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: #2B2D73;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.intro-content p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Leadership Team Section */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* .section-title {
    text-align: center;
    color: #2B2D73;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
} */

.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 40px;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 45, 115, 0.15);
}

.member-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-photo-placeholder {
    font-size: 5rem;
    color: white;
    opacity: 0.3;
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-name {
    color: #2B2D73;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.member-position {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B2D73;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #2B2D73;
    color: white;
    transform: translateY(-3px);
}

/* Expert Evaluators Section - PDF Page 13 Reference */
.evaluators-section {
    padding: 80px 0;
    background: white;
}

.evaluator-item {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.evaluator-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.evaluator-icon i {
    font-size: 2.5rem;
    color: white;
}

.evaluator-item h4 {
    color: #2B2D73;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.evaluator-item p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Join Team CTA */
.join-team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.join-team-section h2 {
    color: #2B2D73;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.join-team-section p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    background: #2B2D73;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
}

.btn-cta:hover {
    background: #1f2052;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(43, 45, 115, 0.4);
}

.btn-cta i {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .team-hero h1 {
        font-size: 2.5rem;
    }

    /* .section-title {
        font-size: 2rem;
    } */

    .member-photo {
        height: 250px;
    }
}

/*========================================================================
                             CONTACT US PAGE 
========================================================================*/

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.contact-label {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.contact-value a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--primary-color);
}

/* Logo Section */
.logo-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 60px;
}

.logo-section img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-slogan {
    font-size: 1.3rem;
    color: #4a5568;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.5px;
}

/*========================================================================
                             SERVICE OVERVIEW PAGE 
========================================================================*/

.services-hero {
    position: relative;
    background-image: url('../../images/slider.jpg');
    /* replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* overlay for readability */
    z-index: 0;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-hero .vm-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}


/* Core Services Section - PDF Page 3 */
.core-services-section {
    padding: 80px 0;
    background: white;
}

/* .section-title {
    text-align: center;
    color: #2B2D73;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
} */

/* .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
} */

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    border-top: 5px solid #2B2D73;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(43, 45, 115, 0.2);
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-description,
.service-card:hover .service-link {
    color: white;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s;
}

.service-icon i {
    font-size: 3rem;
    color: white;
}

.service-title {
    color: #2B2D73;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    transition: color 0.4s;
}

.service-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 25px;
    transition: color 0.4s;
}

.service-link {
    display: inline-block;
    color: #2B2D73;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.4s;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
}

.process-step h4 {
    color: #2B2D73;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Industries Coverage Section */
.industries-section {
    padding: 80px 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.industry-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
}

.industry-badge:hover {
    border-color: #2B2D73;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    color: white;
    transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: #2B2D73;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0 10px 10px;
}

.btn-cta:hover {
    background: #f8f9fa;
    color: #2B2D73;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-cta i {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    /* .section-title {
        font-size: 2rem;
    } */

    .service-card {
        padding: 35px 25px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/*========================================================================
                        PATH OF RECOGNITION PAGE 
========================================================================*/

/* Hero Section */
.por-hero {
    position: relative;
    background-image: url('../../images/slider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    /* taller for impact */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.por-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.por-hero .container {
    position: relative;
    z-index: 1;
}

.por-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.por-subtitle {
    font-size: 1.25rem;
    margin-top: 10px;
    opacity: 0.95;
}

/* Pillars / Steps Section */
.pillars-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.pillar-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Section Title & Subtitle */
/* .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
} */

.pillars-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}


/*===============================================

    21 Industry Certification Categories

===============================================*/
.transition-hover {
    transition: all 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(61, 90, 128, 0.15) !important;
}

.transition-hover:hover .icon-circle {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

.icon-circle {
    transition: transform 0.6s ease;
}

/*===============================================
                accordion
===============================================*/

.accordion-large .accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-large .accordion-button {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-large .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-large .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-large .accordion-button i {
    font-size: 1.5rem;
    color: #fff !important;
}

.accordion-large .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-large .accordion-body {
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.accordion-large .value-features {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.accordion-large .value-features li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accordion-large .accordion-button {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }

    .accordion-large .accordion-button i {
        font-size: 1.25rem;
    }

    .accordion-large .accordion-body {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/*===============================================
                timeline
===============================================*/

.timeline {
    position: relative;
    padding: 50px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2B2D73 0%, #667eea 100%);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 45, 115, 0.2);
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
    z-index: 10;
}

/*===============================================
                bottom banner
===============================================*/

.bottom-banner {
    position: relative;
    background-image: url('../../images/wrecord.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.bottom-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.bottom-banner .container {
    position: relative;
    z-index: 1;
}

/*===============================================
              step by step
===============================================*/

.step-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 50px 0;
}

.step-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #2B2D73 0%, #667eea 100%);
    z-index: 0;
}

.step-box {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2B2D73 0%, #1f2052 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(43, 45, 115, 0.3);
    transition: all 0.3s ease;
}

.step-box:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(43, 45, 115, 0.4);
}

.step-title {
    color: #2B2D73;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tablet and below */
@media (max-width: 992px) {
    .step-container {
        flex-direction: column;
        align-items: center;
    }

    .step-container::before {
        display: none;
    }

    .step-box {
        margin-bottom: 40px;
        max-width: 500px;
        width: 100%;
    }

    .step-box:last-child {
        margin-bottom: 0;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        border-width: 4px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-desc {
        font-size: 0.85rem;
    }

    .step-box {
        padding: 0 10px;
        margin-bottom: 30px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        border-width: 3px;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-desc {
        font-size: 0.8rem;
    }
}

/*===============================================
         iframe corporate/individual form
===============================================*/

.form-selection-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-selector-card {
    background: white;
    /* border-radius: 20px;*/
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
    margin-top: 40px;
}

.selector-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.selector-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.selector-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.button-group {
    display: flex;
    gap: 30px;
    padding: 50px 30px;
    justify-content: center;
    /* background: #f8f9fa;*/
    flex-wrap: wrap;
}

.form-type-link {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    border: 3px solid #e0e0e0;
    background: white;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.form-type-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.form-type-link:hover::before {
    opacity: 1;
}

.form-type-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.form-type-link:hover .link-content {
    color: white;
}

.form-type-link:hover .link-desc {
    opacity: 1;
}

.link-content {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    text-align: center;
}

.link-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.link-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.link-desc {
    font-size: 1rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 20px;
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-type-link:hover .link-action {
    background: var(--primary-color);
}

.info-section {
    padding: 30px;
    background: white;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.info-section p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.info-section strong {
    color: #333;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .form-type-link {
        max-width: 100%;
    }

    .selector-header h2 {
        font-size: 1.5rem;
    }

    .link-icon {
        font-size: 3rem;
    }

    .link-title {
        font-size: 1.25rem;
    }
}

/*.form-selection-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-selector-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 40px;
}

.selector-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.selector-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.selector-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.button-group {
    display: flex;
    gap: 20px;
    padding: 30px;
    justify-content: center;
    background: #f8f9fa;
    flex-wrap: wrap;
}

.form-type-btn {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 20px 30px;
    border: 3px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.form-type-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.form-type-btn.active {
    border-color: #667eea;
    background: var(--primary-color);
}

.form-type-btn.active .btn-content {
    color: white;
}

.btn-content {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.btn-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.btn-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
}

.form-type-btn.active .btn-desc {
    opacity: 1;
}

.iframe-wrapper {
    padding: 20px;
    padding-top: 40px ;
    background: #f8f9fa;
    display: none;
}

.iframe-wrapper.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 105%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.loading-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #667eea;
    font-size: 1.2rem;
    z-index: -1;
}

.no-selection {
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
}

.no-selection-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.open-form-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.open-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        padding: 20px;
    }

    .form-type-btn {
        max-width: 100%;
    }

    .selector-header h2 {
        font-size: 1.5rem;
    }

    .iframe-container {
        padding-bottom: 180%;
    }
}

@media (max-width: 480px) {
    .iframe-container {
        padding-bottom: 200%;
    }
}
*/



/*===============================================
                  core service
===============================================*/

.core-value-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.values-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2B2D73 0%, #4a4d9e 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 45, 115, 0.2);
}

.value-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(43, 45, 115, 0.3);
}

.value-badge i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .values-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .value-badge {
        justify-content: center;
        padding: 15px 25px;
    }
}

/* Animations */
@keyframes customFadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-300px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes customFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes customSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes customSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header Animation */
#about_header .container {
    opacity: 0;
    transform: translateY(-300px);
}

#about_header.is-visible .container {
    animation: customFadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Vision & Mission Sections */
#vision_mision .section-title {
    opacity: 0;
    transform: translateY(300px);
}

#vision_mision.is-visible .section-title {
    animation: customFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#vision_mision .cards-grid {
    perspective: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

#vision_mision .info-card {
    background-color: transparent !important;
    padding: 0 !important;
    height: 400px;
    box-shadow: none !important;
    cursor: pointer;
    border: none !important;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#vision_mision .info-card:hover .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.flip-card-front {
    background-size: cover;
    background-position: center;
    background-color: var(--color-surface, #F8F9FB);
}

.flip-card-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 20, 45, 0.8), rgba(26, 28, 80, 0.2));
    z-index: 1;
}

.flip-card-front h3 {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    font-size: 3.4rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-family: var(--font-heading);
}

.flip-card-back {
    background-color: #e2e6ea;
    transform: rotateX(180deg);
}

.flip-card-back p {
    color: #333333;
    line-height: 1.8;
    margin: 0;
    font-size: 1.45rem;
    text-align: center;
    font-weight: 500;
}

/* Brand Philosophy Premium Styles */
.section-philosophy {
    position: relative;
    padding: 250px 0;
    /* Matched to legacy scale */
    overflow: hidden;
}

.philosophy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/brand.png') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 45, 115, 0.7), rgba(5, 6, 20, 0.8));
    z-index: 1;
}

.section-philosophy .section-title {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

#brand_philosophy .section-title {
    opacity: 0;
    transform: translateY(300px);
}

#brand_philosophy.is-visible .section-title {
    animation: customFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.08);
    /* Slightly more prominent glass effect */
    backdrop-filter: blur(5px);
    padding: var(--spacing-lg);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.philosophy-item p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-secondary);
    letter-spacing: 0.01em;
    font-weight: 300;
    margin: 0;
}

#brand_philosophy .philosophy-item:nth-child(1) {
    opacity: 0;
    transform: translateX(300px);
}

#brand_philosophy .philosophy-item:nth-child(2) {
    opacity: 0;
    transform: translateX(-300px);
}

#brand_philosophy .philosophy-item:nth-child(3) {
    opacity: 0;
    transform: translateX(300px);
}

#brand_philosophy.is-visible .philosophy-item:nth-child(1) {
    animation: customSlideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

#brand_philosophy.is-visible .philosophy-item:nth-child(2) {
    animation: customSlideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}

#brand_philosophy.is-visible .philosophy-item:nth-child(3) {
    animation: customSlideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.5s;
}

/* Uniqueness Section Styles */
.section-unique {
    position: relative;
    padding: 250px 0;
    /* Matched to legacy scale */
    overflow: hidden;
}

.uniqueness-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/uniqueness.jpg') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

.uniqueness-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 45, 115, 0.7), rgba(5, 6, 20, 0.8));
    z-index: 1;
}

.section-unique .section-title {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

#unique_sgr .section-title {
    opacity: 0;
    transform: translateY(-300px);
}

#unique_sgr.is-visible .section-title {
    animation: customFadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.three-col {
    grid-template-columns: repeat(3, 1fr) !important;
}

.section-unique .info-card {
    background: rgba(255, 255, 255, 0.95);
    /* Slightly transparent white on dark BG */
    backdrop-filter: blur(10px);
}

#unique_sgr .cards-grid .info-card:nth-child(1) {
    opacity: 0;
    transform: translateX(-300px);
}

#unique_sgr .cards-grid .info-card:nth-child(2) {
    opacity: 0;
    transform: translateY(300px);
}

#unique_sgr .cards-grid .info-card:nth-child(3) {
    opacity: 0;
    transform: translateX(300px);
}

#unique_sgr.is-visible .cards-grid .info-card:nth-child(1) {
    animation: customSlideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

#unique_sgr.is-visible .cards-grid .info-card:nth-child(2) {
    animation: customFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

#unique_sgr.is-visible .cards-grid .info-card:nth-child(3) {
    animation: customSlideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

#unique_sgr .cards-grid .info-card h3 {
    color: #2B2D73 !important;
    margin-bottom: 1rem;
}

#unique_sgr .cards-grid .info-card p {
    color: #444444 !important;
}

/* Anchor Offsets */
#vision_mision,
#brand_philosophy,
#unique_sgr {
    scroll-margin-top: 100px;
}

/* Mobile Overrides */
@media (max-width: 768px) {

    .section-philosophy,
    .section-unique {
        padding: 100px 0 !important;
        /* Heavily reduced vertical padding for mobile */
    }

    #vision_mision,
    #unique_sgr {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    #vision_mision .section-title,
    #unique_sgr .section-title {
        margin-bottom: 25px !important;
        font-size: 1.6rem !important;
        transform: translateY(0) !important;
    }

    #vision_mision .cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 20px;
        gap: 15px;
    }

    #unique_sgr .cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0;
        gap: 15px;
    }

    #vision_mision .info-card {
        height: 200px !important;
    }

    #unique_sgr .info-card {
        padding: 15px !important;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 15px !important;
    }

    .flip-card-front h3 {
        font-size: 1.4rem !important;
    }

    .flip-card-back p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    .philosophy-item p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}