/* ============================================
   SRI DURGA STUDIOX - PREMIUM STYLES
   ============================================ */

/* ============ 1. ROOT VARIABLES ============ */
:root {
    --lime: #e0ff1e;
    --green: #51733f;
    --dark: #1b1c1e;
    --light: #ecedde;
    --bg: #d2d3c3;
    --white: #ffffff;
    --gray: #666;
}

/* ============ 2. RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ 3. HEADER ============ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--light);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 50px; }

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav ul li a {
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after { width: 100%; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--light);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 15px; }
.mobile-menu ul li a { font-size: 18px; font-weight: 600; }

/* ============ 4. HERO SECTION ============ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--bg) 100%);
    padding: 100px 0 50px;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Hero Image - No border, no shadow */
.hero-image {
    order: 1;
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 350px;
    border-radius: 50%;
    border: none !important;
    box-shadow: none !important;
    animation: heroFloat 4s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Text */
.hero-text { order: 2; text-align: center; }

/* Premium Hero Title with Matrix Effect */
.hero-title {
    font-family: 'Cinzel', serif !important;
    font-size: clamp(40px, 5vw, 70px) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title .line1 {
    display: block;
    font-size: 0.4em !important;
    letter-spacing: 8px !important;
    color: #51733f;
    font-weight: 400 !important;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-title .line2 {
    display: inline-block;
    font-size: 0.9em !important;
    color: #1b1c1e;
    position: relative;
    animation: fadeInUp 1s ease 0.5s both;
}

/* Matrix scramble effect on hover */
.hero-title .line2 .matrix-char {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-title .line2:hover .matrix-char {
    animation: matrixScramble 0.5s ease;
}

@keyframes matrixScramble {
    0% { transform: translateY(0); opacity: 1; }
    25% { transform: translateY(-10px); opacity: 0; color: #e0ff1e; }
    50% { transform: translateY(10px); opacity: 1; color: #51733f; }
    75% { transform: translateY(-5px); opacity: 0.7; color: #e0ff1e; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.7s both;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn-primary:hover {
    background: var(--lime);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============ 5. ABOUT SECTION ============ */
.about-section {
    padding: 100px 0;
    background: var(--bg);
}

.about-greeting {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--lime);
}

.about-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* About Canvas - UI/UX Animation Container */
.about-canvas {
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
    padding: 80px 40px;
    overflow: visible !important;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.ux-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Wallet Card Stack */
.card-stack {
    position: relative;
    width: 200px;
    height: 250px;
    transform-style: preserve-3d;
    cursor: pointer;
    transition: all 0.5s ease;
}

.ux-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* UI/UX Animation Elements - JS will inject here */
.ux-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ux-element {
    position: absolute;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0ff1e;
    animation: uxFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.ux-element:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(224, 255, 30, 0.3);
    z-index: 10;
}

.ux-element-1 { top: 10%; left: 5%; animation-delay: 0s; }
.ux-element-2 { top: 30%; right: 10%; animation-delay: 0.5s; }
.ux-element-3 { bottom: 15%; left: 15%; animation-delay: 1s; }
.ux-element-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes uxFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.ux-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.ux-label {
    font-weight: 700;
    color: #51733f;
    font-size: 14px;
}

/* Animated Cursor */
.ux-cursor {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #51733f;
    border-radius: 50%;
    animation: cursorMove 6s ease-in-out infinite;
    z-index: 20;
    pointer-events: none;
}

.ux-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #e0ff1e;
    border-radius: 50%;
}

@keyframes cursorMove {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(100px, -50px); }
    40% { transform: translate(200px, 0); }
    60% { transform: translate(150px, 50px); }
    80% { transform: translate(50px, -20px); }
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* ============ 6. SERVICES SECTION ============ */
.services-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.services-section .section-title {
    background: linear-gradient(135deg, var(--white), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--lime);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(224,255,30,0.2);
}

.service-number {
    font-size: 50px;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.service-link {
    color: var(--lime);
    font-weight: 600;
}

/* ============ 7. PORTFOLIO SECTION ============ */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.portfolio-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

/* Portfolio Info - White text on dark gradient */
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: #ffffff;
    z-index: 2;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--lime);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-info h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.year {
    color: #e0ff1e !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============ 8. STATS SECTION ============ */
.stats-section {
    padding: 100px 0;
    background: var(--light);
}

.stats-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), var(--lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

/* ============ 9. TESTIMONIALS SECTION ============ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg);
}

/* Testimonials Slider Wrapper - created by JS */
.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
}

.testimonials-slider-wrapper:active {
    cursor: grabbing;
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    user-select: none;
}

.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--lime);
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonial Navigation Arrows - created by JS */
.testimonial-nav { display: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #51733f;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background: #e0ff1e;
    color: #1b1c1e;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev { left: -20px; }
.testimonial-nav.next { right: -20px; }

/* ============ 10. BLOG SECTION ============ */
.blog-section {
    padding: 100px 0;
    background: var(--light);
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-left: 5px solid var(--lime);
}

.blog-date {
    font-size: 14px;
    color: var(--gray);
    display: block;
    margin-bottom: 10px;
}

.blog-item h3 { font-size: 20px; }
.blog-arrow { font-size: 30px; color: var(--green); }

/* ============ 11. FOOTER SECTION ============ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

/* Footer Image - with background */
/* ============ FOOTER IMAGE STYLES ============ */
.footer-image-wrapper {
    position: relative;
    background-image: url('https://raw.githubusercontent.com/sridurgastudiox/sridurgastudioX/refs/heads/main/Footer_Bg_sridurgastudiox.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-profile-img {
    position: relative;
    z-index: 2;
    max-width: 300px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    animation: footerFloat 4s ease-in-out infinite;
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-image-wrapper {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .footer-profile-img {
        max-width: 200px;
    }
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.footer-links ul li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--lime);
    padding-left: 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p { color: var(--gray); }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { color: var(--gray); font-size: 14px; }
.footer-nav a:hover { color: var(--lime); }

/* ============ 12. BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }

.back-to-top:hover {
    background: var(--lime);
    color: var(--dark);
    transform: translateY(-5px);
}

/* ============ 13. RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content-wrapper { flex-direction: column; }
    .hero-image img { max-width: 300px; }
    .about-content { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 280px; max-width: 280px; }
    .testimonial-nav.prev { left: 10px; }
    .testimonial-nav.next { right: 10px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links ul { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 40px; }
    .hero-image img { max-width: 250px; }
    .section-title { font-size: 28px; }
}

/* Premium Card Transitions */
.ux-card {
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.ux-card:hover {
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ============================================
   PORTFOLIO PAGE PREMIUM STYLES
   ============================================ */

/* ============ PORTFOLIO HERO ============ */
.portfolio-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 255, 30, 0.1) 0%, transparent 50%);
    animation: heroBgRotate 20s linear infinite;
}

@keyframes heroBgRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.portfolio-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.portfolio-hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============ PORTFOLIO GRID ============ */
.portfolio-main {
    padding: 80px 0;
    background: #d2d3c3;
}

.portfolio-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-card-premium {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card-premium:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    /* No translateY to prevent jumping */
}

.portfolio-card-premium img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card-premium:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.portfolio-info-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: #ffffff;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card-premium:hover .portfolio-info-premium {
    transform: translateY(0);
}

.portfolio-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #e0ff1e;
    color: #1b1c1e;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.portfolio-card-premium:hover .portfolio-tag {
    background: #ffffff;
    transform: translateY(-3px);
}

.portfolio-info-premium h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.portfolio-info-premium h3 a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.portfolio-info-premium h3 a:hover {
    color: #e0ff1e;
}

.portfolio-year {
    font-size: 16px;
    color: #e0ff1e !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============ BRANDS SECTION ============ */
.brands-section {
    padding: 80px 0;
    background: #ecedde;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.brand-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 255, 30, 0.05), transparent);
    transition: left 0.6s ease;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    border-color: #e0ff1e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* No translateY to prevent jumping */
}

.brand-item img {
    max-width: 100px;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
    /* Scale only on image, not container */
}

/* ============ SERVICES PAGE STYLES ============ */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 255, 30, 0.1) 0%, transparent 50%);
    animation: heroBgRotate 20s linear infinite;
}

.services-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.services-hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-main {
    padding: 80px 0;
    background: #1b1c1e;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 255, 30, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card-premium:hover::before {
    left: 100%;
}

.service-card-premium:hover {
    border-color: #e0ff1e;
    box-shadow: 0 30px 60px rgba(224, 255, 30, 0.2);
    background: rgba(255, 255, 255, 0.05);
    /* No translateY to prevent jumping */
}

.service-number-premium {
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
}

.service-icon-premium {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.service-card-premium h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-premium p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link-premium {
    color: #e0ff1e;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link-premium:hover {
    gap: 15px;
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #ecedde;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1b1c1e 0%, #2a2b2e 100%);
    color: #ffffff;
    transform: scale(1.05);
}

.pricing-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    /* No translateY to prevent jumping */
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #e0ff1e;
    color: #1b1c1e;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: inherit;
}

.pricing-card .price {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
    color: inherit;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.pricing-card.featured ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #51733f;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #e0ff1e;
    color: #1b1c1e;
    transform: translateY(-3px);
}

.pricing-card.featured .pricing-btn {
    background: #e0ff1e;
    color: #1b1c1e;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .portfolio-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid-premium,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-card-premium img {
        height: 300px;
    }
    
    .services-grid-premium,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-card-premium img {
        height: 250px;
    }
}

/* ============================================
   CONTACT PAGE PREMIUM STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 255, 30, 0.1) 0%, transparent 50%);
    animation: heroBgRotate 20s linear infinite;
}

.contact-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 80px 0;
    background: #d2d3c3;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 255, 30, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0ff1e;
}

.contact-card-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1b1c1e;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    display: inline-block;
    margin-top: 15px;
    color: #51733f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #e0ff1e;
    letter-spacing: 1px;
}

/* Social Links Section */
.social-links-section {
    padding: 80px 0;
    background: #1b1c1e;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.social-link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    color: #ffffff;
}

.social-link-card:hover {
    border-color: #e0ff1e;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(224, 255, 30, 0.2);
}

.social-link-card i {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.social-link-card:hover i {
    transform: scale(1.2);
    color: #e0ff1e;
}

.social-link-card span {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ecedde;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #51733f;
}

.faq-question .faq-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PAGE PREMIUM STYLES
   ============================================ */

/* About Hero */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 255, 30, 0.1) 0%, transparent 50%);
    animation: heroBgRotate 20s linear infinite;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-image {
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: none;
    animation: heroFloat 4s ease-in-out infinite;
}

.about-hero-image img {
    width: 100%;
    height: auto;
}

.about-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* About Content */
.about-content-section {
    padding: 80px 0;
    background: #d2d3c3;
}

.about-content-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Stats Section */
.about-stats {
    padding: 80px 0;
    background: #ecedde;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stat-item {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.about-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 255, 30, 0.05), transparent);
    transition: left 0.6s ease;
}

.about-stat-item:hover::before {
    left: 100%;
}

.about-stat-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0ff1e;
}

.about-stat-number {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, #51733f, #e0ff1e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Experience Timeline */
.timeline-section {
    padding: 80px 0;
    background: #1b1c1e;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.timeline-card:hover {
    border-color: #e0ff1e;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(224, 255, 30, 0.2);
}

.timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background: #e0ff1e;
    color: #1b1c1e;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.timeline-card h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.timeline-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: #ecedde;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skill-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0ff1e;
}

.skill-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.skill-percentage {
    font-size: 32px;
    font-weight: 900;
    color: #51733f;
    margin-bottom: 5px;
}

.skill-name {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* Milestones */
.milestones-section {
    padding: 80px 0;
    background: #d2d3c3;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.milestone-item:hover {
    transform: translateX(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #e0ff1e;
}

.milestone-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.milestone-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.milestone-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.milestone-info span {
    font-size: 14px;
    color: #666;
}

/* Brands */
.about-brands {
    padding: 80px 0;
    background: #ecedde;
}

.about-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.about-brand-item {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-brand-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0ff1e;
}

.about-brand-item img {
    max-width: 80px;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.about-brand-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .about-brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline Year - Force black text */
.timeline-card .timeline-year {
    color: #1b1c1e !important;
    background: #e0ff1e !important;
}

/* ============================================
   INSIGHTS/BLOG PAGE PREMIUM STYLES
   ============================================ */

/* Insights Hero */
.insights-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.insights-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 255, 30, 0.1) 0%, transparent 50%);
    animation: heroBgRotate 20s linear infinite;
}

.insights-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.insights-hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Blog Grid */
.insights-main {
    padding: 80px 0;
    background: #d2d3c3;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Blog Card Premium */
.blog-card-premium {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.blog-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e0ff1e, #51733f);
    transition: left 0.6s ease;
}

.blog-card-premium:hover::before {
    left: 0;
}

.blog-card-premium:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.blog-card-premium .blog-category {
    display: inline-block;
    padding: 8px 20px;
    background: #e0ff1e;
    color: #1b1c1e;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-card-premium h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-premium h3 a {
    color: #1b1c1e;
    transition: color 0.3s ease;
}

.blog-card-premium h3 a:hover {
    color: #51733f;
}

.blog-card-premium .blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-premium .blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-card-premium .blog-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0ff1e;
}

.blog-card-premium .blog-meta span {
    font-size: 14px;
    color: #666;
}

.blog-card-premium .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #51733f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card-premium .blog-read-more:hover {
    gap: 20px;
    color: #1b1c1e;
}

