/* Clean, minimalist company website inspired by Apple & Airbnb */

:root {
    --primary-color: #1a1a1a;
    --accent-color: #ff5a5f;
    --text-primary: #1a1a1a;
    --text-secondary: #717171;
    --text-light: #b0b0b0;
    --background: #ffffff;
    --background-light: #f9f9f9;
    --background-lighter: #fafafa;
    --border-light: #e8e8e8;
    --border-lighter: #f0f0f0;
    --shadow-light: 0 2px 16px rgba(0, 0, 0, 0.12);
    --shadow-medium: 0 6px 20px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.28);
}

/* General Styles */
* {
    box-sizing: border-box;
}

/* Subtle Fade-in Animation for Main Content */
@keyframes subtleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fade-in to main sections (excluding navigation) */
.hero-section,
.hero-section-small,
.section,
.post-card,
.founder-card,
.team-member-card,
.contact-redesign,
.empty-state {
    animation: subtleFadeIn 0.8s ease-out forwards;
}

/* Stagger animations for card grids */
.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }
.post-card:nth-child(5) { animation-delay: 0.5s; }
.post-card:nth-child(6) { animation-delay: 0.6s; }

.team-member-card:nth-child(1) { animation-delay: 0.1s; }
.team-member-card:nth-child(2) { animation-delay: 0.2s; }
.team-member-card:nth-child(3) { animation-delay: 0.3s; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.375rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.hero-section {
    background: var(--background);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
}

/* Hero Image Animation */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.hero-image-container::before,
.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero-image-container::before {
    background: radial-gradient(
        circle at 78% 28%,
        rgba(0, 150, 255, 0.8) 0%,
        transparent 0.5%
    ),
    radial-gradient(
        circle at 88% 42%,
        rgba(100, 200, 255, 0.7) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 72% 68%,
        rgba(255, 255, 255, 0.9) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 92% 78%,
        rgba(0, 180, 255, 0.6) 0%,
        transparent 0.6%
    ),
    radial-gradient(
        circle at 82% 15%,
        rgba(200, 220, 255, 0.7) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 75% 52%,
        rgba(120, 160, 255, 0.5) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 94% 35%,
        rgba(180, 200, 255, 0.6) 0%,
        transparent 0.5%
    ),
    radial-gradient(
        circle at 89% 18%,
        rgba(255, 255, 255, 0.8) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 67% 45%,
        rgba(100, 180, 255, 0.6) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 97% 55%,
        rgba(150, 200, 255, 0.7) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 74% 85%,
        rgba(0, 160, 255, 0.5) 0%,
        transparent 0.5%
    ),
    radial-gradient(
        circle at 86% 72%,
        rgba(220, 240, 255, 0.6) 0%,
        transparent 0.4%
    );
    animation: neuralFlashes1 1.2s ease-in-out infinite;
}

.hero-image-container::after {
    background: radial-gradient(
        circle at 84% 38%,
        rgba(150, 220, 255, 0.8) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 68% 58%,
        rgba(255, 255, 255, 0.9) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 96% 22%,
        rgba(0, 200, 255, 0.6) 0%,
        transparent 0.5%
    ),
    radial-gradient(
        circle at 76% 88%,
        rgba(120, 180, 255, 0.7) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 90% 52%,
        rgba(180, 200, 255, 0.6) 0%,
        transparent 0.6%
    ),
    radial-gradient(
        circle at 85% 65%,
        rgba(100, 150, 255, 0.5) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 73% 32%,
        rgba(200, 230, 255, 0.6) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 91% 12%,
        rgba(255, 255, 255, 0.7) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 69% 75%,
        rgba(80, 140, 255, 0.6) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 98% 48%,
        rgba(160, 190, 255, 0.5) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 77% 25%,
        rgba(0, 170, 255, 0.6) 0%,
        transparent 0.5%
    ),
    radial-gradient(
        circle at 93% 82%,
        rgba(240, 250, 255, 0.7) 0%,
        transparent 0.4%
    ),
    radial-gradient(
        circle at 71% 38%,
        rgba(110, 170, 255, 0.5) 0%,
        transparent 0.3%
    ),
    radial-gradient(
        circle at 87% 91%,
        rgba(190, 210, 255, 0.6) 0%,
        transparent 0.4%
    );
    animation: neuralFlashes2 1.8s ease-in-out infinite 0.6s;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Mobile Responsive Hero Layout */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 100vh !important;
        padding: 0 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        display: flex !important;
    }
    
    .hero-image-container {
        position: relative !important;
        width: 100% !important;
        height: 40vh !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        order: 1 !important;
        z-index: 1 !important;
    }
    
    .hero-section .container {
        width: 100% !important;
        padding: 3rem 1rem !important;
        background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, var(--background) 100%) !important;
        margin: -2rem 0 0 0 !important;
        border-radius: 20px 20px 0 0 !important;
        position: relative !important;
        z-index: 3 !important;
        order: 2 !important;
    }
    
    .hero-section .hero-content {
        text-align: center !important;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-image-container {
        height: 35vh;
    }
    
    .hero-section .container {
        padding: 2.5rem 1rem;
        margin-top: -1.5rem;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    animation: subtleNeuralActivity 6s ease-in-out infinite;
}

@keyframes subtleNeuralActivity {
    0% {
        filter: brightness(1) contrast(1) hue-rotate(0deg);
        box-shadow: 0 0 0 rgba(0, 150, 255, 0);
    }
    15% {
        filter: brightness(1.15) contrast(1.05) hue-rotate(5deg);
        box-shadow: 0 0 12px rgba(0, 150, 255, 0.3);
    }
    25% {
        filter: brightness(1) contrast(1) hue-rotate(0deg);
        box-shadow: 0 0 0 rgba(0, 150, 255, 0);
    }
    45% {
        filter: brightness(1.2) contrast(1.08) hue-rotate(-4deg);
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
    }
    55% {
        filter: brightness(1) contrast(1) hue-rotate(0deg);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    70% {
        filter: brightness(1.25) contrast(1.1) hue-rotate(8deg);
        box-shadow: 0 0 20px rgba(100, 200, 255, 0.4);
    }
    80% {
        filter: brightness(1) contrast(1) hue-rotate(0deg);
        box-shadow: 0 0 0 rgba(100, 200, 255, 0);
    }
    90% {
        filter: brightness(1.12) contrast(1.04) hue-rotate(-2deg);
        box-shadow: 0 0 8px rgba(200, 220, 255, 0.2);
    }
    100% {
        filter: brightness(1) contrast(1) hue-rotate(0deg);
        box-shadow: 0 0 0 rgba(0, 150, 255, 0);
    }
}

@keyframes neuralFlashes1 {
    0%, 70% {
        opacity: 0;
        transform: scale(0.8);
    }
    5%, 15% {
        opacity: 1;
        transform: scale(1.1);
    }
    25%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes neuralFlashes2 {
    0%, 60% {
        opacity: 0;
        transform: scale(0.9);
    }
    10%, 20% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    30%, 100% {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* Contact Page Styles */
.contact-redesign {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-lighter) 100%);
}

.contact-info-card {
    background: var(--background);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-lighter);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-info-card .card-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info-card .card-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-card .card-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-lighter);
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #ff7a5f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.contact-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Maps Container */
.maps-container {
    background: var(--background);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-lighter);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maps-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.maps-header {
    text-align: center;
    margin-bottom: 2rem;
}

.maps-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.maps-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.maps-embed {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.maps-iframe {
    border: 0;
    border-radius: 15px;
    width: 100%;
    height: 400px;
}

/* Call to Action Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary-color), #2a2a2a);
    color: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.cta-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: #ff4a4f;
    border-color: #ff4a4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.6);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 767.98px) {
    .contact-info-card,
    .maps-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-detail-item {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .maps-iframe {
        height: 300px;
    }
    
    .cta-card {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-card h3 {
        font-size: 2rem;
    }
    
    .cta-card p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Navigation Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-lighter);
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 0 !important;
    color: var(--text-secondary) !important;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link.active {
    color: var(--text-primary) !important;
    background: none !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    background: var(--background);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-body {
    padding: 3rem 2rem;
}

/* Button Styles */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-primary);
}

.btn-outline-primary:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-light {
    background: var(--background);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-light:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    color: var(--text-primary);
}

/* Icon Circle Styles */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.icon-circle-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.icon-circle-accent {
    background: var(--accent-color);
}

.card:hover .icon-circle {
    transform: scale(1.1);
}

/* Section Styles */
.section {
    padding: 8rem 0;
}

.section-sm {
    padding: 4rem 0;
}

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

.section-light {
    background: var(--background-lighter);
}

/* Container Styles */
.container {
    max-width: 1200px;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid var(--border-light);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: var(--background);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1);
    background: var(--background);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: white;
}

