:root {
    --primary-color: #007bff;
    --primary-color-dark: #0056b3;
}

/* Base Styles */
.shg-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 84px;
    overflow-x: hidden;
}

/* Navbar Styles */
.shg-navbar-wrapper {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.shg-navbar-main {
    background-color: white;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    margin-bottom: -6px;
}

.shg-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.shg-navbar-logo-container {
    display: flex;
    align-items: center;
    min-width: 120px;
}

.shg-navbar-logo {
    height: 52px;
    width: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.shg-navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shg-navbar-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.shg-navbar-link:hover {
    color: #007bff;
}

.shg-navbar-language {
    display: flex;
    gap: 0.5rem;
}

.shg-navbar-language-btn {
    display: none;
}

.shg-navbar-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    margin: -10px;
    z-index: 1001;
}

.shg-navbar-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
}

/* Hero Section Base Styles */
.shg-hero-section {
    position: relative;
    height: calc(100vh - 84px);
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Home Page Hero */
.shg-hero-section.home-hero {
    background-image: url('../media/images/hero-bg.webp');
}

/* Culture Exchange Hero */
.shg-hero-section.culture-hero {
    background-image: url('../media/images/hero-culture.webp');
}

/* Global Education Hero */
.shg-hero-section.education-hero {
    background-image: url('../media/images/edu-v2.webp');
}

/* Sustainability Hero */
.shg-hero-section.sustainability-hero {
    background-image: url('../media/images/sustain.webp');
}

/* Sustainability Hero - Ensure proper overlay */
.shg-hero-section.sustainability-hero::before {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .shg-hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .shg-hero-title {
        font-size: 2.8rem;
    }
    
    .shg-hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .shg-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .shg-hero-title {
        font-size: 2.2rem;
    }
    
    .shg-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .shg-hero-section {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
    }
    
    .shg-hero-title {
        font-size: 1.8rem;
    }
    
    .shg-hero-subtitle {
        font-size: 1rem;
    }
    
    .shg-hero-cta {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }
}

/* iPhone-specific optimizations */
@supports (-webkit-touch-callout: none) {
    .shg-hero-section {
        background-attachment: scroll;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

/* Progressive Loading Enhancement */
.shg-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Hero Content Styles */
.shg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.shg-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shg-hero-title-line {
    display: block;
}

.shg-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.shg-hero-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6),
                0 16px 60px rgba(255, 255, 255, 1);
    margin-top: 2rem;
}

.shg-hero-cta:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(2px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.8),
                0 24px 80px rgba(255, 255, 255, 1);
}

.shg-hero-cta:active {
    transform: translateY(4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6),
                0 8px 40px rgba(255, 255, 255, 0.8);
}

/* Short Text Section Styles */
.shg-short-text-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.shg-short-text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: shg-fade-in-up 0.8s ease forwards 0.6s;
}

.shg-short-text-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.shg-short-text-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.shg-short-text-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive Styles for Short Text Section */
@media (max-width: 768px) {
    .shg-short-text-section {
        padding: 4rem 1.5rem;
    }

    .shg-short-text-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .shg-short-text-content {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .shg-short-text-section {
        padding: 3rem 1rem;
    }

    .shg-short-text-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .shg-short-text-content {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Vision and Mission Section Styles */
.shg-vision-mission-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.shg-vision-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.shg-vision-block,
.shg-mission-block {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.shg-vision-block {
    animation: slideInScale 2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.shg-mission-block {
    animation: slideInScale 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.shg-vision-block::before,
.shg-mission-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: #007bff;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: lineGrow 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s forwards;
}

.shg-vision-block::after,
.shg-mission-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    animation: borderFade 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s forwards;
}

.shg-vision-block:hover,
.shg-mission-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.shg-vision-block:hover::before,
.shg-mission-block:hover::before {
    width: 6px;
    background-color: #0056b3;
}

.shg-vision-block:hover::after,
.shg-mission-block:hover::after {
    border-color: rgba(0, 123, 255, 0.3);
    transform: scale(1.02);
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.95);
    }
    60% {
        transform: translateY(-20px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lineGrow {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes borderFade {
    from {
        border-color: transparent;
    }
    to {
        border-color: rgba(0, 123, 255, 0.1);
    }
}

.shg-vision-mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s forwards;
}

.shg-vision-mission-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #007bff;
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleIn 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s forwards;
}

.shg-vision-mission-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s forwards;
}

@keyframes scaleIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* About Us Section Styles */
.shg-about-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.shg-about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transform: none;
}

.shg-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.shg-about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.shg-about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.shg-partners-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.shg-partner-block {
    opacity: 1;
    transform: none;
}

.shg-partner-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shg-partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shg-partner-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.shg-partner-image-container:hover .shg-partner-image {
    transform: scale(1.05);
}

.shg-partner-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Services Section Styles */
.shg-services-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.shg-services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transform: none;
}

.shg-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.shg-services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.shg-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shg-service-block {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
}

.shg-service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.shg-service-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #007bff;
}