/* Pagination */
.insights-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.insights-pagination a,
.insights-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.insights-pagination a:hover,
.insights-pagination span.current {
    background: #e0ff1e;
    color: #1b1c1e;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 255, 30, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-premium {
        padding: 30px;
    }
}

/* ============================================
   BLOG/INSIGHTS PAGE STYLES
   ============================================ */

/* Insights Hero */
.insights-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.insights-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.insights-hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Main */
.insights-main {
    padding: 80px 0;
    background: #d2d3c3;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Blog Card */
.blog-card-premium {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.blog-card-premium:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.blog-card-premium .blog-category {
    display: inline-block;
    padding: 8px 20px;
    background: #e0ff1e;
    color: #1b1c1e;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-card-premium h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-premium h3 a {
    color: #1b1c1e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-premium h3 a:hover {
    color: #51733f;
}

.blog-card-premium .blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-premium .blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-card-premium .blog-meta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0ff1e;
}

.blog-card-premium .blog-meta span {
    font-size: 14px;
    color: #666;
}

.blog-card-premium .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #51733f;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-premium .blog-read-more:hover {
    gap: 20px;
    color: #1b1c1e;
}

/* Pagination */
.insights-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.insights-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    font-weight: 600;
    text-decoration: none;
    color: #1b1c1e;
    transition: all 0.3s ease;
}