footer h5 {
    color: white;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Layout & Spacing */
.spacer {
    height: 4rem;
}

.spacer-sm {
    height: 2rem;
}

.spacer-lg {
    height: 6rem;
}

/* Text Styles */
.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .hero-section {
        padding: 4rem 0;
        text-align: center;
        min-height: 70vh;
    }
    
    .card-body {
        padding: 2rem 1.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Placeholder Image Styles */
.placeholder-hero {
    min-height: 400px;
    border: 2px dashed var(--border-light);
    background: var(--background-lighter);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Hero Section with Edge-to-Edge Image */
.hero-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 0 20px 20px 0;
    margin-right: -15px;
    padding-right: 3rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        min-height: unset;
    }
    
    .hero-image-container {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
        margin-top: 2rem;
    }
    
    .hero-content {
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border-radius: 0;
        margin-right: 0;
        padding: 2rem 0;
        order: 1;
    }
    
    .col-lg-6 {
        display: flex;
        flex-direction: column;
    }
}

/* Premium Features Section */
.features-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.features-header {
    margin-bottom: 4rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--background);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary-color), 0.1);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    flex-shrink: 0;
    position: relative;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: #2d3748;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover .icon-bg {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.icon-bg i {
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 1;
    position: relative;
    transition: color 0.3s ease;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        gap: 2rem;
    }
}

