/* 
 * Vyonatech - Custom Premium Stylesheet
 * Brand Theme: Warm Luxury SaaS & IT Agency
 * Color Palette: Warm Linen, Rich Clay, Charcoal Slate
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Dynamic Theme Variable Declarations (Default: LUXURIOUS LIGHT MODE) */
:root {
    --bg-base: #F8F6F2;
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --border-card: #E7E0D7;
    --color-primary: #A85B2B;
    --color-secondary: #D89A63;
    --color-accent: #E8D4BE;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #8c96a3;
    --shadow-main: 0 10px 30px -10px rgba(20, 20, 20, 0.05), 0 1px 3px rgba(20, 20, 20, 0.01);
    --shadow-glow: 0 20px 40px -15px rgba(168, 91, 43, 0.08);
    --glass-blur: blur(12px);
    --nav-bg: rgba(248, 246, 242, 0.85);
    --footer-bg: #FFFFFF;
    --primary-gradient: linear-gradient(135deg, #A85B2B 0%, #D89A63 100%);
    --accent-gradient: linear-gradient(135deg, #D89A63 0%, #E8D4BE 100%);
    --bg-mesh: radial-gradient(at 0% 0%, rgba(168, 91, 43, 0.03) 0px, transparent 50%),
               radial-gradient(at 100% 100%, rgba(216, 154, 99, 0.03) 0px, transparent 50%);
    --card-glow-hover: linear-gradient(135deg, rgba(168, 91, 43, 0.01) 0%, rgba(216, 154, 99, 0.01) 100%);
}

/* Dark Theme Variable Overrides (Class Toggled) */
body.dark-theme {
    --bg-base: #0F172A;
    --bg-surface: #111827;
    --bg-card: #1E293B;
    --border-card: rgba(255, 255, 255, 0.08);
    --color-primary: #D89A63;
    --color-secondary: #F0B27A;
    --color-accent: #F8FAFC;
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #8c96a3;
    --shadow-main: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 20px 40px -10px rgba(216, 154, 99, 0.15);
    --glass-blur: blur(12px);
    --nav-bg: rgba(15, 23, 42, 0.85);
    --footer-bg: #0F172A;
    --primary-gradient: linear-gradient(135deg, #D89A63 0%, #F0B27A 100%);
    --accent-gradient: linear-gradient(135deg, #F0B27A 0%, rgba(255, 255, 255, 0.08) 100%);
    --bg-mesh: radial-gradient(at 0% 0%, rgba(216, 154, 99, 0.05) 0px, transparent 50%),
               radial-gradient(at 100% 100%, rgba(240, 178, 122, 0.05) 0px, transparent 50%);
    --card-glow-hover: linear-gradient(135deg, rgba(216, 154, 99, 0.02) 0%, rgba(240, 178, 122, 0.02) 100%);
}

/* Base resets and Typography */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    background-image: var(--bg-mesh);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease, background-image 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.025em;
    transition: color 0.4s ease;
}

p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}

/* Page Preloader styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-base);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-circle {
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-top-color: var(--color-primary);
    border-bottom-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loader-circle::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid transparent;
    border-left-color: var(--color-accent);
    border-radius: 50%;
    animation: spin-reverse 0.8s linear infinite;
}

.loader-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* Premium Solid Navigation */
.navbar {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.2rem 0;
    z-index: 10000;
}

.navbar.navbar-scrolled {
    background-color: var(--nav-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-card);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    font-weight: 400;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 10%;
    background: var(--color-primary);
    transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-primary);
    transition: all 0.25s ease-in-out;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Theme Switcher Button */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-card);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 1rem;
}

.theme-toggle-btn:hover {
    background-color: var(--bg-card);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.theme-toggle-btn .fa-sun {
    display: none;
}

body.dark-theme .theme-toggle-btn .fa-moon {
    display: none;
}

body.dark-theme .theme-toggle-btn .fa-sun {
    display: block;
}

/* Solid Premium Cards (Inspired by Stripe & Vercel) */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    box-shadow: var(--shadow-main);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-glow-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 91, 43, 0.25);
    box-shadow: var(--shadow-main);
}

