* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6E93B0;
    --secondary-color: #76A1C4;
    --accent-color: #6487A3;
    --dark-color: #4D687D;
    --light-color: #fffffc;
    --text-color: #4D687D;
    --border-color: #6487A3;
    --shadow: 0 8px 25px rgba(160, 196, 255, 0.12);
    --transition: all 0.3s ease;
}

@keyframes rainbowGradient {
    0% {
        background: linear-gradient(-45deg, #76A1C4, #6E93B0, #6487A3, #57758D);
        background-size: 400% 400%;
        background-position: 0% 50%;
    }

    25% {
        background: linear-gradient(-45deg, #6E93B0, #6487A3, #57758D, #4D687D);
        background-size: 400% 400%;
        background-position: 25% 50%;
    }

    50% {
        background: linear-gradient(-45deg, #6487A3, #57758D, #4D687D, #76A1C4);
        background-size: 400% 400%;
        background-position: 50% 50%;
    }

    75% {
        background: linear-gradient(-45deg, #57758D, #4D687D, #76A1C4, #6E93B0);
        background-size: 400% 400%;
        background-position: 75% 50%;
    }

    100% {
        background: linear-gradient(-45deg, #76A1C4, #6E93B0, #6487A3, #57758D);
        background-size: 400% 400%;
        background-position: 0% 50%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(-45deg, #76A1C4, #6E93B0, #6487A3, #57758D, #4D687D, #6E93B0, #76A1C4, #6487A3);
    background-size: 400% 400%;
    animation: rainbowGradient 20s ease infinite;
    background-attachment: fixed;
    position: relative;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header Styles */
.top-header {
    background-color: #5B7A92;
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 999;
    pointer-events: auto;
}

.top-header:hover {
    background-color: #4D687D;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    order: 1;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 0.85rem;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.portal-toggle-header {
    display: flex;
    align-items: center;
    gap: 12px;
    order: 2;
    flex: 1;
    justify-content: center;
}

.portal-toggle-header-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #6E93B0 0%, #57758D 100%);
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    pointer-events: auto;
    z-index: 100;
}

.portal-toggle-header-btn i {
    font-size: 0.75rem;
}

.portal-toggle-header-btn:hover {
    background: linear-gradient(135deg, #76A1C4 0%, #6E93B0 100%);
    transform: translateY(-1px);
}

.portal-toggle-header-btn.active {
    background: #6E93B0;
    color: white;
    box-shadow: 0 2px 8px rgba(110, 99, 235, 0.3);
}

.portal-toggle-header-btn.active:hover {
    background: #57758D;
}

.social-links {
    display: flex;
    gap: 18px;
    order: 3;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navbar WhatsApp Icon Override */
.social-links .social-icon-link {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.social-links .social-icon-link:hover {
    transform: translateY(-2px) scale(1.1) !important;
}

/* Main Navigation */
.main-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(110, 147, 176, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    pointer-events: auto;
    overflow: visible !important;
}

.main-header:hover {
    box-shadow: 0 6px 20px rgba(110, 147, 176, 0.15);
}

.main-header .container {
    overflow: visible !important;
}

.navbar-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 6px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: visible;
    pointer-events: auto;
    min-height: 50px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-right: 0;
    white-space: nowrap;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 45px;
    }
}

.logo-text {
    font-size: 0.7rem;
    color: #000000;
    margin-bottom: 0;
    transition: color 0.3s ease;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    display: none;
    flex-direction: column;
    justify-content: center;
}

.logo:hover .logo-text {
    color: #333333;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    min-width: 0;
    position: relative;
    overflow: visible;
    pointer-events: auto;
    max-height: none !important;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    height: 100%;
}

.nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 15px;
    background: transparent;
    pointer-events: auto;
}

.nav-link {
    font-weight: 500;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4D687D;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6E93B0;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #6E93B0;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background-color: white;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    list-style: none;
    padding: 8px 0;
    pointer-events: none;
}

/* Hover bridge for dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    pointer-events: auto;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    font-weight: 400;
    transition: all 0.2s ease;
    pointer-events: auto;
    cursor: pointer;
    font-size: 0.9rem;
}

.dropdown a:hover {
    background-color: #DDF0F5;
    color: #6E93B0;
    padding-left: 25px;
}

.auth-buttons {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
    white-space: nowrap;
    max-width: 160px;
    padding-left: 12px;
    border-left: 1px solid #e0e0e0;
    pointer-events: auto;
}

.btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    pointer-events: auto;
}

.btn-login {
    background: transparent;
    color: #6E93B0;
    border: 2px solid #6E93B0;
    position: relative;
    overflow: hidden;
    padding: 6px 12px;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-login:hover {
    background: #DDF0F5;
    color: #6E93B0;
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.2);
    transform: translateY(-2px);
}

.btn-signup {
    background: linear-gradient(135deg, #6E93B0 0%, #57758D 100%);
    color: white;
    border: none;
    padding: 6px 12px;
}

.btn-signup:hover {
    background: linear-gradient(135deg, #76A1C4 0%, #6E93B0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.3);
}

.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.user-profile-nav.active {
    display: flex;
}

.btn-profile {
    background: linear-gradient(135deg, #6E93B0 0%, #57758D 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    font-size: 0.75rem;
}

.btn-profile:hover {
    background: linear-gradient(135deg, #76A1C4 0%, #6E93B0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.3);
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6E93B0, #57758D);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid #6E93B0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.avatar-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.3);
}

.btn-outline {
    background: transparent !important;
    color: #6E93B0 !important;
    border: 2px solid #6E93B0 !important;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-outline:hover {
    background: #DDF0F5 !important;
    color: #6E93B0 !important;
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.2) !important;
    transform: translateY(-2px) !important;
}

.mobile-toggle {
    display: none !important;
    font-size: 1.5rem;
    cursor: pointer !important;
    background: none;
    border: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
    z-index: 1001 !important;
    padding: 10px !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.mobile-toggle:hover {
    color: var(--primary-color);
    cursor: pointer !important;
}

.mobile-toggle:active {
    cursor: pointer !important;
}

/* Portal Toggle Section */
.portal-toggle-section {
    display: none;
}

.portal-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.portal-toggle-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #76A1C4 0%, #6E93B0 100%);
    color: white;
    transition: all 0.3s ease;
    min-width: auto;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.2);
}

.portal-toggle-btn i {
    font-size: 0.85rem;
}

.portal-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(110, 147, 176, 0.3);
    background: linear-gradient(135deg, #6E93B0 0%, #57758D 100%);
    color: white;
}

.portal-toggle-btn.active {
    background: linear-gradient(135deg, #57758D 0%, #4D687D 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.35);
    animation: buttonGlow 2s ease-in-out infinite;
}

.portal-toggle-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(110, 147, 176, 0.4);
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(110, 147, 176, 0.35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(110, 147, 176, 0.5);
    }
}

.portal-content {
    display: none;
}

.portal-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}



.btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.btn-primary {
    background: linear-gradient(135deg, #6E93B0 0%, #57758D 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(110, 147, 176, 0.3);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    border: 2px solid #6E93B0;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #76A1C4 0%, #6E93B0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 147, 176, 0.4);
    color: #ffffff;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #57758D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.3);
}

.btn-outline {
    background: transparent !important;
    color: #6E93B0 !important;
    border: 2px solid #6E93B0 !important;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
    z-index: -1;
}

.btn-outline:hover {
    background: #DDF0F5 !important;
    color: #6E93B0 !important;
    box-shadow: 0 4px 12px rgba(110, 147, 176, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content .subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: #6487A3;
    margin: 20px auto;
    border-radius: 2px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

/* Sections */
.content-section {
    padding: 80px 0;
    background: #F8FAFC;
    transition: background 0.4s ease;
}

.content-section:nth-child(even) {
    background: #FFFFFF;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #6487A3;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    transition: color 0.3s ease;
}

.section-title:hover {
    color: #6E93B0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #6E93B0;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.2rem;
    color: #4B5563;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Who We Are Section */
.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.who-we-are-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4D687D;
    font-size: 1.05rem;
    font-weight: 400;
}

.highlight-text {
    color: #000000;
    font-weight: 400;
}

.info-card {
    background: linear-gradient(135deg, #6E93B0 0%, #76A1C4 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 147, 176, 0.15);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(110, 147, 176, 0.3);
}

.info-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.info-card h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.4rem;
}

.info-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.problem-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    border-left: 5px solid #6E93B0;
    box-shadow: 0 2px 10px rgba(110, 147, 176, 0.1);
    transition: all 0.3s ease;
    color: #4D687D;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(110, 147, 176, 0.15);
    border-left-color: #76A1C4;
}

.problem-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #6487A3;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.problem-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-card h3:hover {
    color: #6E93B0;
}

.problem-card i {
    color: #6487A3;
    font-size: 1.8rem;
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4D687D;
    line-height: 1.7;
}

.problem-card li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #6E93B0;
    font-weight: bold;
    font-size: 1.2rem;
}

.problem-card.full-width {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Solution Section */
.solution-cards {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.solution-card {
    background: #FFFFFF;
    border-left: 5px solid #6E93B0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(110, 147, 176, 0.1);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateX(10px);
    border-left-width: 8px;
    box-shadow: 0 8px 25px rgba(110, 147, 176, 0.2);
}

.solution-card i {
    color: #6E93B0;
    font-size: 2rem;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.solution-card:hover i {
    transform: scale(1.2);
}

.solution-card p {
    color: #4D687D;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(110, 147, 176, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #6E93B0;
}

.principle-card:hover {
    border-top-color: #76A1C4;
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(110, 147, 176, 0.2);
}

.principle-card i {
    font-size: 3rem;
    color: #6E93B0;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.principle-card:hover i {
    transform: scale(1.15);
}

.principle-card h4 {
    font-family: 'Poppins', sans-serif;
    color: #6487A3;
    margin-bottom: 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.principle-card:hover h4 {
    color: #6E93B0;
}

.principle-card p {
    color: #4D687D;
    margin: 0;
    line-height: 1.6;
}

/* Vision Section */
.vision-content {
    background: linear-gradient(135deg, #6E93B0 0%, #57758D 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin-top: 40px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(110, 147, 176, 0.2);
}

.vision-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(110, 147, 176, 0.3);
}

.vision-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.vision-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #ffffff;
}

/* Company Info Section */
.info-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #DDF0F5 100%);
    color: #4D687D;
    padding: 50px;
    border-radius: 12px;
    margin-top: 40px;
    border: 2px solid #6E93B0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 147, 176, 0.1);
}

.info-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #6487A3;
    transition: color 0.3s ease;
}

.info-section h4:hover {
    color: #6E93B0;
}

.info-items {
    display: grid;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
}

.info-item i {
    color: #6E93B0;
    font-size: 1.3rem;
    margin-top: 3px;
    min-width: 25px;
    transition: color 0.3s ease;
}

.info-item:hover i {
    color: #76A1C4;
}

.info-item p {
    margin: 0;
    color: #4D687D;
    line-height: 1.6;
}

.info-item a {
    color: #6E93B0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
    color: #57758D;
}

/* Founder's Message Section */
.founder-message {
    background: linear-gradient(135deg, #DDF0F5 0%, #FFFFFF 100%);
    border-top: 2px solid #6E93B0;
    border-bottom: 2px solid #6E93B0;
    color: #4D687D;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.founder-message:hover {
    background: linear-gradient(135deg, #E0F2FE 0%, #DDF0F5 100%);
}

.founder-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236E93B0" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    pointer-events: none;
}

.founder-message-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.founder-image-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.founder-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #6E93B0;
    box-shadow: 0 8px 20px rgba(110, 147, 176, 0.3);
    transition: all 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(110, 147, 176, 0.4);
}

.founder-message-text {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    flex: 1;
    text-align: left;
}

.founder-message-text p {
    margin-bottom: 15px;
    color: #4D687D;
    transition: color 0.3s ease;
}

.founder-message-text p:hover {
    color: #6487A3;
}

.founder-signature {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    padding-top: 20px;
    border-top: 2px solid #6E93B0;
    margin-top: 20px;
    color: #6487A3;
    width: 100%;
    flex-basis: 100%;
    transition: color 0.3s ease;
}

.founder-signature:hover {
    color: #57758D;
}

/* Social Media Section in Footer */
.footer-social-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-social-icons h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.social-icons-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.social-icon-link:hover::before {
    left: 100%;
}

.social-icon-link.facebook {
    background: linear-gradient(135deg, #1877F2, #0A66C2);
    color: #ffffff;
}

.social-icon-link.facebook:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-icon-link.instagram {
    background: linear-gradient(135deg, #FD1D1D, #F77737, #FED373, #F15245);
    color: #ffffff;
}

.social-icon-link.instagram:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(253, 29, 29, 0.4);
}

.social-icon-link.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: #ffffff;
}

.social-icon-link.youtube:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-icon-link.whatsapp {
    background: linear-gradient(135deg, #6E93B0, #57758D);
    color: #ffffff;
    cursor: pointer;
}

.social-icon-link.whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(110, 99, 235, 0.4);
}

.social-icon-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon-link:hover i {
    transform: scale(1.2);
}

/* WhatsApp Modal */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.whatsapp-modal.active {
    display: flex;
}

.whatsapp-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(110, 99, 235, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.whatsapp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
}

.whatsapp-modal-header h2 {
    font-size: 1.5rem;
    color: #6E93B0;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-modal-header i {
    font-size: 1.8rem;
}

.whatsapp-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-close-btn:hover {
    color: #4D687D;
    transform: rotate(90deg);
}

.whatsapp-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-contact-item {
    background: linear-gradient(135deg, #DDF0F5, #DDF0F5);
    border: 2px solid #6E93B0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 99, 235, 0.25);
    border-color: #6487A3;
    background: linear-gradient(135deg, #DDF0F5, #E0F2FE);
}

.whatsapp-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: #6E93B0;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-label {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.whatsapp-btn-contact {
    background: linear-gradient(135deg, #6E93B0, #6487A3);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-btn-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(110, 99, 235, 0.3);
}

.whatsapp-modal-info {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #E5E7EB;
    font-size: 0.9rem;
    color: #6B7280;
}

.whatsapp-modal-info i {
    color: #6E93B0;
    margin-right: 5px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Main Styling */
.main-footer {
    background: linear-gradient(135deg, #6487A3 0%, #57758D 50%, #6E93B0 100%);
    color: #E0F2FE;
    padding: 60px 0 0;
    margin-top: 60px;
}

.main-footer .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-column p {
    color: #B3D9FF;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B3D9FF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 8px;
}

.footer-links a::before {
    content: '\203A';
    position: absolute;
    left: 0;
    color: #60A5FA;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 12px;
}

.footer-links a:hover::before {
    color: #93C5FD;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom div:first-child {
    text-align: center;
    margin-bottom: 20px;
}

.footer-bottom p {
    color: #B3D9FF;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #93C5FD;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar-wrapper {
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        box-sizing: border-box;
    }

    .logo {
        flex-shrink: 0;
        min-width: auto;
        gap: 4px;
        align-items: center;
        order: 1;
    }

    .logo img {
        height: 45px;
        width: auto;
    }

    .logo-text {
        font-size: 0.6rem;
        line-height: 1;
        display: block;
    }

    .mobile-toggle {
        display: flex;
        cursor: pointer;
        font-size: 1.2rem;
        color: #FFFFFF;
        order: 2;
        flex-shrink: 0;
        margin-right: auto;
    }

    .nav-menu {
        flex-basis: 100%;
        order: 3;
        margin-top: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu.active {
        max-height: 350px;
    }

    .nav-list {
        gap: 6px;
        font-size: 0.8rem;
        flex-direction: column;
        width: 100%;
        padding: 8px 0;
        list-style: none;
    }

    .auth-buttons {
        order: 4;
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        gap: 4px;
    }

    .btn {
        padding: 5px 8px;
        font-size: 0.65rem;
        flex: 1;
        min-width: 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .principles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 25px;
    }

    .who-we-are-content p {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .founder-message-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }

    .founder-message-text {
        text-align: center;
        font-size: 0.95rem;
    }

    .founder-signature {
        text-align: center;
        border-top: 2px solid #6E93B0;
        width: 100%;
        padding-top: 15px;
        margin-top: 15px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-card h4 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    .problem-card {
        padding: 20px;
        border-left: 4px solid #6E93B0;
    }

    .problem-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .problem-card.full-width {
        max-width: 100%;
    }

    .solution-cards {
        gap: 12px;
    }

    .solution-card {
        padding: 20px;
    }

    .vision-content {
        padding: 30px 20px;
    }

    .vision-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .vision-content p {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .info-section {
        padding: 30px 20px;
    }

    .info-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .founder-image {
        width: 130px;
        height: 130px;
    }

    .hero-section {
        padding: 50px 0;
        min-height: auto;
    }

    .content-section {
        padding: 40px 0;
    }

    .info-item {
        gap: 10px;
        padding: 8px 0;
    }

    .info-item i {
        font-size: 1rem;
    }

    .founder-message {
        padding: 50px 0;
    }

    .main-footer {
        padding: 30px 0 0;
        margin-top: 40px;
    }

    .footer-social-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social-icons {
        align-items: center;
    }

    .social-icons-container {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .social-icon-link {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .container {
        padding: 0 12px;
        overflow-x: hidden;
    }
}

@media (max-width: 576px) {

    html,
    body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }

    .navbar-wrapper {
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px 10px;
        justify-content: space-between;
        box-sizing: border-box;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
        order: 2;
        font-size: 1.1rem;
        flex-shrink: 0;
        padding: 0;
    }

    .logo {
        order: 1;
        flex-shrink: 1;
        min-width: 0;
        gap: 3px;
    }

    .logo img {
        height: 35px;
        width: auto;
        flex-shrink: 0;
    }

    .logo-text {
        display: none;
    }

    .nav-menu {
        display: none;
        flex-basis: calc(100% - 0px);
        order: 3;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex;
        flex-basis: 100%;
        margin-top: 6px;
        width: 100%;
    }

    .nav-list {
        gap: 4px;
        font-size: 0.75rem;
        flex-direction: column;
        width: 100%;
        padding: 6px 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .auth-buttons {
        order: 4;
        width: 100%;
        margin-top: 6px;
        gap: 3px;
        box-sizing: border-box;
    }

    .btn {
        padding: 4px 6px;
        font-size: 0.6rem;
        flex: 1;
        min-width: 0;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .problem-card {
        padding: 15px;
        border-left: 3px solid #6E93B0;
    }

    .problem-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .problem-card i {
        font-size: 1.3rem;
    }

    .problem-card.full-width {
        max-width: 100%;
    }

    .info-card {
        padding: 18px 12px;
    }

    .info-card h4 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .vision-content {
        padding: 20px 15px;
    }

    .vision-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .vision-content p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .info-section {
        padding: 20px 15px;
    }

    .info-section h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .founder-image {
        width: 100px;
        height: 100px;
    }

    .founder-message-content {
        gap: 15px;
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
    }

    .founder-message-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .founder-signature {
        font-size: 0.85rem;
        padding-top: 12px;
        margin-top: 12px;
        text-align: center;
        width: 100%;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content .subtitle {
        font-size: 0.95rem;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .hero-section {
        padding: 35px 0;
        min-height: auto;
    }

    .content-section {
        padding: 25px 0;
    }

    .info-item {
        gap: 8px;
        padding: 8px 0;
    }

    .info-item i {
        font-size: 1rem;
    }

    .founder-message {
        padding: 40px 0;
    }

    .main-footer {
        padding: 25px 0 0;
        margin-top: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-icons-container {
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-icon-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-social-icons h4 {
        font-size: 0.9rem;
    }

    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-column p,
    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social-section {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .container {
        padding: 0 10px;
        overflow-x: hidden !important;
        box-sizing: border-box;
        width: 100%;
    }
}

/* Extra small devices (< 480px) */
@media (max-width: 480px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .who-we-are-content p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 25px 0;
    }

    .content-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .section-intro {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .problem-card {
        padding: 12px;
    }

    .problem-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .problem-card ul {
        font-size: 0.8rem;
    }

    .problem-card ul li {
        margin-bottom: 4px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .principle-card {
        padding: 15px 12px;
    }

    .principle-card h4 {
        font-size: 0.95rem;
    }

    .principle-card p {
        font-size: 0.8rem;
    }

    .solution-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .solution-card {
        padding: 15px;
    }

    .solution-card p {
        font-size: 0.85rem;
    }

    .whatsapp-modal-content {
        width: 90vw;
        max-width: 90vw;
    }

    .whatsapp-contact-item {
        padding: 12px;
    }

    .modal-content {
        width: 90vw;
        max-width: 90vw;
    }

    .container {
        padding: 0 8px;
    }

    .navbar-wrapper {
        padding: 6px 8px;
    }

    .logo img {
        height: 32px;
    }

    .btn {
        padding: 3px 5px;
        font-size: 0.55rem;
    }

    .info-card {
        padding: 15px 10px;
    }

    .info-card i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .info-card h4 {
        font-size: 0.95rem;
    }

    .info-card p {
        font-size: 0.8rem;
    }

    .founder-message-text {
        font-size: 0.8rem;
    }

    .founder-signature {
        font-size: 0.75rem;
    }

    .footer-column h3 {
        font-size: 0.9rem;
    }

    .footer-column p,
    .footer-links a {
        font-size: 0.75rem;
    }

    .top-header .container {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .contact-info {
        gap: 8px;
        justify-content: center;
    }

    .contact-info a {
        font-size: 0.65rem;
        gap: 3px;
    }

    .social-links {
        gap: 8px;
    }

    .social-links a {
        font-size: 1rem;
    }
}

/* Tablet and small screens optimization */
@media (min-width: 577px) and (max-width: 768px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .principles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .founder-message-content {
        flex-direction: column;
        align-items: center;
    }

    .founder-message-text {
        text-align: center;
    }

    .founder-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .founder-image {
        width: 120px;
        height: 120px;
    }
}
