/* 
   PREMIUM THEME CSS OVERRIDES 
   Adds modern, premium UI elements: glassmorphism, glow effects, dynamic scrollbars, and button shine
*/

/* 1. Custom Scrollbar & Selection */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.5);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 0, 0.8);
}
::selection {
    background-color: var(--or, #FF6B00);
    color: var(--white, #fff);
}

/* 2. Dynamic Buttons (Shine & Glow Hover Effects) */
.btn, .btn-primary, .nav-cta, .btn-secondary, .btn-readmore {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Add a shine sweep across the button on hover */
.btn::after, .btn-primary::after, .nav-cta::after, .btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    z-index: 1;
}
.btn:hover::after, .btn-primary:hover::after, .nav-cta:hover::after, .btn-secondary:hover::after {
    left: 150%;
}

/* Add glowing shadow on hover to orange buttons */
.btn-primary:hover, .nav-cta:hover, .btn[style*="background: var(--or)"]:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45) !important;
    transform: translateY(-2px);
}

/* 3. Hero Section Abstract Glows */
/* Ensure the hero section allows for glowing orbs */
.hero, .hero-section {
    position: relative;
    overflow: hidden !important;
}

/* Create glowing orbs behind the text, attached to hero-overlay */
.hero-overlay::before, .hero-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: none;
}
.hero-overlay::before {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, rgba(255, 107, 0, 0) 70%);
}
.hero-overlay::after {
    bottom: -30%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0) 70%);
    animation-delay: -7s;
}

@keyframes floatGlow {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(2%, 2%); }
    100% { transform: scale(0.9) translate(-2%, -2%); }
}

/* Ensure content stays above the glows */
.hero .container, .hero-content, .hero .hero-inner {
    position: relative;
    z-index: 2 !important;
}

/* 4. Premium Card Glassmorphism & Gradients */
.card, .srv-card, .product-card, .work-card, .about-feature {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
}

.card:hover, .srv-card:hover, .product-card:hover, .work-card:hover, .about-feature:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 107, 0, 0.2) !important;
}

/* Subtle image scale for modern feel */
.product-img img, .img-wrapper img, .card-img img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.product-card:hover .product-img img, 
.card:hover .card-img img,
.img-wrapper:hover img {
    transform: scale(1.08) !important;
}

/* Enhance Footer Look */
footer {
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.3) 50%, transparent 100%);
}

/* =====================================================
   5. FLOATING CONTACT WIDGETS
   ===================================================== */
.float-widgets {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px 0 0;
    height: 52px;
    border-radius: 52px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    max-width: 52px; /* collapsed: show icon only */
}

.float-btn:hover {
    max-width: 220px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.35);
    transform: translateY(-2px);
    color: #fff;
}

.float-btn .ficon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.float-btn .flabel {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
    pointer-events: none;
}

.float-btn:hover .flabel {
    opacity: 1;
    transform: translateX(0);
}

/* LINE Button */
.float-line {
    background: #06C755;
}
.float-line .ficon {
    background: #06C755;
}
.float-line:hover {
    background: #05a848;
}

/* Phone Button */
.float-phone {
    background: #FF6B00;
}
.float-phone .ficon {
    background: #FF6B00;
}
.float-phone:hover {
    background: #e55a00;
}

/* Pulse ring animation for LINE button */
.float-line {
    animation: none;
}
.float-line .ficon::before {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(6, 199, 85, 0.4);
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Back to Top Button */
.float-top {
    background: rgba(26,26,26,0.85);
    border: 1px solid rgba(255,107,0,0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B00;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    text-decoration: none;
}
.float-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.float-top:hover {
    background: #FF6B00;
    color: #fff;
    border-color: #FF6B00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,107,0,0.4);
}

@media (max-width: 600px) {
    .float-widgets {
        bottom: 20px;
        right: 16px;
    }
    .float-btn {
        height: 48px;
        max-width: 48px;
    }
    .float-btn .ficon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}


/* 1. Custom Scrollbar & Selection */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.5);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 0, 0.8);
}
::selection {
    background-color: var(--or, #FF6B00);
    color: var(--white, #fff);
}

/* 2. Dynamic Buttons (Shine & Glow Hover Effects) */
.btn, .btn-primary, .nav-cta, .btn-secondary, .btn-readmore {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Add a shine sweep across the button on hover */
.btn::after, .btn-primary::after, .nav-cta::after, .btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    z-index: 1;
}
.btn:hover::after, .btn-primary:hover::after, .nav-cta:hover::after, .btn-secondary:hover::after {
    left: 150%;
}

/* Add glowing shadow on hover to orange buttons */
.btn-primary:hover, .nav-cta:hover, .btn[style*="background: var(--or)"]:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45) !important;
    transform: translateY(-2px);
}