.insights-pagination a:hover,
.insights-pagination a.current {
    background: #e0ff1e;
    color: #1b1c1e;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(224, 255, 30, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-premium {
        padding: 30px;
    }
}

/* ============================================
   ARTICLE/BLOG POST PAGE STYLES
   ============================================ */

/* Article Hero */
.article-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 255, 30, 0.1) 0%, transparent 50%);
    animation: heroBgRotate 20s linear infinite;
}

.article-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(35px, 5vw, 60px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* Article Content */
.article-content {
    padding: 60px 0;
    background: #d2d3c3;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #1b1c1e;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 12px;
    color: #1b1c1e;
}

.article-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.article-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.article-body ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.article-body strong {
    color: #1b1c1e;
}

.article-body a {
    color: #51733f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: #e0ff1e;
}

/* Amazon Button */
.amazon-btn {
    display: inline-block;
    background: #FF9900;
    color: #000 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.amazon-btn:hover {
    background: #e68a00;
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
}

/* Article Box */
.article-box {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f5f5f0;
    border-radius: 20px;
    border: 2px solid #e0ff1e;
}

.article-box img {
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.article-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1b1c1e;
}

.article-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Article Tags */
.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0ff1e;
}

.article-tags a {
    display: inline-block;
    padding: 6px 15px;
    background: #f0f0e0;
    color: #51733f !important;
    font-size: 12px;
    border-radius: 50px;
    margin: 5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background: #e0ff1e;
    color: #1b1c1e !important;
    transform: translateY(-2px);
}

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0ff1e;
}

