/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 30%, #90CAF9 70%, #64B5F6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity var(--transition-slow) ease-out, visibility var(--transition-slow);
    backdrop-filter: blur(10px);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    color: #1976D2;
}

.preloader-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
    color: var(--primary-color);
}

.preloader-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #E3F2FD;
    border-top: 4px solid #1976D2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1976D2;
    --primary-dark: #1565C0;
    --primary-light: #2196F3;
    --secondary-color: #4CAF50;
    --accent-color: #FF6B35;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(25, 118, 210, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #1976D2 0%, #2196F3 50%, #42A5F5 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD93D 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: opacity var(--transition-base);
}

body.loaded {
    opacity: 1;
}

body:not(.loaded) {
    opacity: 0;
}

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

/* React-like Page Transition */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.page-transition.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation - React-like Component */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition-base);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(25, 118, 210, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1976D2;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 12px;
}

.nav-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 12px;
    transition: opacity var(--transition-base);
}

.nav-logo:hover::before {
    opacity: 0.1;
}

.nav-logo:hover {
    transform: translateY(-2px) scale(1.03);
    color: #2196F3;
}

.nav-logo i {
    margin-right: 0.8rem;
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-logo:hover i {
    transform: rotate(15deg) scale(1.1);
}

.nav-logo span {
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    background: transparent;
    font-size: 0.95rem;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-base);
    border-radius: 3px 3px 0 0;
}

.nav-link:hover::before {
    opacity: 0.12;
}

.nav-link:hover::after {
    width: 85%;
}