.shg-service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 2rem 0;
}

.shg-service-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
}

.shg-service-button:hover {
    background-color: transparent;
    color: #007bff;
    transform: translateY(-2px);
}

.shg-service-button:active {
    transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .shg-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .shg-partners-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .shg-about-section,
.shg-services-section {
        padding: 4rem 1.5rem;
    }

    .shg-about-title,
    .shg-services-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .shg-about-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .shg-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shg-service-block {
        padding: 2rem;
    }

    .shg-service-name {
        font-size: 1.3rem;
    }

    .shg-service-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .shg-about-section,
    .shg-services-section {
        padding: 3rem 1rem;
    }

    .shg-about-title,
    .shg-services-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .shg-about-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .shg-partner-image-container {
        width: 150px;
        height: 150px;
    }

    .shg-partner-name {
        font-size: 1.3rem;
    }

    .shg-service-block {
        padding: 1.5rem;
    }

    .shg-service-name {
        font-size: 1.2rem;
    }

    .shg-service-description {
        font-size: 0.95rem;
    }

    .shg-service-button {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
    }
}

/* Consultants Section Styles */
.shg-consultants-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.shg-consultants-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transform: none;
}

.shg-consultants-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.shg-consultants-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.shg-consultants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.shg-consultant-block {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
}

.shg-consultant-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.shg-consultant-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.shg-consultant-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #007bff;
}