body.dark-theme .glass-card:hover {
    border-color: rgba(216, 154, 99, 0.35);
    box-shadow: var(--shadow-glow);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Premium Solid CTA Buttons */
.btn-premium {
    background: var(--primary-gradient);
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(168, 91, 43, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 91, 43, 0.25);
}

body.dark-theme .btn-premium:hover {
    box-shadow: 0 6px 16px rgba(216, 154, 99, 0.35);
}

.btn-premium:hover::after {
    opacity: 1;
}

.btn-premium-outline {
    background: transparent;
    border: 1.5px solid var(--border-card);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium-outline:hover {
    background: var(--bg-card);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-main);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 9rem 0 6rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    filter: blur(50px);
}

.hero-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 3rem;
}

.tech-badge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.tech-badge-card i {
    color: var(--color-primary);
}

.hero-illustration-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-back {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(59, 130, 246, 0.3) 100%);
    filter: blur(80px);
    animation: rotate-mesh 20s linear infinite;
}

.hero-mockup-wrapper {
    position: relative;
    border-radius: 24px;
    border: 1px solid var(--border-card);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    background: rgba(10, 10, 36, 0.5);
    backdrop-filter: var(--glass-blur);
    padding: 1rem;
    width: 100%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate-mesh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Counters Styling */
.counter-box {
    text-align: center;
    padding: 1.5rem;
}

.counter-value {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Common Styling */
.section-padding {
    padding: 7rem 0;
}

.section-title-area {
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    display: block;
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Service Cards Custom */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover .service-icon-box {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.glass-card:hover .service-card-title {
    color: var(--color-primary);
}

/* Technology Grid Items */
.tech-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}

.tech-logo-card i, .tech-logo-card img {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tech-logo-card:hover i, .tech-logo-card:hover img {
    transform: scale(1.15) translateY(-5px);
    color: var(--color-primary);
    filter: drop-shadow(var(--shadow-glow));
}

.tech-logo-card span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.tech-logo-card:hover span {
    color: var(--text-primary);
}

/* Industry Cards styling */
.industry-card-img {
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-card);
}

.industry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, var(--bg-surface) 100%);
}

.industry-icon-overlay {
    position: absolute;
    bottom: -20px;
    left: 24px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.4);
}

/* Testimonial slider custom styled */
.testimonial-card {
    padding: 3rem 2.5rem;
}

.stars-rating {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.client-info-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    object-fit: cover;
}

.client-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Accordion Premium Styling */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card) !important;
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.accordion-header {
    background: transparent;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.3rem 1.8rem;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.accordion-button::after {
    filter: invert(0);
    transition: transform 0.3s ease;
}

body.dark-theme .accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(139, 92, 246, 0.05);
    color: var(--color-primary) !important;
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 0 1.8rem 1.8rem 1.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Conversion Banner */
.cta-banner-wrapper {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(59, 130, 246, 0.8) 100%),
                url('../images/cta-bg.jpg') center center no-repeat;
    background-size: cover;
    border-radius: 30px;
    padding: 5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner-wrapper h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-banner-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.2rem;
}

/* Premium Footer */
.footer {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--border-card);
    padding: 6rem 0 2rem 0;
    transition: background-color 0.4s ease;
}

.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand span {
    font-weight: 400;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-contact-info i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Newsletter Input Form styling */
.newsletter-form {
    position: relative;
    margin-top: 1rem;
}

.newsletter-input {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background-color: var(--bg-surface);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    outline: none;
}

.newsletter-submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary-gradient);
    border: none;
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.newsletter-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Floating WhatsApp bubble styling */
.whatsapp-floating-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-floating-bubble:hover .whatsapp-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: #ef4444;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsapp-badge-pulse 2s infinite;
}

.whatsapp-tooltip-bubble {
    background: rgba(10, 10, 36, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-card);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-left: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: var(--shadow-main);
}

.whatsapp-floating-bubble:hover .whatsapp-tooltip-bubble {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-badge-pulse {
    0% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.5; }
}

/* Scroll to top button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-main);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.scroll-progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-circle {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 3;
    stroke-dasharray: 141; /* Circumference = 2 * PI * r (r = 22.5) */
    stroke-dashoffset: 141;
    transition: stroke-dashoffset 0.1s linear;
}

/* Internal Banner Header Styling */
.internal-page-header {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
    padding: 10rem 0 6rem 0;
    border-bottom: 1px solid var(--border-card);
    text-align: center;
    position: relative;
}

.internal-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-mesh);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.internal-page-header > div {
    position: relative;
    z-index: 1;
}

/* Dynamic Premium Badge */
.badge-premium {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    color: var(--text-primary) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-main);
}

