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

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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 {
/*    content: ''; */
    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);
}

/* ========================================
   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;
    font-style: italic;
    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 {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 6px solid #2B2D73;
    transition: all 0.3s;
    text-align: left;

}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(43,45,115,0.15);
}

.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%;
    }
}
*/

/*===============================================
                mobile menu sidebar
===============================================*/

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* hidden by default */
    width: 250px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.open {
    left: 0; /* slide in */
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-close {
    font-size: 25px;
    cursor: pointer;
}

.mobile-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
}

.mobile-sidebar ul li .dropdown-menu {
    display: none;
    padding-left: 15px;
    background: #f8f8f8;
}

.mobile-sidebar ul li.open > .dropdown-menu {
    display: block;
}

.dropdown-icon {
    transition: transform 0.3s;
}

.mobile-sidebar ul li.open > a .dropdown-icon {
    transform: rotate(90deg); /* arrow points down when open */
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    display: none;
}
.sidebar-overlay.active {
    display: block;
}

/*===============================================
                  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;
    }
}   