.elementor-518 .elementor-element.elementor-element-545b62d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-518 .elementor-element.elementor-element-978d05e{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-978d05e */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0d1117;
    overflow-x: hidden;
}

/* Highlight */
.highlight {
    color: #EFB810;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #EFB810;
    color: #0d1117;
}

.btn-primary:hover {
    background: #d4a00e;
}

/* Pillar CTA */
.pillar-cta {
    color: #EFB810;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.pillar-cta:hover {
    color: #fff;
}

/* Page Hero */
.page-hero {
    padding: 12rem 5% 5rem;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero h1 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 30%, #EFB810 60%, #f5d060 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerTitle 4s linear infinite;
    position: relative;
}

@keyframes shimmerTitle {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.page-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.page-hero p {
    font-size: 1.2rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    line-height: 1.7;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero p::before {
    content: '—';
    display: block;
    color: #EFB810;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.6; }
}

/* Page Content */
.page-content {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}


/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, #161b22 0%, #1a1f26 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

/* Animated border */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 40%, rgba(239, 184, 16, 0.5) 50%, transparent 60%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-card:hover::before {
    opacity: 1;
    animation: blogBorderGlow 3s linear infinite;
}

@keyframes blogBorderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.blog-card:hover {
    border-color: rgba(239, 184, 16, 0.3);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(239, 184, 16, 0.15);
}

.blog-card.featured {
    grid-column: span 2;
    display: flex;
}

.blog-card.featured img {
    flex: 0 0 55%;
    height: auto;
    min-height: 350px;
}

/* Image container */
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.blog-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* Read more overlay on image */
.blog-card::after {
    content: '→';
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(239, 184, 16, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0d1117;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 30px rgba(239, 184, 16, 0.5);
}

.blog-card.featured::after {
    top: 175px;
    left: 27.5%;
}

.blog-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.blog-card-content {
    padding: 1.75rem;
    position: relative;
    z-index: 2;
}

.blog-card.featured .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.2) 0%, rgba(239, 184, 16, 0.1) 100%);
    color: #EFB810;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(239, 184, 16, 0.3);
    transition: all 0.4s ease;
}

.blog-card:hover .blog-category {
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.3) 0%, rgba(239, 184, 16, 0.15) 100%);
    box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
}

.blog-card-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #fff;
    line-height: 1.4;
    transition: all 0.4s ease;
    position: relative;
}

.blog-card:hover .blog-card-content h3 {
    color: #EFB810;
}

.blog-card-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-card-content p {
    color: #aaa;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: center;
}

.blog-date,
.blog-read {
    color: #666;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.4s ease;
}

.blog-date::before {
    content: '📅';
    font-size: 0.75rem;
}

.blog-read::before {
    content: '⏱';
    font-size: 0.75rem;
}

.blog-card:hover .blog-date,
.blog-card:hover .blog-read {
    color: #888;
}

.blog-card-content .pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 3px;
    font-weight: 600;
}

.blog-card-content .pillar-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EFB810;
    transition: width 0.4s ease;
}

.blog-card:hover .blog-card-content .pillar-cta::after {
    width: 100%;
}


/* Final CTA Section */
.final-cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0a0d12 0%, #0d1117 50%, #0a0d12 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-content h2 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 30%, #EFB810 60%, #f5d060 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerCTA 4s linear infinite;
    position: relative;
}

@keyframes shimmerCTA {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.final-cta-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlinePulseCTA 2s ease-in-out infinite;
}

@keyframes underlinePulseCTA {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.7);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.final-cta-content p {
    color: #888;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
}

.final-cta-content p::before,
.final-cta-content p::after {
    content: '✦';
    color: rgba(239, 184, 16, 0.3);
    font-size: 0.8rem;
    margin: 0 0.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.final-cta-content p::after {
    animation-delay: 1s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Awesome Button Styles */
.final-cta-buttons .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.final-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    color: #0d1117;
    border: none;
    box-shadow: 
        0 5px 20px rgba(239, 184, 16, 0.4),
        0 0 40px rgba(239, 184, 16, 0.2);
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 
            0 5px 20px rgba(239, 184, 16, 0.4),
            0 0 40px rgba(239, 184, 16, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(239, 184, 16, 0.6),
            0 0 60px rgba(239, 184, 16, 0.3);
    }
}

.final-cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.final-cta-buttons .btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(239, 184, 16, 0.5),
        0 0 80px rgba(239, 184, 16, 0.3);
}

.final-cta-buttons .btn-primary:hover::before {
    left: 100%;
}

.final-cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.final-cta-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.2) 0%, rgba(239, 184, 16, 0.1) 100%);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.final-cta-buttons .btn-secondary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, transparent 40%, rgba(239, 184, 16, 0.5) 50%, transparent 60%);
    background-size: 300% 300%;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.final-cta-buttons .btn-secondary:hover {
    border-color: rgba(239, 184, 16, 0.5);
    color: #EFB810;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-buttons .btn-secondary:hover::before {
    width: 100%;
}

.final-cta-buttons .btn-secondary:hover::after {
    opacity: 1;
    animation: borderAnimateBtn 2s linear infinite;
}

@keyframes borderAnimateBtn {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .blog-card.featured img {
        flex: none;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 10rem 5% 4rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-content {
        padding: 3rem 5%;
    }
    
    .blog-card img {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-content h3 {
        font-size: 1.15rem;
    }
    
    .final-cta {
        padding: 5rem 5%;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
}/* End custom CSS */