/* 3. Hero Section Abstract Glows */
/* Ensure the hero section allows for glowing orbs */
.hero, .hero-section {
    position: relative;
    overflow: hidden !important;
}

/* Create glowing orbs behind the text, attached to hero-overlay */
.hero-overlay::before, .hero-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    animation: floatGlow 15s infinite alternate ease-in-out;
}
.hero-overlay::before {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, rgba(255, 107, 0, 0) 70%);
}
.hero-overlay::after {
    bottom: -30%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0) 70%);
    animation-delay: -7s;
}

@keyframes floatGlow {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(2%, 2%); }
    100% { transform: scale(0.9) translate(-2%, -2%); }
}

/* Ensure content stays above the glows */
.hero .container, .hero-content, .hero .hero-inner {
    position: relative;
    z-index: 2 !important;
}

/* 4. Premium Card Glassmorphism & Gradients */
.card, .srv-card, .product-card, .work-card, .about-feature {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
}

.card:hover, .srv-card:hover, .product-card:hover, .work-card:hover, .about-feature:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 107, 0, 0.2) !important;
}

/* If card is on a dark background or overlay, give it glassmorphism */
[class*="bg-dark"] .card, .dark-section .card, .bg-gray .card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Subtle image scale for modern feel */
.product-img img, .img-wrapper img, .card-img img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.product-card:hover .product-img img, 
.card:hover .card-img img,
.img-wrapper:hover img {
    transform: scale(1.08) !important;
}

/* Enhance Footer Look */
footer {
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,107,0,0.3) 50%, transparent 100%);
}

/* Cookie Consent Banner */
#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,107,0,0.3);
    font-family: 'Sarabun', sans-serif;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}
#cookieConsent.show {
    transform: translateY(0);
}
#cookieConsent p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.2s;
    background: #FF6B00;
    color: #fff;
}
.cookie-btn:hover {
    background: #e55a00;
}
@media (max-width: 768px) {
    #cookieConsent {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 0, 0.3);
    border-radius: 50%;
    border-top-color: #FF6B00;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* =========================================
   PARTICLES CONTAINER
   ========================================= */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.hero, .hero-section {
    position: relative;
    overflow: hidden;
}
.hero-content, .container, .hero-overlay {
    position: relative;
    z-index: 2;
}

/* =========================================
   3D TILT CARDS - GLARE LAYER
   ========================================= */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
}
.tilt-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9;
    border-radius: inherit;
}

/* =========================================
   MAGNETIC BUTTONS - SMOOTH SPRING
   ========================================= */
.magnetic {
    will-change: transform;
    display: inline-block;
}

/* =========================================
   SCROLL REVEAL - FADE UP ENHANCED
   ========================================= */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.in-view,
.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   GRADIENT TEXT ANIMATION
   ========================================= */
.gradient-text-anim {
    background: linear-gradient(90deg, #FF6B00 0%, #ffb347 40%, #FF6B00 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s linear infinite;
}
@keyframes gradientMove {
    to { background-position: 200% center; }
}

/* =========================================
   SMOOTH PAGE TRANSITIONS
   ========================================= */
.page-transition {
    animation: pageIn 0.5s ease both;
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   READING PROGRESS BAR
   ========================================= */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #FF6B00;
    z-index: 9999999;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    transition: width 0.1s;
}

/* =========================================
   TYPING ANIMATION
   ========================================= */
.typing-cursor {
    display: inline-block;
    width: 3px;
    background-color: #FF6B00;
    margin-left: 4px;
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* =========================================
   IMAGE LIGHTBOX
   ========================================= */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out !important;
}
#lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
#lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}
#lightbox-overlay.active #lightbox-img {
    transform: scale(1);
}
img.lightbox-trigger {
    cursor: zoom-in !important;
    transition: filter 0.3s ease;
}
img.lightbox-trigger:hover {
    filter: brightness(1.15);
}