/* Dark Section Styling */
.section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--background);
    position: relative;
}

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

.section-dark .trusted-by-heading {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .company-logo {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

.section-dark .trusted-company:hover .company-logo {
    background: #ffffff;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
}

/* Trusted By Section */
.trusted-by-heading {
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 3rem !important;
}

.trusted-company {
    padding: 0.75rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trusted-company:hover {
    transform: translateY(-3px);
}

.company-logo {
    background: var(--background);
    border: none;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-img {
    max-width: 90%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.trusted-company:hover .company-logo {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.trusted-company:hover .company-logo::before {
    opacity: 1;
}

.trusted-company:hover .logo-img {
    opacity: 1;
    transform: scale(1.02);
}

/* Contact Page Specific */
.contact-sidebar {
    top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Sticky Navigation Enhancement */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-light);
}

/* Team Page Styles */

/* Hero Section Small */
.hero-section-small {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-lighter) 100%);
}

/* Founder Section - Prominent */
.founder-section {
    padding: 4rem 0;
    background: var(--background);
}

.founder-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.founder-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 4px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.founder-card:hover .founder-photo img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.founder-social {
    display: flex;
    gap: 1rem;
}

.founder-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.founder-social a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.team-member-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26, 26, 26, 0.1);
}

.team-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.team-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.team-member-card:hover .team-photo img {
    border-color: var(--primary-color);
}

.team-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.team-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design for Team Page */
@media (max-width: 768px) {
    .hero-section-small {
        padding: 4rem 0 2rem;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .founder-photo img {
        width: 150px;
        height: 150px;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .founder-role {
        font-size: 1.1rem;
    }
    
    .founder-bio,
    .founder-description {
        font-size: 1rem;
    }
    
    .founder-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .team-member-card {
        padding: 1.5rem;
    }
    
    .team-photo img {
        width: 100px;
        height: 100px;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .team-bio {
        font-size: 0.9rem;
    }
}

/* Blog and Projects Styles */

/* Featured Posts/Projects Section */
.featured-posts-section,
.featured-projects-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.projects-section {
    padding: 4rem 0;
}

/* Enhanced Project Card Styles */
.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 240px;
    background: var(--background-light);
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--background-light);
}

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

.project-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-light) 0%, #f8f9fa 100%);
    color: var(--text-light);
    position: relative;
}

.placeholder-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.project-card:hover .image-overlay {
    opacity: 1;
}

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

.overlay-content {
    text-align: center;
    color: white;
    font-weight: 600;
}

.overlay-content i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    z-index: 4;
}

.featured-badge i {
    font-size: 0.7rem;
}