.article-nav-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #51733f;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.article-nav-btn:hover {
    background: #e0ff1e;
    color: #1b1c1e !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .article-body {
        padding: 30px 20px;
    }
    
    .article-title {
        font-size: 30px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

/* Article Animations */
@keyframes floatGlow {
    0% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-8px) scale(1.05); opacity: 1; }
    100% { transform: translateY(0px) scale(1); opacity: 0.8; }
}

@keyframes pageTurn {
    0% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    25% { transform: rotate(-8deg) scale(1.1); opacity: 1; }
    50% { transform: rotate(0deg) scale(1); opacity: 0.9; }
    75% { transform: rotate(5deg) scale(1.05); opacity: 1; }
    100% { transform: rotate(0deg) scale(1); opacity: 0.7; }
}

@keyframes textReveal {
    0% { opacity: 0.5; transform: translateX(-4px); }
    25% { opacity: 1; transform: translateX(0px); }
    50% { opacity: 0.8; transform: translateX(0px); }
    75% { opacity: 1; transform: translateX(0px); }
    100% { opacity: 0.5; transform: translateX(4px); }
}

@keyframes sparklePulse {
    0% { opacity: 0.2; transform: translateY(-50%) scale(0.5); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
    100% { opacity: 0.2; transform: translateY(-50%) scale(0.5); }
}

@keyframes announcePop {
    0% { transform: scale(0.95); opacity: 0.9; }
    25% { transform: scale(1.05); opacity: 1; }
    50% { transform: scale(1); opacity: 0.95; }
    75% { transform: scale(1.04); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.9; }
}

@keyframes contentFade {
    0% { opacity: 0.7; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(-3px); }
    100% { opacity: 0.7; transform: translateY(0px); }
}

@keyframes buttonPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(74, 63, 47, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(74, 63, 47, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(74, 63, 47, 0.3); }
}

@keyframes sparkleSpin {
    0% { transform: rotate(0deg) scale(0.8); opacity: 0.5; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(360deg) scale(0.8); opacity: 0.5; }
}

@keyframes floatShimmer {
    0% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-4px) scale(1.05); opacity: 1; }
    100% { transform: translateY(0px) scale(1); opacity: 0.8; }
}