.shg-consultant-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Mobile Responsive Styles for Consultants */
@media (max-width: 992px) {
    .shg-consultants-section {
        padding: 4rem 1.5rem;
    }

    .shg-consultants-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .shg-consultants-section {
        padding: 3rem 1.5rem;
    }

    .shg-consultants-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .shg-consultants-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shg-consultant-block {
        padding: 2rem;
    }

    .shg-consultant-name {
        font-size: 1.3rem;
    }

    .shg-consultant-bio {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .shg-consultants-section {
        padding: 2.5rem 1rem;
    }

    .shg-consultants-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .shg-consultant-block {
        padding: 1.5rem;
    }

    .shg-consultant-name {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .shg-consultant-bio {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Animation styles removed */

/* Hover effects */
.shg-vision-block:hover,
.shg-mission-block:hover,
.shg-consultant-block:hover,
.shg-service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* All section animations removed */

/* Navbar Dropdown Styles */
.shg-navbar-dropdown {
    position: relative;
}

.shg-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.75rem 0;
        opacity: 0;
    visibility: hidden;
    z-index: 1000;
    list-style: none;
    transition: all 0.3s ease;
}

.shg-dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shg-navbar-dropdown:hover .shg-dropdown-menu {
        opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.shg-dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.shg-dropdown-link:hover {
    background: #f8f9fa;
    color: #007bff;
    padding-left: 1.75rem;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .shg-navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 0;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
    }

    .shg-navbar-menu.active {
        display: flex;
    }

    .shg-navbar-hamburger {
        display: flex;
    }

    .shg-navbar-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .shg-navbar-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .shg-navbar-link:hover {
        background-color: rgba(0, 123, 255, 0.1);
    }

    /* Dropdown styles for mobile */
    .shg-dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: block !important;
        background: #f8f9fa;
        border-radius: 0;
        min-width: 100%;
        margin: 0;
    }

    .shg-navbar-dropdown:hover .shg-dropdown-menu {
        transform: none;
    }

    .shg-dropdown-link {
        padding: 1rem 3rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .shg-dropdown-link:hover {
        background-color: rgba(0, 123, 255, 0.1);
        padding-left: 3.25rem;
    }
}

@media (max-width: 480px) {
    .shg-navbar-main {
        padding: 0.8rem 1rem;
    }

    .shg-navbar-logo {
        height: 40px;
    }

    .shg-hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .shg-hero-title {
        font-size: 1.4rem;
    }

    .shg-hero-subtitle {
        font-size: 0.85rem;
    }

    .shg-hero-cta {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
    }

    .shg-vision-block,
    .shg-mission-block {
        padding: 2rem;
    }

    .shg-vision-mission-title {
        font-size: 1.5rem;
    }

    .shg-vision-mission-text {
        font-size: 1rem;
    }

    .shg-about-title,
    .shg-consultants-title,
    .shg-services-title {
        font-size: 1.8rem;
    }

    .shg-about-text {
        font-size: 1rem;
    }

    .shg-partner-name {
        font-size: 1.3rem;
    }

    .shg-consultant-name {
        font-size: 1.3rem;
    }

    .shg-consultant-bio {
        font-size: 1rem;
    }

    .shg-service-name {
        font-size: 1.3rem;
    }

    .shg-service-description {
        font-size: 1rem;
    }

    .shg-service-button {
        font-size: 0.9rem;
    }

    .shg-footer {
        padding: 2.5rem 1rem 1rem;
    }

    .shg-footer-grid {
        gap: 1.75rem;
    }

    .shg-footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .shg-social-link {
        font-size: 0.95rem;
    }

    .shg-footer-email {
        font-size: 0.95rem;
        padding: 0.3rem 0.6rem;
    }

    .shg-address p:not(:first-child) {
        font-size: 0.9rem;
    }

    .shg-address p:first-child {
        font-size: 1rem;
    }

    .shg-footer-copyright {
        font-size: 0.9rem;
    }

    .shg-footer-terms {
        font-size: 0.9rem;
    }
}

/* Remove animation classes */
.visible {
        opacity: 1;
        transform: none;
}

section:not(.shg-hero-section) {
    opacity: 1;
    transform: none;
}

/* Remove hero animations */
@keyframes fadeInContent {
    from, to {
        opacity: 1;
        transform: none;
    }
}



/* Ensure hero elements are always visible */
.index-hero-content,
.index-hero-title,
.index-hero-subtitle,
.index-hero-cta {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.index-hero-content.animate,
.index-hero-content.animate .index-hero-title,
.index-hero-content.animate .index-hero-subtitle,
.index-hero-content.animate .index-hero-cta {
    animation: none !important;
}

/* Keep hover animations */
.shg-hero-cta:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.shg-vision-block:hover,
.shg-mission-block:hover,
.shg-consultant-block:hover,
.shg-service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shg-partner-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.shg-partner-image-container:hover .shg-partner-image {
    transform: scale(1.05);
}

.shg-service-button:hover {
    background-color: transparent;
    color: #007bff;
    transform: translateY(-2px);
}

.shg-contact-email:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

/* Base section styles */
.shg-about-section,
.shg-consultants-section,
.shg-services-section,
.shg-contact-section,
.shg-footer {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Container visibility */
.shg-about-container,
.shg-consultants-container,
.shg-services-container,
.shg-contact-container {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Block visibility */
.shg-partner-block,
.shg-consultant-block,
.shg-service-block {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Animation classes for index page sections only */
.js .shg-index-section:not(.visible) {
    opacity: 0;
    transform: translateY(100px);
}

.js .shg-index-section.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .shg-index-section.visible .animate-child {
    opacity: 0;
    transform: translateY(100px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Animations for other sections */
@keyframes shg-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.95);
    }
    60% {
        transform: translateY(-20px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lineGrow {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes borderFade {
    from {
        border-color: transparent;
    }
    to {
        border-color: rgba(0, 123, 255, 0.1);
    }
}

@keyframes scaleIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Disable hero animations */
.index-hero-content,
.index-hero-title,
.index-hero-subtitle,
.index-hero-cta {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.index-hero-content.animate,
.index-hero-content.animate .index-hero-title,
.index-hero-content.animate .index-hero-subtitle,
.index-hero-content.animate .index-hero-cta {
    animation: none !important;
}

/* Hero Section Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.shg-hero-title.animate {
    animation: slideInFromLeft 1.5s ease-out forwards;
}

.shg-hero-subtitle.animate {
    animation: slideInFromRight 1.5s ease-out forwards;
}

.shg-hero-cta.animate {
    animation: slideInFromBottom 1.5s ease-out forwards;
}

/* Initially hide elements before animation */
.shg-hero-title:not(.animate),
.shg-hero-subtitle:not(.animate),
.shg-hero-cta:not(.animate) {
    opacity: 0;
}

/* Language Toggle Styles */
.shg-language-toggle {
    position: relative;
    width: 90px;
    height: 40px;
}

.shg-language-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.shg-language-toggle-label {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.shg-language-toggle-label:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.shg-language-toggle-label::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 34px;
    border-radius: 17px;
    top: 2px;
    left: 2px;
    background: #007bff;
    transition: transform 0.3s ease;
    z-index: 1;
}

.shg-language-toggle-input:checked + .shg-language-toggle-label::before {
    transform: translateX(41px);
}

.toggle-en,
.toggle-cn {
    position: absolute;
    width: 45px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    z-index: 2;
    transition: color 0.3s ease;
    font-size: 14px;
}

.toggle-en {
    left: 0;
    color: white;
}

.toggle-cn {
    right: 0;
    color: #666;
}

.shg-language-toggle-input:checked + .shg-language-toggle-label .toggle-en {
    color: #666;
}

.shg-language-toggle-input:checked + .shg-language-toggle-label .toggle-cn {
    color: white;
}

/* Footer Styles */
.shg-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
}

.shg-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    visibility: visible;
    opacity: 1;
}

.shg-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.shg-footer-heading {
    color: #007bff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.shg-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff;
}

.shg-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shg-social-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shg-social-link i {
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.shg-social-link:hover {
    color: #007bff;
    padding-left: 2.2rem;
}

.shg-social-link:hover i {
    transform: translateX(5px);
}

.shg-footer-email {
    font-size: 1.1rem;
    color: #007bff;
    margin: 0;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 6px;
    cursor: text;
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    transition: all 0.3s ease;
    display: inline-block;
}

.shg-footer-email:hover {
    background-color: rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.shg-address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.shg-address p {
    margin: 0.25rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #bdc3c7;
}

.shg-address p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.shg-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shg-footer-terms {
    color: #007bff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.shg-footer-terms:hover {
    color: #ecf0f1;
    transform: translateY(-2px);
}

.shg-footer-copyright {
    font-size: 1rem;
    color: #bdc3c7;
    margin: 0;
}

/* Footer Mobile Responsive Styles */
@media (max-width: 992px) {
    .shg-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .shg-footer-addresses {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .shg-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .shg-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shg-footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .shg-social-link {
        font-size: 1rem;
    }

    .shg-footer-email {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .shg-address p:not(:first-child) {
        font-size: 0.95rem;
    }

    .shg-address p:first-child {
        font-size: 1.1rem;
    }

    .shg-footer-bottom {
        padding-top: 1.5rem;
        gap: 0.5rem;
    }

    .shg-footer-terms {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .shg-footer {
        padding: 2.5rem 1rem 1rem;
    }

    .shg-footer-grid {
        gap: 1.75rem;
    }

    .shg-footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .shg-social-link {
        font-size: 0.95rem;
    }

    .shg-footer-email {
        font-size: 0.95rem;
        padding: 0.3rem 0.6rem;
    }

    .shg-address p:not(:first-child) {
        font-size: 0.9rem;
    }

    .shg-address p:first-child {
        font-size: 1rem;
    }

    .shg-footer-copyright {
        font-size: 0.9rem;
    }

    .shg-footer-terms {
        font-size: 0.9rem;
    }
}

/* Contact Section Styles */
.shg-contact-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
}

.shg-contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none;
}

.shg-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 1;
    visibility: visible;
}

.shg-contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007bff;
}

.shg-contact-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.shg-contact-email {
    color: #007bff;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: text;
    user-select: all;
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    background-color: rgba(0, 123, 255, 0.05);
    display: inline-block;
    position: relative;
    margin: 0;
}

.shg-contact-email:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.shg-contact-email:active {
    transform: translateY(0);
}

/* Contact Form Styles */
.shg-form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.shg-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.shg-form-group input,
.shg-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
        font-size: 1rem;
    transition: all 0.3s ease;
}

.shg-form-group input:focus,
.shg-form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.shg-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.shg-submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shg-submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.shg-submit-btn:active {
    transform: translateY(0);
}

/* Contact Section Mobile Responsive Styles */
@media (max-width: 768px) {
    .shg-contact-section {
        padding: 4rem 1.5rem;
    }

    .shg-contact-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .shg-contact-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .shg-contact-email {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }

    .shg-form-group input,
    .shg-form-group textarea {
        padding: 0.7rem;
    }

    .shg-submit-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .shg-contact-section {
        padding: 3rem 1rem;
    }

    .shg-contact-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .shg-contact-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .shg-contact-email {
        font-size: 1.1rem;
        padding: 0.3rem 0.6rem;
    }

    .shg-form-group {
        margin-bottom: 1.25rem;
    }

    .shg-form-group label {
        font-size: 0.95rem;
    }

    .shg-form-group input,
    .shg-form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }

    .shg-submit-btn {
        padding: 0.7rem 1.6rem;
    font-size: 0.95rem;
    }
}

/* Mobile Responsive Styles for Vision and Mission */
@media (max-width: 992px) {
    .shg-vision-mission-section {
        padding: 4rem 1.5rem;
    }

    .shg-vision-mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shg-vision-block,
    .shg-mission-block {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .shg-vision-mission-section {
        padding: 3rem 1.5rem;
    }

    .shg-vision-mission-container {
        gap: 1.5rem;
    }

    .shg-vision-block,
    .shg-mission-block {
    padding: 2rem;
    }

    .shg-vision-mission-title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .shg-vision-mission-text {
    font-size: 1.1rem;
    line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .shg-vision-mission-section {
        padding: 2.5rem 1rem;
    }

    .shg-vision-mission-container {
        gap: 1.25rem;
    }

    .shg-vision-block,
    .shg-mission-block {
        padding: 1.5rem;
    }
    
    .shg-vision-mission-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .shg-vision-mission-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .shg-vision-block::before,
    .shg-mission-block::before {
        width: 3px;
    }

    .shg-vision-block:hover::before,
    .shg-mission-block:hover::before {
        width: 4px;
    }
}

.shg-vision-block::before,
.shg-vision-block::after,
.shg-mission-block::before,
.shg-mission-block::after {
    display: none;
}

.shg-vision-block:hover::before,
.shg-vision-block:hover::after,
.shg-mission-block:hover::before,
.shg-mission-block:hover::after {
    display: none;
}

/* Contact Form Styles */
.shg-contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shg-form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: none;
}

@media (max-width: 768px) {
    .shg-contact-form {
        margin: 1.5rem auto 0;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shg-contact-form {
        margin: 1rem auto 0;
        padding: 1rem;
    }
}

/* Terms and Conditions Page Styles */
.shg-terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
    background: #fff;
    min-height: 100vh;
}

.shg-terms-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.shg-terms-date {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.shg-terms-content {
    line-height: 1.8;
    color: #333;
}

.shg-terms-section {
    margin-bottom: 2.5rem;
}

.shg-terms-section h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e67e22;
}

.shg-terms-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.shg-terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.shg-terms-section li {
    margin-bottom: 0.5rem;
}

.shg-terms-address {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #e67e22;
    margin: 1rem 0;
    font-style: normal;
}

.shg-terms-address p {
    margin: 0.25rem 0;
}

/* Mobile responsiveness for terms page */
@media (max-width: 768px) {
    .shg-terms-container {
        padding: 5rem 1.5rem 2rem;
    }
    
    .shg-terms-title {
        font-size: 2rem;
    }
    
    .shg-terms-section h2 {
        font-size: 1.3rem;
    }
    
    .shg-terms-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shg-terms-container {
        padding: 4rem 1rem 2rem;
    }
    
    .shg-terms-title {
        font-size: 1.8rem;
    }
    
    .shg-terms-section h2 {
        font-size: 1.2rem;
    }
    
    .shg-terms-section p {
        text-align: left;
    }
} 