/* Enhanced Project Meta */
.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.project-lead {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.project-lead i {
    font-size: 0.875rem;
    color: var(--accent-color);
}

.project-details {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.project-year,
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-year i,
.reading-time i {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Enhanced Project Tags */
.project-tag {
    background: linear-gradient(135deg, var(--background-light) 0%, #f1f3f4 100%);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.project-tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-1px);
}

.project-tag-more {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Project Footer */
.project-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.project-footer .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.project-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-footer .btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.project-footer .btn:hover i {
    transform: translateX(3px);
}

/* Enhanced Empty State */
.empty-state {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    margin-bottom: 2rem;
}

.empty-icon i {
    font-size: 4rem;
    color: var(--text-light);
    opacity: 0.6;
}

.empty-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.empty-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.empty-state .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
}

.post-card,
.project-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.post-card:hover,
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26, 26, 26, 0.1);
}

.post-image,
.project-image {
    overflow: hidden;
    height: 200px;
}

.post-image img,
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.post-card:hover .post-image img,
.project-card:hover .project-image img {
    transform: scale(1.05);
}

.post-content,
.project-content {
    padding: 1.5rem;
}

.post-meta,
.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.post-meta .badge,
.project-meta .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.post-title,
.project-title {
    margin-bottom: 1rem;
}

.post-title a,
.project-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-title a:hover,
.project-title a:hover {
    color: var(--accent-color);
}

.post-excerpt,
.project-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-tags,
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--background-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Article/Project Detail Styles */
.blog-article,
.project-article {
    padding-top: 2rem;
}

.article-header,
.project-header {
    padding: 4rem 0 2rem;
    background: var(--background-light);
}

.article-meta,
.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.article-title,
.project-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-excerpt,
.project-excerpt {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-image,
.project-image {
    padding: 2rem 0;
}

.article-content,
.project-content {
    padding: 3rem 0;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body ul,
.content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

.content-body blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Article/Project Footer */
.article-footer,
.project-footer {
    padding: 3rem 0;
    background: var(--background-light);
}

.author-info,
.project-lead-info {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.author-social,
.lead-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.author-social a,
.lead-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover,
.lead-social a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Related Posts/Projects */
.related-posts-section,
.related-projects-section {
    padding: 3rem 0;
    background: var(--background);
}

.related-post-card,
.related-project-card {
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.related-post-card:hover,
.related-project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.related-post-image,
.related-project-image {
    height: 120px;
    overflow: hidden;
}

.related-post-image img,
.related-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-content,
.related-project-content {
    padding: 1rem;
}

.related-post-title,
.related-project-title {
    margin-bottom: 0.5rem;
}

.related-post-title a,
.related-project-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}

.related-post-title a:hover,
.related-project-title a:hover {
    color: var(--accent-color);
}

.related-post-excerpt,
.related-project-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.related-post-meta,
.related-project-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    gap: 0.5rem;
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.empty-state h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--text-primary);
    border-color: var(--border-light);
    padding: 0.75rem 1rem;
}

.pagination .page-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--background-light);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Project Cards */
.project-card {
    background: var(--background);
    border-radius: 16px;
    border: 1px solid var(--border-lighter);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-light);
}

.project-card.featured-project {
    border: 2px solid var(--accent-color);
    position: relative;
}

.project-card.featured-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff7a7f);
    z-index: 1;
}



.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

/* Override Bootstrap img-fluid to ensure full height */
.project-image img.img-fluid {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    min-height: 200px !important;
    object-fit: cover !important;
    display: block !important;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px !important;
    min-height: 200px !important;
    background: var(--background-light);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-lighter) 100%);
    color: var(--text-light);
    font-size: 3rem;
    height: 100%;
    width: 100%;
}

.placeholder-content {
    text-align: center;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.project-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    font-weight: 500;
}

.overlay-content i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(255, 90, 95, 0.3);
}

.featured-badge i {
    font-size: 0.7rem;
}

.project-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.project-lead,
.project-year,
.reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-meta i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.project-title {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.project-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-title a:hover {
    color: var(--accent-color);
}

.project-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tag {
    background: var(--background-lighter);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-lighter);
    transition: all 0.2s ease;
}