/* =========================================
   MOBILE MENU DROPDOWN FIX
   ========================================= */
@media (max-width: 991px) {
    .dropdown-content a {
        display: block !important;
        text-align: center !important;
        padding: 12px 20px !important;
        white-space: normal !important;
        line-height: 1.5 !important;
        font-size: 14px !important;
    }
}




/* =========================================
   FLOATING GLOWING ORBS BACKGROUND
   ========================================= */
.hero, .hero-section {
    background: #050200 !important; /* Very dark, almost black */
    position: relative;
    overflow: hidden;
}

/* Hide the overlay so it doesn't block the orbs */
.hero-overlay {
    background: transparent !important;
    backdrop-filter: none !important;
}

.hero::before, .hero-section::before,
.hero::after, .hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1; /* Above the background */
    pointer-events: none;
    animation: floatOrbs 10s infinite alternate ease-in-out;
}

/* Orange Orb - Left Side */
.hero::before, .hero-section::before {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: rgba(255, 107, 0, 0.45); /* Bright Orange */
    top: -10%;
    left: -10%;
}

/* White/Silver Orb - Right Side */
.hero::after, .hero-section::after {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: rgba(255, 255, 255, 0.2); /* Bright White/Silver */
    bottom: -10%;
    right: -10%;
    animation-duration: 14s;
    animation-direction: alternate-reverse;
}

@keyframes floatOrbs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15vw, 10vh) scale(1.2); }
    100% { transform: translate(-5vw, 20vh) scale(0.9); }
}

/* Make sure text is above the orbs */
.hero-content, .container {
    position: relative;
    z-index: 2 !important;
}

#particles-js {
    display: none !important;
}

/* =========================================
   VANTA.JS BACKGROUND
   ========================================= */
.hero, .hero-section {
    background: #050200 !important;
}

#vanta-bg canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(5, 2, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
    backdrop-filter: none !important;
    z-index: 1 !important;
}

.hero-content, .container {
    position: relative;
    z-index: 2 !important;
}

.hero::before, .hero-section::before,
.hero::after, .hero-section::after {
    display: none !important;
}


/* =========================================
   PREMIUM SERVICE CARDS UPGRADE
   ========================================= */
.srv-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 50px !important;
    padding: 20px 0 !important;
}

.srv-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 30px 20px !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    cursor: pointer;
}

.srv-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

.srv-card .srv-ic {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    height: 140px !important;
    min-height: 140px !important;
    max-height: 140px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 auto 20px auto !important;
    position: relative !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    border: none !important;
    transition: all 0.4s ease !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
}

.srv-card:hover .srv-ic {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(255,107,0,0.15) !important;
}

.srv-card .srv-ic img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.srv-card:hover .srv-ic img {
    transform: scale(1.15) !important;
}

.srv-card .srv-content {
    background: transparent !important;
    padding: 0 !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}

.srv-card h3 {
    color: #222222 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
    text-shadow: none !important;
    transform: none !important;
}

.srv-card:hover h3 {
    color: #ff6b00 !important;
}

.srv-card p {
    color: #666666 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    height: auto !important;
    overflow: visible !important;
}