@keyframes textFade {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes crayonDance {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(5deg) scale(1.1); }
    50% { transform: translateY(0px) rotate(0deg) scale(1); }
    75% { transform: translateY(-10px) rotate(-5deg) scale(1.05); }
    100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

@keyframes textBounce {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes portalSpin {
    0% { transform: rotate(0deg) scale(0.8); opacity: 0.7; }
    25% { transform: rotate(90deg) scale(1.2); opacity: 1; }
    50% { transform: rotate(180deg) scale(1); opacity: 0.9; }
    75% { transform: rotate(270deg) scale(1.3); opacity: 1; }
    100% { transform: rotate(360deg) scale(0.8); opacity: 0.7; }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
    100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
}

@keyframes floatUp {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(3deg); }
    50% { transform: translateY(-5px) rotate(-2deg); }
    75% { transform: translateY(-15px) rotate(4deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes burst1 {
    0% { transform: scale(0.5) rotate(0deg); opacity: 0.3; }
    25% { transform: scale(1.8) rotate(20deg); opacity: 1; }
    50% { transform: scale(1) rotate(-10deg); opacity: 0.8; }
    75% { transform: scale(1.5) rotate(15deg); opacity: 1; }
    100% { transform: scale(0.5) rotate(0deg); opacity: 0.3; }
}

@keyframes burst2 {
    0% { transform: scale(0.3) rotate(-10deg); opacity: 0.2; }
    30% { transform: scale(2.0) rotate(30deg); opacity: 1; }
    60% { transform: scale(0.8) rotate(-20deg); opacity: 0.7; }
    80% { transform: scale(1.7) rotate(25deg); opacity: 1; }
    100% { transform: scale(0.3) rotate(-10deg); opacity: 0.2; }
}

@keyframes burst3 {
    0% { transform: scale(0.4) rotate(5deg); opacity: 0.2; }
    20% { transform: scale(2.2) rotate(-15deg); opacity: 1; }
    40% { transform: scale(0.9) rotate(10deg); opacity: 0.6; }
    60% { transform: scale(1.9) rotate(-25deg); opacity: 1; }
    80% { transform: scale(0.7) rotate(15deg); opacity: 0.5; }
    100% { transform: scale(0.4) rotate(5deg); opacity: 0.2; }
}


        /* ============================================
   PORTFOLIO DETAIL PAGE STYLES
   ============================================ */

/* Portfolio Detail Hero */
.portfolio-detail-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.portfolio-detail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 255, 30, 0.1) 0%, transparent 50%);
    animation: heroBgRotate 20s linear infinite;
}

@keyframes heroBgRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.portfolio-detail-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: #e0ff1e;
    color: #1b1c1e;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.portfolio-detail-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(45px, 7vw, 80px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Info Cards */
.portfolio-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portfolio-info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.portfolio-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e0ff1e, #51733f);
    transition: left 0.5s ease;
}