.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.nav-link span {
    position: relative;
    z-index: 1;
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.active {
    /* No special styling for active state */
}

.nav-link:hover i {
    transform: scale(1.15) rotate(8deg);
}

.nav-facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.nav-facebook::before {
    opacity: 0 !important;
}

.nav-facebook::after {
    display: none;
}

.nav-facebook:hover {
    background: linear-gradient(135deg, #166fe5, #2196F3) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    transform: translateY(-3px);
}

.nav-facebook i,
.nav-facebook span {
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    transition: transform 0.1s ease-out;
}

#home {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    transition: transform 0.1s ease-out;
}

/* Hero Section Styles */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    display: block;
    background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD93D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 8px solid white;
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* Tablet and up */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
    
    .hero-text {
        margin: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        width: auto;
        flex: 0 1 auto;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-image img {
        max-width: 400px;
        border-radius: 30px;
        border: 8px solid white;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-image img {
        max-width: 450px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
    
    .hero-image img {
        max-width: 500px;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #1976D2;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
}

.hero-puppy {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
    border: 8px solid white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #1976D2;
    z-index: 2;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.section-title {
    font-size: 3rem;
    color: #1976D2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(25, 118, 210, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.03), rgba(33, 150, 243, 0.03));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(25, 118, 210, 0.2);
}

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

.about-card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: #1976D2;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.about-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 6px solid white;
}

.about-image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid #4CAF50;
    max-width: 180px;
}

.about-image-badge span {
    color: #2E7D32;
    font-weight: 600;
    font-size: 0.9rem;
}

.fun-facts {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.fun-facts h3 {
    color: #1976D2;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fun-facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fun-fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.8), rgba(187, 222, 251, 0.8));
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
    cursor: pointer;
    min-height: 80px;
    border: 1px solid rgba(25, 118, 210, 0.1);
    box-shadow: var(--shadow-sm);
}

.fun-fact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(227, 242, 253, 1), rgba(187, 222, 251, 1));
    border-color: rgba(25, 118, 210, 0.2);
}

.fun-fact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.fun-fact-text {
    color: #1976D2;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
}

/* Tablet and up */
@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-image img {
        max-width: 400px;
        border-radius: 25px;
        border: 8px solid white;
    }
    
    .about-image-badge {
        top: -20px;
        right: -20px;
        max-width: 200px;
    }
    
    .fun-facts {
        padding: 3rem;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .about-content {
        gap: 5rem;
    }
    
    .about-image img {
        max-width: 450px;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Enhanced Blog Section */
.blog {
    padding: 6rem 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

/* Modern Blog Card Layout */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base) cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(25, 118, 210, 0.08);
    position: relative;
    will-change: transform;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(25, 118, 210, 0.1);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-card-date {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-category {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.blog-card-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    background: rgba(25, 118, 210, 0.05);
    align-self: flex-start;
    margin-top: auto;
}

.blog-card-link:hover {
    background: rgba(25, 118, 210, 0.1);
    transform: translateX(5px);
    color: var(--primary-light);
}

.blog-card-link i {
    transition: transform var(--transition-base);
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

/* Expandable Blog Content */
.blog-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
    background: var(--bg-white);
    border-top: 1px solid rgba(25, 118, 210, 0.1);
}

.blog-card.expanded .blog-expandable-content {
    max-height: 5000px;
    padding: 2rem;
}

.blog-card.expanded .blog-card-link {
    display: none;
}

.blog-card.expanded .blog-card-link-close {
    display: inline-flex;
}

.blog-card-link-close {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    background: rgba(25, 118, 210, 0.05);
    align-self: flex-start;
    margin-top: 1rem;
}

.blog-card-link-close:hover {
    background: rgba(25, 118, 210, 0.1);
    transform: translateX(-5px);
}

.blog-card-link-close i {
    transition: transform var(--transition-base);
}

.blog-card-link-close:hover i {
    transform: translateX(-3px);
}

.blog-full-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem auto;
    display: block;
    box-shadow: var(--shadow-md);
}

.blog-full-text {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.blog-full-text p {
    margin-bottom: 1.2rem;
}

.blog-full-text h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.blog-full-text h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.blog-full-text ul, .blog-full-text ol {
    margin: 1rem 0 1.5rem 2rem;
}

.blog-full-text li {
    margin-bottom: 0.5rem;
}

.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(25, 118, 210, 0.2);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.blog-date {
    color: #666666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date::before {
    content: '📅';
    font-size: 0.8rem;
}

.blog-category {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}

.blog-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.blog-content h3 {
    color: #1976D2;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(25, 118, 210, 0.05);
}

.read-more:hover {
    background: rgba(25, 118, 210, 0.1);
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Blog CTA Section */
.blog-cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    color: #1976D2;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Placeholder Images */
.placeholder-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #E3F2FD, #BBDEFB, #90CAF9, #64B5F6, #42A5F5);
    background-size: 400% 400%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1976D2;
    font-size: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: gradientMove 4s ease-in-out infinite;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.placeholder-image:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.placeholder-image:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.placeholder-image p {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    animation: titleGradient 3s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #2196F3, #42A5F5);
    border-radius: 2px;
    animation: titleLine 2s ease-in-out infinite;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleLine {
    0%, 100% { width: 80px; }
    50% { width: 120px; }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #F8FBFF;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #1976D2;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #E3F2FD;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat i {
    font-size: 2rem;
    color: #1976D2;
    margin-bottom: 0.5rem;
}

.stat h4 {
    color: #1976D2;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #000000;
    font-weight: 600;
}

/* Facebook Stories Section */
.facebook-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.facebook-stories .section-subtitle {
    text-align: center;
    color: #1976D2;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.facebook-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.facebook-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facebook-story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.25);
    border-color: #1976D2;
}

.facebook-story-card.loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-loading {
    text-align: center;
    color: #1976D2;
}

.story-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-loading p {
    font-size: 1rem;
    color: #666;
}

.facebook-story-content {
    padding: 1.5rem;
}

.facebook-story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.facebook-story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #1976D2;
}

.facebook-story-info h4 {
    color: #1976D2;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.facebook-story-timestamp {
    color: #666;
    font-size: 0.9rem;
}

.facebook-story-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.facebook-story-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.facebook-story-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.facebook-story-likes {
    color: #1976D2;
    font-weight: 500;
}

.facebook-story-share {
    background: #1976D2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.facebook-story-share:hover {
    background: #1565C0;
    transform: scale(1.05);
}

.facebook-connect {
    text-align: center;
}

.btn-facebook {
    background: #1877F2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}











/* Blog Section */
.blog {
    padding: 5rem 0;
    background: #E3F2FD;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-rows: auto;
    gap: 2rem;
    padding: 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .blog-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card:nth-child(1),
.blog-card:nth-child(2),
.blog-card:nth-child(3),
.blog-card:nth-child(4),
.blog-card:nth-child(5),
.blog-card:nth-child(6),
.blog-card:nth-child(7),
.blog-card:nth-child(8) {
    grid-column: auto; /* Let grid flow naturally */
    grid-row: auto;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #2196F3, #42A5F5, #64B5F6);
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.2);
    border-color: rgba(25, 118, 210, 0.3);
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-image .placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.blog-date {
    color: #666666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date::before {
    content: '📅';
    font-size: 0.8rem;
}

.blog-category {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
    transition: all 0.3s ease;
}

.blog-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.blog-content h3 {
    color: #1976D2;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(45deg, #1976D2, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Different text styles for variety */
.blog-card:nth-child(1) .blog-content h3 {
    background: linear-gradient(45deg, #1976D2, #2196F3, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(25, 118, 210, 0.3);
}

.blog-card:nth-child(2) .blog-content h3 {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-style: italic;
}

.blog-card:nth-child(3) .blog-content h3 {
    color: #1976D2;
    font-size: 1.3rem;
    border-left: 4px solid #1976D2;
    padding-left: 1rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.blog-card:nth-child(4) .blog-content h3 {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card:nth-child(5) .blog-content h3 {
    background: linear-gradient(45deg, #9C27B0, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 800;
}

.blog-content p {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

/* Different paragraph styles for variety */
.blog-card:nth-child(1) .blog-content p {
    color: #444444;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.blog-card:nth-child(2) .blog-content p {
    color: #666666;
    font-style: italic;
    line-height: 1.6;
}

.blog-card:nth-child(3) .blog-content p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: justify;
}

.blog-card:nth-child(4) .blog-content p {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

.blog-card:nth-child(5) .blog-content p {
    color: #444444;
    font-size: 1rem;
    line-height: 1.75;
    font-family: 'Georgia', serif;
}

.read-more {
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(25, 118, 210, 0.1);
    border-radius: 25px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.2), transparent);
    transition: left 0.5s;
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    color: #2196F3;
    background: rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.2);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #F0F8FF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--bg-white);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(33, 150, 243, 0.1));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item .placeholder-image {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    aspect-ratio: 1;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 50%, #0D47A1 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="6" cy="6" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="14" cy="6" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="6" cy="14" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="14" cy="14" r="0.8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: #90CAF9;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #90CAF9;
    border-bottom: 2px solid #90CAF9;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #E3F2FD;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E3F2FD;
}

.footer-section ul li i {
    color: #90CAF9;
    width: 16px;
    text-align: center;
}

.footer-section a {
    color: #E3F2FD;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-social .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    min-width: 140px;
    justify-content: center;
    border: none;
}

.footer-social .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-social .social-btn i {
    font-size: 1.2rem;
}

.footer-social .social-btn span {
    font-size: 0.95rem;
}

.footer-social .social-btn.facebook {
    background: #1877f2;
    color: white;
}

.footer-social .social-btn.facebook:hover {
    background: #166fe5;
}

.footer-social .social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.footer-social .social-btn.instagram:hover {
    background: linear-gradient(45deg, #e0852a 0%, #d55f33 25%, #c41f3a 50%, #b31f5d 75%, #a31575 100%);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: #90CAF9;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.9rem;
}

.axis-labs-credit {
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem !important;
    font-weight: 600;
    color: #BBDEFB !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.axis-labs-credit i {
    color: #90CAF9;
    font-size: 1.1rem;
}

.axis-labs-link {
    color: #E3F2FD !important;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.axis-labs-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #E3F2FD;
    transition: width var(--transition-base);
}

.axis-labs-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.axis-labs-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-logo i {
        font-size: 1.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px; /* Adjust top to match new navbar height */
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu .nav-link {
        justify-content: center;
        margin: 0.5rem 2rem;
        padding: 1rem 1.5rem;
        border-radius: 15px;
        background: rgba(25, 118, 210, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding-top: 100px; /* Adjust padding-top for fixed navbar */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }
    
    .social-buttons {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-image {
        order: -1; /* Move image above text on mobile */
    }

    .placeholder-image {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

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

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        max-width: 100%; /* Ensure blog grid takes full width on smaller screens */
    }

    .blog-card:nth-child(1),
    .blog-card:nth-child(2),
    .blog-card:nth-child(3),
    .blog-card:nth-child(4),
    .blog-card:nth-child(5),
    .blog-card:nth-child(6),
    .blog-card:nth-child(7),
    .blog-card:nth-child(8) {
        grid-column: auto; /* Let grid flow naturally */
        grid-row: auto;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-item .placeholder-image {
        height: 180px;
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-social .social-btn {
        min-width: 120px;
        padding: 0.75rem 1rem;
    }

    .article-title {
        font-size: 2.2rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .prev-article, .next-article {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .prev-article i, .next-article i {
        margin-bottom: 0.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .article-image .placeholder-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .placeholder-image {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.85rem;
    }

    .read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

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

    .gallery-item .placeholder-image {
        height: 150px;
        font-size: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section ul li,
    .footer-section a {
        font-size: 0.9rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-excerpt {
        font-size: 1rem;
    }

    .article-text h2 {
        font-size: 1.5rem;
    }

    .article-text h3 {
        font-size: 1.2rem;
    }

    .article-text p,
    .article-text li {
        font-size: 0.95rem;
    }
}

/* React-like Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fade-in {
    animation: fadeIn 0.6s ease both;
}

.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.scale-in {
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Image loading states */
img {
    opacity: 0;
    transition: opacity var(--transition-base);
}

img.loaded {
    opacity: 1;
}

.hero-content,
.about-text,
.blog-card,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Blog Article Pages */
.blog-article {
    padding: 120px 0 5rem;
    background: #F8FBFF;
    min-height: 100vh;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.article-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-style: italic;
    line-height: 1.7;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1976D2;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #2196F3;
    transform: translateX(-5px);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
}

.article-date {
    background: rgba(25, 118, 210, 0.1);
    color: var(--primary-color);
}

.article-category {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-sm);
}

.article-date {
    color: #5A6C7D;
    font-size: 0.9rem;
}

.article-category {
    background: #1976D2;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    padding: 1rem;
}

.article-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform var(--transition-slow);
    display: block;
    margin: 0 auto;
}

.article-image:hover img {
    transform: scale(1.02);
}

.article-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05), rgba(33, 150, 243, 0.05));
    pointer-events: none;
    border-radius: var(--border-radius-lg);
}

.article-text {
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(25, 118, 210, 0.08);
}

.article-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.9;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-text h2 {
    color: #1976D2;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    border-left: 4px solid #1976D2;
    padding-left: 1rem;
}

.article-text h3 {
    color: #1976D2;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.article-text p {
    margin-bottom: 1.5rem;
    color: #000000;
    font-size: 1.1rem;
}

.article-text ul, .article-text ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
    color: #000000;
}

.article-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: #E3F2FD;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #1976D2;
}

.article-footer p {
    margin: 0;
    font-size: 1.1rem;
    color: #1976D2;
}

.article-navigation {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.prev-article, .next-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #1976D2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.prev-article {
    text-align: left;
}

.next-article {
    text-align: right;
    justify-content: flex-end;
}

.prev-article:hover, .next-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.2);
    background: #F8FBFF;
}

.prev-article span, .next-article span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.prev-article h3, .next-article h3 {
    margin: 0.3rem 0 0;
    font-size: 1.1rem;
    color: #1976D2;
}

/* Responsive for blog articles */
@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .prev-article, .next-article {
        justify-content: center;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Basic Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(25, 118, 210, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-secondary span,
.btn-secondary i {
    position: relative;
    z-index: 2;
    transition: color var(--transition-fast);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: width var(--transition-base) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(25, 118, 210, 0.25);
}

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

.btn-facebook {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-facebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-facebook:hover::before {
    left: 100%;
}

.btn-facebook:hover {
    background: linear-gradient(45deg, #166fe5, #2196F3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    color: white;
}

.btn-social {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-facebook-hero {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
    color: white;
}

.btn-facebook-hero:hover {
    background: linear-gradient(45deg, #166fe5, #2196F3);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4);
    color: white;
}

.btn-instagram-hero {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram-hero:hover {
    background: linear-gradient(45deg, #e0852a 0%, #d55f33 25%, #c41f3a 50%, #b31f5d 75%, #a31575 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.4);
    color: white;
}

/* Mobile-First Responsive Design */
/* Base mobile styles (default) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation mobile optimization */
.navbar {
    padding: 1rem 0;
}

.nav-container {
    padding: 0 15px;
}

.nav-links {
    display: none; /* Hide on mobile by default */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }
}

.nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
    z-index: 999;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1976D2;
    transition: all var(--transition-base);
    background: rgba(25, 118, 210, 0.05);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-links a:hover::before {
    opacity: 0.1;
}

.nav-links a:hover {
    background: rgba(25, 118, 210, 0.12);
    border-color: rgba(25, 118, 210, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.15);
}

.nav-links a:last-child {
    margin-bottom: 0;
}

.nav-links a i,
.nav-links a span {
    position: relative;
    z-index: 1;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: block;
    background: rgba(25, 118, 210, 0.1);
    border: 2px solid rgba(25, 118, 210, 0.2);
    border-radius: 12px;
    font-size: 1.5rem;
    color: #1976D2;
    cursor: pointer;
    padding: 0.75rem 1rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-menu-btn:hover::before {
    opacity: 0.1;
}

.mobile-menu-btn:hover {
    background: rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
}

.mobile-menu-btn.active {
    background: rgba(25, 118, 210, 0.2);
    border-color: rgba(25, 118, 210, 0.4);
    transform: rotate(90deg) scale(1.05);
}

.mobile-menu-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.mobile-menu-btn.active i {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero section mobile */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
    

/* About section mobile */
.about {
    padding: 4rem 0;
}

.about-content {
    flex-direction: column;
    text-align: center;
}

.about-text {
    order: 2;
    margin-top: 2rem;
}

.about-image {
    order: 1;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Blog section mobile */
.blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-article {
    margin-bottom: 2rem;
}

/* Facebook Stories card mobile */
.facebook-stories-card {
    margin: 0 15px 2rem;
}

.facebook-stories-card .card-image {
    height: 200px;
}

.facebook-stories-card .card-content {
    padding: 1.5rem;
}

.facebook-stories-card h3 {
    font-size: 1.3rem;
}

/* Footer mobile */
.footer {
    padding: 3rem 0 2rem;
}

.footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Blog article mobile */
.blog-article {
    padding: 2rem 0;
}

.article-header {
    padding: 0 15px;
}

.article-title {
    font-size: 2rem;
    line-height: 1.2;
}

.article-content {
    padding: 0 15px;
}

.article-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
}

/* Facebook embeds mobile */
.facebook-embed {
    margin: 2rem 15px;
    max-width: 100%;
}

.facebook-embed iframe {
    width: 100%;
    min-height: 300px;
}

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-buttons a {
        width: auto;
    }
    
    .about-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .about-text {
        order: 1;
        margin-top: 0;
        margin-right: 2rem;
    }
    
    .about-image {
        order: 2;
        margin-bottom: 0;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-links a {
        padding: 0.5rem 1rem;
        border-bottom: none;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .footer-content {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
    
    .facebook-embed {
        margin: 3rem auto;
        max-width: 500px;
    }
}

/* Desktop styles (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .about-content {
        gap: 4rem;
    }
    
    .about-image img {
        max-width: 400px;
    }
    
    .facebook-embed {
        max-width: 600px;
    }
}

/* Large desktop styles (1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Ripple Effect - React-like */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn, .nav-link, .blog-card {
    position: relative;
    overflow: hidden;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .blog-article:hover,
    .hero-buttons a:hover,
    .footer-section a:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Increase touch targets */
    .nav-links a,
    .hero-buttons a,
    .blog-article,
    .footer-section a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better touch feedback */
    .blog-article:active,
    .hero-buttons a:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .blog-article {
        padding: 1.5rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-image img,
    .blog-article img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Floating Facebook Button */
/* Facebook CTA Section */
.facebook-cta-section {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 50%, #2196F3 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.facebook-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.facebook-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.facebook-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.facebook-cta-text {
    flex: 1;
    color: white;
}

.facebook-cta-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.facebook-cta-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.facebook-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #1877f2;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.facebook-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.1), transparent);
    transition: left 0.6s ease;
}

.facebook-cta-btn:hover::before {
    left: 100%;
}

.facebook-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.facebook-cta-btn i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.facebook-cta-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .facebook-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .facebook-cta-text h3 {
        font-size: 1.5rem;
    }
    
    .facebook-cta-text p {
        font-size: 1rem;
    }
    
    .facebook-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

.floating-facebook-btn {
    display: none;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .about,
    .blog-article {
        padding: 1rem 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .blog-article {
        page-break-inside: avoid;
    }
}

/* ============================================
   NEW SECTIONS DESIGN - HENDRIK KNAK
   ============================================ */

/* Hero Section New */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(25, 118, 210, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-badge-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-badge-new:hover::before {
    left: 100%;
}

.hero-badge-new:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    display: block;
    background: linear-gradient(45deg, #1976D2, #2196F3, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-text {
    display: block;
    font-size: 2rem;
    color: #666;
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-new, .btn-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary-new {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-new:hover::before {
    left: 100%;
}

.btn-primary-new:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(25, 118, 210, 0.4);
}

.btn-primary-new:active {
    transform: translateY(-2px) scale(1);
}

.btn-secondary-new {
    background: white;
    color: #1976D2;
    border: 2px solid #1976D2;
    position: relative;
    overflow: hidden;
}

.btn-secondary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-secondary-new span,
.btn-secondary-new i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-secondary-new:hover::before {
    width: 100%;
}

.btn-secondary-new:hover {
    color: white;
    border-color: #2196F3;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(25, 118, 210, 0.3);
}

.btn-secondary-new:active {
    transform: translateY(-2px) scale(1);
}

.hero-stats-mini {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.stat-item-mini:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.2);
}

.stat-item-mini i {
    color: #1976D2;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.stat-item-mini:hover i {
    transform: scale(1.2) rotate(5deg);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover {
    transform: scale(1.03);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-icon i {
    color: #1976D2;
    font-size: 1.2rem;
}

.icon-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1s;
}

.icon-3 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

/* About Section New */
.about-section-new {
    padding: 6rem 0;
    background: white;
}

.section-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.section-header-new:hover .section-badge::before {
    left: 100%;
}

.section-header-new:hover .section-badge {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.section-title-new {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.section-header-new:hover .section-title-new {
    transform: scale(1.02);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card-new:hover::before {
    transform: scaleX(1);
}

.about-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(25, 118, 210, 0.25);
    border-color: rgba(25, 118, 210, 0.3);
    background: rgba(255, 255, 255, 1);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.about-card-new:hover .card-icon-wrapper::before {
    width: 200px;
    height: 200px;
}

.about-card-new:hover .card-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(25, 118, 210, 0.4);
}

.card-icon-wrapper i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.about-card-new:hover .card-icon-wrapper i {
    transform: scale(1.2);
}

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

.about-card-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 1rem;
}

.about-card-new p {
    color: #666;
    line-height: 1.8;
}

.about-card-image {
    grid-column: span 1;
}

.about-image-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-card-image:hover .about-image-wrapper img {
    transform: scale(1.1);
}

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

@media (max-width: 968px) {
    .gallery-item-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Stats Section New */
.stats-section-new {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card-new {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card-new:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Journey Timeline Section */
.journey-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8FBFF 0%, #E3F2FD 100%);
}

.timeline-container {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1976D2, #2196F3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.6);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(25, 118, 210, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content:hover::before {
    height: 100%;
}
    width: calc(50% - 40px);
    transition: all 0.3s ease;
}

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

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

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

.timeline-date {
    color: #1976D2;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #1976D2;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Training Section New */
.training-section-new {
    padding: 6rem 0;
    background: white;
}

.training-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.training-image-side img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.training-content-side {
    padding: 2rem 0;
}

.training-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.training-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(25, 118, 210, 0.1);
    transform: translateX(10px);
}

.skill-item i {
    color: #1976D2;
    font-size: 1.2rem;
}

.skill-item span {
    color: #333;
    font-weight: 500;
}

/* Family Section */
.family-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFE0B2 100%);
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.family-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.family-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.family-card:hover::before {
    transform: scaleX(1);
}

.family-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 1);
}

.family-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.family-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.family-card:hover .family-icon::before {
    width: 200px;
    height: 200px;
}

.family-card:hover .family-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.family-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
    font-size: 2rem;
    color: white;
}

.family-card:hover .family-icon i {
    transform: scale(1.2);

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

.family-card h3 {
    font-size: 1.5rem;
    color: #FF6B35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.family-card p {
    color: #666;
    line-height: 1.8;
}

/* Blog Section New */
.blog-section-new {
    padding: 6rem 0;
    background: #F8FBFF;
}

.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .subtitle-text {
        font-size: 1.5rem;
    }
    
    .training-wrapper {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .section-title-new {
        font-size: 2.2rem;
    }
    
    .about-grid-new,
    .family-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .subtitle-text {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons-new {
        flex-direction: column;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid-new {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .blog-grid-new {
        grid-template-columns: 1fr;
    }
}

 