@media(max-width: 768px) {
    .srv-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

.srv-card-featured {
    padding: 32px 40px !important;
    gap: 48px !important;
}

.srv-card-featured .srv-ic {
    height: 320px !important;
    border-radius: 16px !important;
    border-bottom: none !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.srv-card-featured h3 {
    font-size: 32px !important;
    margin-bottom: 20px !important;
}

.srv-card-featured p {
    font-size: 17px !important;
    color: #444 !important;
}

@media(max-width: 992px) {
    .srv-card-featured {
        padding: 0 32px 32px 32px !important;
        gap: 0 !important;
    }
    .srv-card-featured .srv-ic {
        width: calc(100% + 64px) !important;
        height: 260px !important;
        margin: 0 -32px 32px -32px !important;
        border-radius: 0 !important;
    }
}


/* =========================================
   SERVICE TAB FILTERS
   ========================================= */
.srv-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.srv-tab-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--gray);
    font-family: var(--fn);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.srv-tab-btn:hover {
    background: rgba(255, 107, 0, 0.05);
    color: var(--or);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

.srv-tab-btn.active {
    background: linear-gradient(135deg, #ff6b00 0%, #ff3a00 100%);
    color: var(--white);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

/* Animations for filtering */
.srv-card {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, transform 0.4s ease !important;
}

.srv-card.hide {
    display: none !important;
}

.srv-card.fade-in {
    animation: srvFadeIn 0.5s ease forwards;
}

@keyframes srvFadeIn {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}


/* =========================================
   WORKFLOW / PROCESS SECTION (TIMELINE)
   ========================================= */
.proc-sec {
    position: relative;
    overflow: hidden;
    background: #fdfcfb; /* Natural light background */ /* slightly darker to make glow pop */
    padding: 80px 0;
}
.proc-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.proc-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    z-index: 0;
    transform: translateY(-50%);
    opacity: 0.3;
}
.proc-step {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.proc-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
}
.proc-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--or), #d45900);
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}
.proc-ic {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--or);
    transition: all 0.5s ease;
    position: relative;
}
.proc-step:hover .proc-ic { background: var(--or); color: white; box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2); transform: scale(1.1); }
.proc-step h4 {
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 10px;
}
.proc-step p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .proc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .proc-grid::before {
        width: 4px;
        height: auto;
        top: 10%;
        bottom: 10%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, var(--or), transparent);
    }
}

/* =========================================
   PORTFOLIO SECTION (CINEMATIC HOVER)
   ========================================= */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.work-grid:hover .work-card:not(:hover) {
    filter: brightness(0.4) grayscale(50%);
}
.work-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}
.work-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.work-card:hover img {
    transform: scale(1.1);
}
.work-card:hover .work-overlay {
    opacity: 1;
}
.work-overlay-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--or);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.4);
}
.work-card:hover .work-overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================
   ABOUT SECTION & BENTO GRIDS
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.about-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
}
.about-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.about-badge .badge-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--or);
    line-height: 1;
    margin-bottom: 5px;
}
.about-badge .badge-txt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-badge {
        bottom: 10px;
        right: 10px;
    }
}

/* =========================================
   GOALS & SPECIALTIES (GLASSMORPHISM)
   ========================================= */
.goal-sec {
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fa 100%);
    color: #333333;
    position: relative;
    overflow: hidden;
}
.goal-sec::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--or);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    top: -100px;
    left: -100px;
    pointer-events: none;
}
.goal-sec .sec-title, .goal-sec .sec-sub, .goal-sec .sec-tag { position: relative; z-index: 2; }
.goal-sec .sec-sub { color: #555555; }
.goal-sec .sec-title {
    color: var(--dark);
}
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}
.spec-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
}
.spec-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.1);
}
.spec-card h4 {
    color: var(--or);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}
.spec-card p {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PRODUCTS SECTION (MODERN GRID)
   ========================================= */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.prod-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}
.prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.2);
}
.prod-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}
.prod-card:hover img {
    transform: scale(1.1);
}
.prod-card h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .prod-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   THEME SWITCHER UI (LEFT SIDE)
   ========================================= */
.theme-switcher {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-250px);
    z-index: 10000;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-switcher.open {
    transform: translateY(-50%) translateX(0);
}
.ts-panel {
    width: 250px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-radius: 0 16px 16px 0;
    padding: 20px;
    color: white;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}
.ts-toggle {
    width: 50px;
    height: 50px;
    background: var(--or);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    box-shadow: 5px 0 15px rgba(255, 107, 0, 0.3);
}
.ts-panel h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    text-align: center;
}
.ts-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ts-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
.ts-btn:hover {
    background: rgba(255,255,255,0.1);
}
.ts-btn.active {
    border-color: var(--or);
    background: rgba(255, 107, 0, 0.1);
}
.ts-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