.portfolio-info-card:hover::before {
    left: 0;
}

.portfolio-info-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.portfolio-info-card .info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 5px;
}

.portfolio-info-card .info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1b1c1e;
}

/* Gallery */
.portfolio-gallery {
    padding: 80px 0;
    background: #d2d3c3;
}

.portfolio-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-gallery-item:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.portfolio-gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.portfolio-gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: #e0ff1e;
}

/* Content */
.portfolio-content {
    padding: 80px 0;
    background: #ecedde;
}

.portfolio-content-body {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.portfolio-content-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #1b1c1e;
}

.portfolio-content-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.portfolio-content-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.portfolio-content-body ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.portfolio-content-body img {
    width: 100%;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Portfolio Detail Responsive */
@media (max-width: 768px) {
    .portfolio-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-gallery-item img {
        height: 250px;
    }
    
    .portfolio-content-body {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .portfolio-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PORTFOLIO GALLERY LIGHTBOX & THUMBNAILS
   ============================================ */

/* Thumbnail Gallery */
.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 4/3;
}

.portfolio-gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.portfolio-gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.portfolio-gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.portfolio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.7);
}

.portfolio-gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.portfolio-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 12px;
    font-weight: 600;
    color: #e0ff1e;
    display: block;
    text-align: center;
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: lightboxFade 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.3s ease;
    cursor: zoom-out;
}

@keyframes lightboxZoom {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e0ff1e;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #1b1c1e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: #ffffff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #e0ff1e;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #e0ff1e;
    color: #1b1c1e;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 100000;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* YouTube Thumbnail Click-to-Play */
.youtube-thumb {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background: #000;
    transition: all 0.3s ease;
}

.youtube-thumb:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

/* For Shorts (vertical videos) */
.youtube-thumb.shorts {
    padding-bottom: 177.78%;
    max-width: 350px;
    margin: 30px auto;
}
/* Static Testimonials Grid - NO JavaScript needed */
.testimonials-grid-static {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

@media (max-width: 1024px) {
    .testimonials-grid-static {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid-static {
        grid-template-columns: 1fr;
    }
}

/* Footer Image with Background */
.footer-image {
    position: relative;
    background-image: url('https://raw.githubusercontent.com/sridurgastudiox/sridurgastudioX/refs/heads/main/Footer_Bg_sridurgastudiox.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.footer-image img {
    position: relative;
    z-index: 2;
    max-width: 350px;
    border-radius: 50%;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    animation: footerFloat 4s ease-in-out infinite;
}

@keyframes footerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-image {
        min-height: 300px;
        padding: 30px;
    }
    
    .footer-image img {
        max-width: 250px;
    }
}
/* ============ FULL WIDTH TESTIMONIALS ============ */
.testimonials-fullwidth {
    padding: 80px 0;
    background: #d2d3c3;
}

.testimonials-fullwidth-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.testimonial-card-fullwidth {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-card-fullwidth::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(224, 255, 30, 0.15);
    line-height: 1;
    font-family: 'Cinzel', serif;
}

.testimonial-card-fullwidth:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0ff1e;
}

.testimonial-card-fullwidth .quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card-fullwidth p {
    font-size: 14px;
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-card-fullwidth .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-card-fullwidth .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #e0ff1e;
}

.testimonial-card-fullwidth .testimonial-author h4 {
    font-size: 15px;
    margin: 0 0 3px;
    color: #1b1c1e;
}

.testimonial-card-fullwidth .testimonial-author span {
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials-fullwidth-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-fullwidth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .testimonial-card-fullwidth {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-fullwidth-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ PREMIUM COUNTER STYLES ============ */
.about-stat-number {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, #51733f 0%, #e0ff1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
    transition: transform 0.3s ease;
    display: inline-block;
}

.about-stat-item {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f5 100%);
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.about-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e0ff1e, #51733f);
    transition: left 0.5s ease;
}

.about-stat-item:hover::before {
    left: 0;
}

.about-stat-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0ff1e;
}

.about-stat-item:hover .about-stat-number {
    transform: scale(1.1);
}

.about-stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-top: 10px;
}


/* ============ PERFECT FIX - NO FLICKERING ============ */
.about-stat-item {
    transition: box-shadow 0.4s ease !important;
    transform: none !important;
    will-change: auto !important;
}

.about-stat-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
    transform: none !important;
    border: 2px solid #e0ff1e !important;
}