.project-tag:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.project-tag-more {
    background: var(--text-light);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Remove grey box from button area completely */
.project-footer {
    margin-top: 16px !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Override all Bootstrap button styles */
.project-footer .btn,
.project-footer .btn-outline-primary,
.project-footer .btn-sm {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.project-footer .btn:hover,
.project-footer .btn-outline-primary:hover,
.project-footer .btn-sm:hover {
    background: var(--accent-color) !important;
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 90, 95, 0.25) !important;
}

.project-footer .btn i {
    transition: transform 0.2s ease !important;
    font-size: 0.75rem !important;
}

.project-footer .btn:hover i {
    transform: translateX(2px) !important;
}

/* Blog Cards - Similar to Project Cards */
.post-card {
    background: var(--background);
    border-radius: 16px;
    border: 1px solid var(--border-lighter);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-light);
}

.post-card.featured-post {
    border: 2px solid var(--accent-color);
    position: relative;
}

.post-card.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ff7a7f);
    z-index: 1;
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 200px !important;
    min-height: 200px !important;
    background: var(--background-light);
}

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

/* Override Bootstrap img-fluid for blog posts */
.post-image img.img-fluid {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    min-height: 200px !important;
    object-fit: cover !important;
    display: block !important;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.post-meta .badge {
    background: var(--accent-color) !important;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-meta .author,
.post-meta .date,
.post-meta .reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-title {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--accent-color);
}

.post-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.post-tags .tag {
    background: var(--background-lighter);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-lighter);
    transition: all 0.2s ease;
}

.post-tags .tag:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    text-decoration: none !important;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    margin-top: auto;
}

.read-more:hover {
    background: var(--accent-color) !important;
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 90, 95, 0.25) !important;
}

/* Featured Posts Section */
.featured-posts-section {
    background: var(--background-light);
    padding: 80px 0;
}

.featured-posts-section h2 {
    color: var(--text-primary);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
}

/* Featured Projects Section */
.featured-projects-section {
    background: var(--background-light);
    padding: 80px 0;
}

.featured-projects-section .section-title {
    color: var(--text-primary);
}

.featured-projects-section .section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* All Projects Section */
.projects-section {
    padding: 80px 0;
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.empty-title {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.empty-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1rem;
}

/* Trusted Companies Section */
.section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.trusted-company {
    background: white;
    border-radius: 12px;
    padding: 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trusted-company:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trusted-company .logo-img {
    /* max-width: 140px;
    max-height: 70px; */
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.trusted-company:hover .logo-img {
    transform: scale(1.05);
}

/* Contact Form Styling */
.contact-form-section {
    margin-top: 1.5rem;
}

.contact-form {
    margin-top: 1rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.15);
    background-color: white;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.contact-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

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

/* Form Status Messages */
#form-status {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

#form-status.success {
    background-color: #d1edff;
    color: #0066cc;
    border: 1px solid #b3d9ff;
}

#form-status.error {
    background-color: #ffe6e6;
    color: #cc0000;
    border: 1px solid #ffb3b3;
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .contact-form .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Responsive adjustments for trusted companies */
@media (max-width: 768px) {
    .section-dark {
        padding: 60px 0;
    }
    
    .trusted-company {
        height: 80px;
        padding: 20px;
    }
    
    .logo-img {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .trusted-company {
        height: 70px;
        padding: 16px;
    }
    
    .logo-img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Responsive Design for Blog/Projects */
@media (max-width: 768px) {
    .article-header,
    .project-header {
        padding: 2rem 0 1rem;
    }
    
    .article-content,
    .project-content {
        padding: 2rem 0;
    }
    
    .content-body {
        font-size: 1rem;
    }
    
    .post-content,
    .project-content {
        padding: 1rem;
    }
    
    .author-info,
    .project-lead-info {
        padding: 1.5rem;
    }
    
    /* Project Cards Mobile */
    .project-image-wrapper {
        height: 180px !important;
        min-height: 180px !important;
    }
    
    .project-image img.img-fluid {
        min-height: 180px !important;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .project-details {
        gap: 12px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-excerpt {
        font-size: 0.9rem;
    }
    
    .featured-projects-section,
    .projects-section {
        padding: 60px 0;
    }
    
    /* Blog Cards Mobile */
    .post-image {
        height: 180px !important;
        min-height: 180px !important;
    }
    
    .post-image img.img-fluid {
        min-height: 180px !important;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-meta {
        gap: 8px;
    }
    
    .post-title {
        font-size: 1.1rem;
    }
    
    .post-excerpt {
        font-size: 0.9rem;
    }
    
    .featured-posts-section,
    .blog-posts-section {
        padding: 60px 0;
    }
}