/* =========================================
   THEMES IMPLEMENTATION
   ========================================= */

/* --- 1. THEME: CYBERPUNK (theme-cyber) --- */
body.theme-cyber {
    background-color: #050505;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    --or: #ff003c; /* Cyber red/orange */
}
body.theme-cyber .hero-content h1 {
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #00f3ff, -2px -2px 0px #ff003c;
}
body.theme-cyber .srv-card,
body.theme-cyber .proc-step,
body.theme-cyber .spec-card {
    background: #000;
    border: 1px solid #00f3ff;
    border-radius: 0;
    box-shadow: inset 0 0 15px rgba(0, 243, 255, 0.1);
}
body.theme-cyber .srv-card:hover,
body.theme-cyber .proc-step:hover,
body.theme-cyber .spec-card:hover {
    border-color: #ff003c;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4), inset 0 0 15px rgba(255, 0, 60, 0.2);
    transform: translate(-5px, -5px);
}
body.theme-cyber .btn-or {
    background: transparent;
    border: 2px solid #00f3ff;
    color: #00f3ff;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold;
}
body.theme-cyber .btn-or:hover {
    background: #00f3ff;
    color: #000;
    box-shadow: 0 0 20px #00f3ff;
}
body.theme-cyber .proc-sec, 
body.theme-cyber .goal-sec {
    background: #000;
}
body.theme-cyber .proc-num {
    background: #ff003c;
    border-radius: 0;
    font-family: monospace;
}

/* --- 2. THEME: CLEAN MINIMALIST (theme-minimal) --- */
body.theme-minimal {
    background: #f8f9fa;
    color: #333;
    --white: #333;
    --dark: #111;
}
body.theme-minimal #particles-js {
    opacity: 0.1;
    filter: invert(1);
}
body.theme-minimal .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.theme-minimal .nav-links a {
    color: #555;
}
body.theme-minimal .hero-content h1, 
body.theme-minimal .sec-title {
    color: #111;
}
body.theme-minimal .hero-content p {
    color: #555;
}
body.theme-minimal .srv-card,
body.theme-minimal .proc-step,
body.theme-minimal .spec-card {
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-radius: 12px;
}
body.theme-minimal .srv-card h3,
body.theme-minimal .proc-step h4,
body.theme-minimal .spec-card h4 {
    color: #111;
}
body.theme-minimal .srv-card p,
body.theme-minimal .proc-step p,
body.theme-minimal .spec-card p {
    color: #666;
}
body.theme-minimal .srv-card:hover,
body.theme-minimal .proc-step:hover,
body.theme-minimal .spec-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--or);
}
body.theme-minimal .proc-sec, 
body.theme-minimal .goal-sec {
    background: #ffffff;
    color: #333;
}
body.theme-minimal .goal-sec::before {
    display: none;
}
body.theme-minimal .work-overlay {
    background: rgba(255,255,255,0.9);
}
body.theme-minimal .work-overlay-btn {
    color: white;
}
body.theme-minimal .about-badge {
    background: white;
    border: 1px solid #eee;
}
body.theme-minimal .about-badge .badge-txt {
    color: #555;
}
body.theme-minimal .btn-or {
    border-radius: 8px;
    box-shadow: none;
}
body.theme-minimal .btn-or:hover {
    box-shadow: 0 10px 20px rgba(255,107,0,0.2);
}


/* =========================================
   LAYOUT OPTIONS FOR SERVICES GRID
   ========================================= */
   