.about-stat-number {
    transition: color 0.3s ease !important;
    transform: none !important;
    display: block !important;
    font-size: 55px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #51733f 0%, #e0ff1e 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

/* ============ GLOBAL FIX - REMOVE ALL TRANSFORM HOVERS ============ */

/* Timeline Cards */
.timeline-card {
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
    transform: none !important;
}

.timeline-card:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(224, 255, 30, 0.15) !important;
    border-color: #e0ff1e !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Service Cards */
.service-card-premium {
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
    transform: none !important;
}

.service-card-premium:hover {
    transform: none !important;
    box-shadow: 0 20px 50px rgba(224, 255, 30, 0.15) !important;
    border-color: #e0ff1e !important;
}

/* Portfolio Cards */
.portfolio-card-premium {
    transition: box-shadow 0.3s ease !important;
    transform: none !important;
}

.portfolio-card-premium:hover {
    transform: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}

/* Blog Cards */
.blog-card-premium {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
    transform: none !important;
}

.blog-card-premium:hover {
    transform: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

/* Stat Items */
.about-stat-item {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
    transform: none !important;
}

.about-stat-item:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: #e0ff1e !important;
}

/* Milestone Items */
.milestone-item {
    transition: box-shadow 0.3s ease, border-left-color 0.3s ease !important;
    transform: none !important;
}

.milestone-item:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-left: 5px solid #e0ff1e !important;
}

/* Brand Items */
.brand-item, .about-brand-item {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
    transform: none !important;
}

.brand-item:hover, .about-brand-item:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #e0ff1e !important;
}

/* Skill Items */
.skill-item {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
    transform: none !important;
}

.skill-item:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #e0ff1e !important;
}

/* Contact Cards */
.contact-card {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
    transform: none !important;
}

.contact-card:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: #e0ff1e !important;
}

/* Social Link Cards */
.social-link-card {
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
    transform: none !important;
}

.social-link-card:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(224, 255, 30, 0.15) !important;
    border-color: #e0ff1e !important;
}

/* Testimonial Cards */
.testimonial-card-fullwidth {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
    transform: none !important;
}

.testimonial-card-fullwidth:hover {
    transform: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
    border-color: #e0ff1e !important;
}

/* ============ ABSOLUTE FIX - KILL ALL FLICKERING ============ */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-stat-item,
.timeline-card,
.service-card-premium,
.portfolio-card-premium,
.blog-card-premium,
.milestone-item,
.brand-item,
.about-brand-item,
.skill-item,
.contact-card,
.social-link-card,
.testimonial-card-fullwidth {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
}