.badge-premium i {
    color: var(--color-primary);
}

.badge-premium:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.badge-premium.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF !important;
}

.badge-premium.active i {
    color: #FFFFFF !important;
}

/* Premium Conversions Banner */
.cta-banner-wrapper {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-base) 100%);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-mesh);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
}

.cta-banner-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-banner-wrapper p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.75;
}

.internal-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.breadcrumb-custom a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb-custom span {
    color: var(--text-muted);
}

/* Timeline Custom Styles */
.timeline-wrapper {
    position: relative;
    padding-left: 3rem;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--border-card);
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Careers open positions */
.job-listing-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.job-meta-badges {
    display: flex;
    gap: 0.8rem;
}

.job-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Form Styles */
.form-group-custom {
    margin-bottom: 1.5rem;
}

.form-label-custom {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    color: var(--text-primary) !important;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: var(--bg-surface);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-muted);
}

/* Blog layouts */
.blog-card-img {
    height: 230px;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 2rem;
}

.blog-post-category {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-post-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-card);
    padding-top: 1rem;
}

/* Sidebar Custom Widgets */
.sidebar-widget {
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-card);
}

.sidebar-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    bottom: -1px;
    left: 0;
}

.category-list-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list-widget li {
    margin-bottom: 0.8rem;
}

.category-list-widget a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.category-list-widget a:hover {
    color: var(--color-primary);
}

/* Premium Editorial SaaS Animations */
.animate-spin-slow {
    animation: spin-slow-rotate 30s linear infinite;
}

@keyframes spin-slow-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.animate-float-slow {
    animation: float-slow-movement 6s ease-in-out infinite;
}

@keyframes float-slow-movement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-float-delayed {
    animation: float-delayed-movement 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes float-delayed-movement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.hover-white {
    transition: all 0.2s ease;
    cursor: pointer;
}

.hover-white:hover {
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

.transition-all {
    transition: all 0.2s ease;
}

/* Responsive Fixes & Custom Utility Breakpoints */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .cta-banner-wrapper {
        padding: 3rem;
    }
    .cta-banner-wrapper h2 {
        font-size: 2.2rem;
    }
    .navbar-collapse {
        background-color: var(--bg-surface);
        border: 1px solid var(--border-card);
        border-radius: 16px;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-main);
    }
    .theme-toggle-btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    .job-listing-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-main-title {
        font-size: 2rem;
    }
    .hero-tech-badges {
        margin-top: 2rem;
    }
    .cta-banner-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Category Sidebar Widget */
.category-list-widget li {
    margin-bottom: 0.5rem;
    list-style: none;
}

.category-list-widget a {
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 3px solid transparent;
}

.category-list-widget a:hover {
    color: var(--color-primary);
    background: var(--bg-base);
    padding-left: 1.5rem;
    border-left-color: var(--color-primary);
}

/* Tech Logo Cards */
.tech-logo-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: 12px;
}

.tech-logo-card i {
    font-size: 2.25rem;
    transition: transform 0.3s ease;
}

.tech-logo-card span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.tech-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.tech-logo-card:hover i {
    transform: scale(1.1);
}

/* Premium Form Controls */
.form-label-custom {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control-custom {
    background: var(--bg-surface) !important;
    border: 1.5px solid var(--border-card) !important;
    color: var(--text-primary) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-main);
    width: 100%;
}

.form-control-custom:focus {
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-glow) !important;
    background: var(--bg-surface) !important;
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

/* Modal Premium Styles */
.modal-content-custom {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-card) !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-glow) !important;
}

.modal-header-custom {
    border-bottom: 1px solid var(--border-card) !important;
    padding: 1.5rem !important;
}

.modal-body-custom {
    padding: 1.5rem !important;
}

.modal-footer-custom {
    border-top: 1px solid var(--border-card) !important;
    padding: 1.5rem !important;
}

/* Newsletter Custom Subscription Form */
.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 0.85rem 3.5rem 0.85rem 1.25rem;
    border-radius: 30px;
    border: 1.5px solid var(--border-card) !important;
    background: var(--bg-surface) !important;
    color: var(--text-primary) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-main);
}

.newsletter-input:focus {
    border-color: var(--color-primary) !important;
    box-shadow: var(--shadow-glow) !important;
    outline: none;
}

.newsletter-submit-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.newsletter-submit-btn:hover {
    background: var(--color-hover);
    transform: translateY(-50%) scale(1.05);
}