/* Layout: List (Horizontal Cards) */
.srv-grid.layout-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.srv-grid.layout-list .srv-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 20px;
    gap: 20px;
}
.srv-grid.layout-list .srv-card .srv-ic {
    margin: 0;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.srv-grid.layout-list .srv-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
.srv-grid.layout-list .srv-card p {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .srv-grid.layout-list {
        grid-template-columns: 1fr;
    }
}

/* Layout: Compact (4 Columns, Small text) */
.srv-grid.layout-compact {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.srv-grid.layout-compact .srv-card {
    padding: 20px 15px;
}
.srv-grid.layout-compact .srv-ic {
    width: 80px;
    height: 80px;
}
.srv-grid.layout-compact .srv-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.srv-grid.layout-compact .srv-card p {
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .srv-grid.layout-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .srv-grid.layout-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .srv-grid.layout-compact {
        grid-template-columns: 1fr;
    }
}

/* Button style for layout switcher */
.layout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}
.layout-btn:hover {
    background: rgba(255,255,255,0.1);
}
.layout-btn.active {
    border-color: var(--or);
    background: rgba(255, 107, 0, 0.1);
    color: var(--or);
}

/* ---------- PREMIUM SERVICES STYLES ---------- */

/* Filter Buttons */
.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255,107,0,0.2);
    background: #fff;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: var(--or);
    color: var(--or);
}
.filter-btn.active {
    background: var(--or);
    color: #fff;
    border-color: var(--or);
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}

/* Services Grid (Detailed Cards) */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.srv-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,107,0,0.08);
    border-color: rgba(255,107,0,0.2);
}
.srv-ic {
    height: 160px;
    overflow: hidden;
}
.srv-ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.srv-card:hover .srv-ic img {
    transform: scale(1.05);
}
.srv-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 20px 20px 10px;
}
.srv-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 20px 20px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-sec { padding: 100px 0; position: relative; z-index: 2; background: transparent; }
.faq-container { max-width: 800px; margin: 50px auto 0; }
.faq-item { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 16px; margin-bottom: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); overflow: hidden; }
.faq-q { padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--fn); font-weight: 700; font-size: 17px; color: var(--text-dark); transition: color 0.3s; }
.faq-q:hover { color: var(--or); }
.faq-q i { color: var(--or); transition: transform 0.3s; }
.faq-a { padding: 0 30px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-gray); font-size: 16px; line-height: 1.8; }
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-item.active .faq-a { padding: 0 30px 24px; max-height: 500px; }

/* CTA BANNER */
.cta-banner-wrapper { padding: 100px 0 120px 0; position: relative; z-index: 2; }
.cta-banner { 
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%); 
    border-radius: 40px; padding: 80px 60px; text-align: center; 
    position: relative; overflow: hidden; 
    box-shadow: 0 30px 80px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.05);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; left: -20%; width: 150%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,107,0,0.25) 0%, rgba(255,107,0,0) 60%);
    pointer-events: none; z-index: 0; filter: blur(40px);
}
.cta-banner h2 {
    color: #ffffff; font-size: 46px; font-weight: 800; margin-bottom: 24px;
    position: relative; z-index: 2; letter-spacing: -0.02em;
}
.cta-banner h2 span {
    background: linear-gradient(135deg, var(--or) 0%, #FF007B 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-banner p {
    color: #aeb6bf; font-size: 19px; margin-bottom: 40px; max-width: 600px; line-height: 1.6;
    position: relative; z-index: 2; font-weight: 300;
}
.cta-banner .btn-holder {
    display: flex; gap: 20px; align-items: center; justify-content: center; position: relative; z-index: 2;
}
.cta-banner .btn {
    padding: 18px 42px; border-radius: 50px; text-decoration: none; font-weight: 700; font-family: var(--fn); font-size: 17px;
    position: relative; z-index: 2; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; align-items: center; justify-content: center;
}
.cta-banner .btn-or {
    background: linear-gradient(135deg, var(--or) 0%, #FF3D00 100%); color: #fff;
    box-shadow: 0 10px 30px rgba(255,107,0,0.3); border: 1px solid rgba(255,255,255,0.1);
}
.cta-banner .btn-or:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(255,107,0,0.5); }

.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* TEAM GALLERY */
.team-gallery-sec {
    padding: 80px 0;
    background: #f8f9fa;
}
.team-gallery-sec h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}
.team-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.team-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    aspect-ratio: 4/3;
}
.team-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-gallery-item:hover img {
    transform: scale(1.08);
}
.team-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.team-gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: var(--or);
}
.work-card {
    cursor: pointer;
}