.about-stat-item:hover,
.timeline-card:hover,
.service-card-premium:hover,
.portfolio-card-premium:hover,
.blog-card-premium:hover,
.milestone-item:hover,
.brand-item:hover,
.about-brand-item:hover,
.skill-item:hover,
.contact-card:hover,
.social-link-card:hover,
.testimonial-card-fullwidth:hover {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: #e0ff1e !important;
}



.insights-pagination a[href="#"]:not(.current) {
    display: none !important;
}
.insights-pagination a.current {
    display: flex !important;
}

/* Home page service cards - same hover as services page */
.services-grid .service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.services-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 255, 30, 0.05), transparent);
    transition: left 0.6s ease;
}

.services-grid .service-card:hover::before {
    left: 100%;
}

.services-grid .service-card:hover {
    border-color: #e0ff1e;
    box-shadow: 0 30px 60px rgba(224, 255, 30, 0.2);
    background: rgba(255, 255, 255, 0.05);
}
.legal-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecedde 0%, #d2d3c3 100%);
    padding: 100px 0 40px;
}

.legal-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    background: linear-gradient(135deg, #1b1c1e 0%, #51733f 50%, #1b1c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content {
    padding: 60px 0;
    background: #d2d3c3;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.legal-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #1b1c1e;
}

.legal-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.legal-body ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-body ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}


/* ============ FOOTER IMAGE ============ */
.footer-image-wrapper {
    position: relative;
    background-image: url('https://raw.githubusercontent.com/sridurgastudiox/sridurgastudioX/refs/heads/main/Footer_Bg_sridurgastudiox.png');
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-profile-img {
    max-width: 300px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* ============ ANIMATIONS ============ */
@keyframes floatGlow {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-8px) scale(1.05); opacity: 1; }
}

@keyframes pageTurn {
    0%, 100% { transform: rotate(0) scale(1); opacity: 0.7; }
    25% { transform: rotate(-8deg) scale(1.1); opacity: 1; }
    50% { transform: rotate(0) scale(1); opacity: 0.9; }
    75% { transform: rotate(5deg) scale(1.05); opacity: 1; }
}

@keyframes crayonDance {
    0%, 100% { transform: translateY(0) rotate(0) scale(1); }
    25% { transform: translateY(-15px) rotate(5deg) scale(1.1); }
    50% { transform: translateY(0) rotate(0) scale(1); }
    75% { transform: translateY(-10px) rotate(-5deg) scale(1.05); }
}

@keyframes portalSpin {
    0%, 100% { transform: rotate(0) scale(0.8); opacity: 0.7; }
    25% { transform: rotate(90deg) scale(1.2); opacity: 1; }
    50% { transform: rotate(180deg) scale(1); opacity: 0.9; }
    75% { transform: rotate(270deg) scale(1.3); opacity: 1; }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-20px) rotate(3deg); }
    50% { transform: translateY(-5px) rotate(-2deg); }
    75% { transform: translateY(-15px) rotate(4deg); }
}

@keyframes sparkleSpin {
    0%, 100% { transform: rotate(0) scale(0.8); opacity: 0.5; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 1; }
}
/* ============ FOOTER SOCIAL SECTION ============ */
.footer-social-section {
    margin-bottom: 30px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 255, 30, 0.05), transparent);
    transition: left 0.6s ease;
}

.social-link-card:hover::before {
    left: 100%;
}

.social-link-card:hover {
    border-color: #e0ff1e;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(224, 255, 30, 0.15);
    transform: translateY(-5px);
}

.social-link-card svg {
    transition: all 0.3s ease;
}

.social-link-card:hover svg {
    transform: scale(1.15);
    color: #e0ff1e;
}

.social-link-card span {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.social-link-card:hover span {
    color: #e0ff1e;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .social-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .social-link-card {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}



.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ecedde;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-text {
    font-size: 4vw;
    font-weight: 900;
    color: #1b1c1e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.preloader-text::after {
    content: attr(data-content);
    position: absolute;
    left: 0;
    top: 0;
    color: #51733f;
    width: 0%;
    overflow: hidden;
    animation: sridurgaFill 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes sridurgaFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}