/*
|--------------------------------------------------------------------------
| NovaCode - Unified Custom Styles
| Agencia de Marketing Digital y SEO
| Version: 2.0
| Last Updated: $(date +%Y-%m-%d)
|--------------------------------------------------------------------------
|
| Este archivo contiene todos los estilos personalizados de NovaCode
| unificados y organizados para un mejor mantenimiento y rendimiento.
|
| Estructura:
| 1. CSS Variables
| 2. Global Styles & Reset
| 3. Typography
| 4. Buttons & CTAs
| 5. Header & Navigation
| 6. Hero Sections
| 7. Service Pages
| 8. Product Pages
| 9. Portfolio Pages
| 10. About Pages
| 11. Blog & Content
| 12. Footer
| 13. Utilities & Helpers
| 14. Animations
| 15. Responsive Design
|
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| NovaCode - Custom Styles
| Agencia de Marketing Digital y SEO
|--------------------------------------------------------------------------
*/

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary-color: #0066FF;
    --secondary-color: #00D4FF;
    --dark-color: #0A1628;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --gray-color: #6C757D;
    --success-color: #10B981;
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.hero-section{
    padding: 190px 0px 120px;
}
.navbar-brand{
    width: 220px;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;  
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary-custom:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    gap: 12px;
}
.btn{text-transform: uppercase;font-size: 0.9rem;}
.btn-outline-custom i {
    transition: transform 0.3s ease;
}

.btn-outline-custom:hover i {
    transform: translateX(5px);
}

/* ========================================
   Hero Buttons - Special Edition
   ======================================== */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.btn-hero .btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-hero .btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contenedor del círculo con flecha */
.arrow-circle {
    position: relative;
    width: 160px;
    height: 160px;
    display: inline-block;
    background: rgb(228, 224, 249);
    border-radius: 50%;
        padding: 10px;
}

.arrow-circle a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Círculo con texto que gira */
.elements4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

/* Flecha central estática */
.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    z-index: 2;
}

/* Animación de rotación continua */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-circle-decoration{
    animation: rotate2 40s linear infinite;
}
@keyframes rotate2 {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}
  
.btn-hero .btn-icon i {
    font-size: 14px;
}

/* Primary Hero Button */
.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-hero-primary:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.45);
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

.btn-hero-primary:active {
    transform: translateY(-1px) scale(1);
}

/* Outline Hero Button */
.btn-hero-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
    position: relative;
}

.btn-hero-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 10px;
}

.btn-hero-outline:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.3);
}

.btn-hero-outline:hover::before {
    width: 100%;
}

.btn-hero-outline:hover .btn-icon {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

.btn-hero-outline:active {
    transform: translateY(-1px) scale(1);
}

/* Arrow Bounce Animation */
@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Responsive Hero Buttons */
@media (max-width: 768px) {
    .btn-hero {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ========================================
   Sections
   ======================================== */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 35px;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* ========================================
   Preloader
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.loader {
    text-align: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
/* ========================================
   Glassmorphism Navbar
   ======================================== */
.header-area {
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-area .navbar {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled .navbar {
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    padding: 0.7rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    position: relative;
    z-index: 10;
}

.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.3));
}

.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.06);
    transform: translateY(-1px);
}
.nav-scrolled.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active {
    color: white !important;
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.navbar-nav .dropdown:hover .nav-link {
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.06);
}

/* Glassmorphism Dropdowns */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 12px;
    margin-top: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 16px;
    color: var(--text-color);
    transition: all 0.2s ease;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item:active {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 212, 255, 0.12) 100%);
}

.dropdown-item i {
    color: var(--primary-color);
    margin-right: 0px;
    width: 20px;
    text-align: center;
}

/* ========================================
   Mega Menu - Servicios (Glassmorphism)
   ======================================== */
.mega-menu .dropdown-menu.mega-menu-content {
    width: 100%;
    max-width: 900px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 25px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    min-width: 600px;
}

.mega-menu .dropdown-menu.mega-menu-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-header {
    padding: 0 10px 20px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    margin-bottom: 20px;
}

.mega-menu-title {
    font-size: 1.3rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.mega-menu-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 400;
}

.mega-menu-item {
    margin-bottom: 10px;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
}

.mega-menu-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.06) 100%);
    border-color: rgba(0, 102, 255, 0.15);
    transform: translateX(6px);
}

.mega-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--gradient-primary);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
}

.mega-menu-link:hover .mega-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.35);
}

.mega-content h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.mega-menu-link:hover .mega-content h6 {
    color: var(--primary-color);
}

.mega-content p {
    color: #6c757d;
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.3;
}

/* ========================================
   Products Dropdown Menu (Glassmorphism)
   ======================================== */
.products-menu {
    min-width: 420px !important;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.products-menu .dropdown-header {
    padding: 8px 12px 16px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    margin-bottom: 12px;
}

.products-menu .dropdown-header h6 {
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.products-menu .dropdown-header p {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 400;
}

.product-item {
    display: flex !important;
    align-items: center;
    gap: 14px;
    padding: 14px 12px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border: 1px solid transparent;
    margin-bottom: 6px;
}

.product-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 212, 255, 0.04) 100%) !important;
    border-color: rgba(0, 102, 255, 0.12);
    transform: translateX(6px);
}

.product-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.dolphy-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.flowzy-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.calendio-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-item:hover .product-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.product-item:hover .product-name {
    color: var(--primary-color);
}

.product-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   CTA Button in Navbar
   ======================================== */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.25);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
    color: white;
}

.btn-primary-custom:active {
    transform: translateY(0);
}
 body .sticky-top {
    position: -webkit-sticky;
    position: fixed;
    top: 0;
    z-index: 1020;
    left: 0;
    width: 100%;
}
.navbar-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

/* ========================================
   Progress Scroll Indicator
   ======================================== */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: none;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    background: white;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.progress-wrap svg path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    transition: all 0.3s ease;
}

.progress-wrap:hover svg path {
    stroke: var(--secondary-color);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Animated Gradient Background */
/* .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    animation: gradientFloat 15s ease-in-out infinite;
    z-index: 0;
} */

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    animation: gradientFloat 20s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes gradientFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

/* Dot Pattern Overlay */
.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-color);
}

/* .hero-image {
    animation: float 3s ease-in-out infinite;
} */

/* @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
} */

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 3s ease-in-out infinite;
    font-weight: 600;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    z-index: -1;
}

.card-2 {
    bottom: 30%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes .shape {
    position: absolute;
    opacity: 0.08;
    z-index: 0;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    bottom: 50px;
    left: -80px;
    animation-delay: 5s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 40%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(3deg);
    }
}

/* ========================================
   Companies Slider
   ======================================== */
.company-logo {
    padding: 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

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

.company-logo img {
    max-height: 50px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
}

/* ========================================
   About Section
   ======================================== */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.features-list .feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.features-list .feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ========================================
   Service Cards
   ======================================== */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
    border-color: var(--primary-color);
}

.service-card.featured {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    color: white;
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-features li {
    color: white;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 4px 0;
    color: var(--text-color);
}

.service-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.service-card.featured .service-features i {
    color: white;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-card.featured .service-link {
    color: white;
}

.service-link:hover {
    gap: 15px;
}

/* ========================================
   Why Choose Cards
   ======================================== */
.why-card {
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* ========================================
   Process Cards
   ======================================== */
.process-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* ========================================
   CTA Section - New Professional Design
   ======================================== */
.cta-section-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 25s ease-in-out infinite;
}

/* CTA Content */
.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gradient-cta {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--dark-color);
}

.cta-feature-item i {
    color: #10B981;
    font-size: 1.2rem;
}

/* CTA Card */
.cta-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.cta-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.cta-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.cta-card-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-stat:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.stat-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.stat-info p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* CTA Button */
.btn-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.45);
    color: white;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-icon {
    transform: scale(1.2);
}

.cta-note {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.cta-note i {
    color: #10B981;
}

/* Responsive CTA */
@media (max-width: 991px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-card {
        padding: 30px;
        margin-top: 30px;
    }

    .cta-stats {
        gap: 15px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .stat-info h4 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Portfolio Preview Section
   ======================================== */
.portfolio-preview-section {
    position: relative;
}

.portfolio-preview-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.portfolio-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.portfolio-preview-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.portfolio-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-preview-card .portfolio-preview-content{
transition: all 0.4s ease;
}
.portfolio-preview-card:hover .portfolio-preview-content{
    opacity: 0;
}
.portfolio-preview-card:hover .portfolio-preview-image img {
    transform: scale(1.1);
}

/* Overlay gradient over image */
.portfolio-preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 70%);
    z-index: 1;
    opacity: 1;
    transition: all 0.4s ease;
}

.portfolio-preview-card:hover .portfolio-preview-image::before {
    opacity: 0;
}

.portfolio-preview-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 3;
}

.portfolio-preview-card:hover .portfolio-preview-overlay {
    opacity: 1;
    visibility: visible;
}

.btn-portfolio-view {
    background: white;
    color: #0066FF;
    padding: 11px 26px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
}

.btn-portfolio-view:hover {
    background: #0066FF;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.portfolio-preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.portfolio-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-result {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-result i {
    font-size: 1.1rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-item {
    padding: 0 15px;
    opacity: 0.4;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.95);
}

.testimonial-item.slick-current {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: box-shadow 0.3s ease;
}
body .slick-track {
    padding: 40px 0px !important;
}
.slick-current .testimonial-content {
    box-shadow: 0 20px 20px rgba(0, 102, 255, 0.1);
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: rgba(0, 102, 255, 0.05);
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #FFC107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0066FF;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.author-position {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Slick Slider Customization for Testimonials */
.testimonials-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.testimonials-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.testimonials-slider .slick-dots li button {
    width: 30px;
    height: 6px;
    padding: 0;
    border-radius: 10px;
    background: #E5E7EB;
    transition: all 0.4s ease;
}

.testimonials-slider .slick-dots li button:before {
    display: none;
}

.testimonials-slider .slick-dots li.slick-active button {
    width: 60px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.3);
}

.testimonials-slider .slick-dots li button:hover {
    background: #D1D5DB;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.testimonials-slider .slick-prev {
    left: -25px;
}

.testimonials-slider .slick-next {
    right: -25px;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background: #0066FF;
}

.testimonials-slider .slick-prev:hover i,
.testimonials-slider .slick-next:hover i {
    color: white;
}

.testimonials-slider .slick-prev i,
.testimonials-slider .slick-next i {
    color: #0066FF;
    font-size: 1.2rem;
}

/* ========================================
   Stats Section - Unified & Animated
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.stat-box:last-child::after {
    display: none;
}

 

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
}

.stat-box:hover .stat-icon {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.stat-box:hover .stat-icon i {
    -webkit-text-fill-color: white;
    transform: scale(1.1);
}

.stat-box h3 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.stat-box:hover h3 {
    transform: scale(1.05);
}

.stat-box p {
    color: #6B7280;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    transition: all 0.4s ease;
}

.stat-box:hover p {
    color: #374151;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box::after {
        display: none;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Blog Preview Section
   ======================================== */
.blog-preview-section {
    position: relative;
}

.blog-preview-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.blog-preview-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-preview-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999;
}

.blog-date,
.blog-reading-time {
    display: flex;
    align-items: center;
}

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

.blog-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #0066FF;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: #0066FF;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #00D4FF;
    gap: 10px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ========================================
   CTA Section - Centered Edition
   ======================================== */
.cta-section-centered {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Animated Background Particles */
.cta-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.cta-particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.cta-particle-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.cta-particle-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 70%;
    animation-delay: 1s;
}

.cta-particle-5 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(30px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) translateX(-20px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(-40px) scale(1.05);
        opacity: 0.5;
    }
}

/* CTA Content */
.cta-section-centered .container {
    position: relative;
    z-index: 2;
}

.cta-icon-wrapper {
    display: inline-block;
}

.cta-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 3s infinite;
}

.cta-icon-circle i {
    font-size: 2.5rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-title-centered {
    font-size: 35px;
    font-weight: 500;
    color: white;
    line-height: 1;
}
b,
strong {
    font-weight: 600;
}
.text-gradient-cta {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description-centered {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.cta-features-centered {
    max-width: 900px;
    margin: 0 auto;
}

.cta-feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.cta-feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.cta-feature-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-feature-box h6 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-feature-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
}

.cta-buttons-centered {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-centered {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary-centered {
    background: white;
    color: #0066FF;
}

.btn-cta-primary-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary-centered:hover::before {
    left: 100%;
}

.btn-cta-primary-centered:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.btn-cta-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-cta-centered .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn-cta-centered:hover .btn-icon {
    transform: translateX(5px);
}

.cta-note-centered {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.cta-note-centered i {
    color: #10B981;
}

/* Responsive CTA Centered */
@media (max-width: 991px) {
    .cta-title-centered {
        font-size: 2rem;
    }

    .cta-icon-circle {
        width: 80px;
        height: 80px;
    }

    .cta-icon-circle i {
        font-size: 2rem;
    }

    .cta-description-centered {
        font-size: 1rem;
    }

    .cta-feature-box {
        padding: 25px 15px;
    }

    .btn-cta-centered {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .cta-section-centered {
        padding: 60px 0;
    }

    .cta-title-centered {
        font-size: 1.75rem;
    }

    .cta-buttons-centered {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-centered {
        justify-content: center;
    }
}

/* ========================================
   About Page Styles
   ======================================== */

/* About Hero Section */
.about-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* About Story Section */
.about-story-section {
    position: relative;
    background: #FAFAFA;
}

/* Left Image Area */
.about-story-left-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Circular Badge (Top) */
.about-circular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: rgba(204, 229, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circular-badge-content {
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circular-badge-content i {
    font-size: 1.5rem;
    color: #0066FF;
    margin-bottom: 5px;
}

.circular-text {
    font-size: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    max-width: 90px;
    text-align: center;
    display: block;
}

/* Main Circular Image */
.about-main-circle-img.top2 {
    top: 120px;
}
.about-main-circle-img {
    width: 100%;  
    overflow: hidden; 
    position: relative;
    z-index: 5;
}

.about-main-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

 

/* Star Decoration (Left) */
.about-star-decoration {
    position: absolute;
    bottom: 20px;
    left: -10px;
    width: 80px;
    height: 80px;
    z-index: 1;
}

/* Center Content */
.about-story-center-content {
    padding: 20px;
}

.about-story-title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.btn-hero-primary, .btn-hero-secondary{text-transform: capitalize !important;}
.about-story-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    max-width: 450px; 
}

/* Learn More Button */
.btn-story-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.btn-story-learn-more:hover {
    background: linear-gradient(135deg, #0052CC, #00B8E6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
    color: white;
}

.btn-story-learn-more .btn-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.btn-story-learn-more:hover .btn-icon {
    transform: translateX(5px);
}

/* Right Image Area */
.about-story-right-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circle Decoration (Right) */
.about-circle-decoration {
    position: absolute;
    top: 72px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.circle-decoration-inner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    position: relative;
}

.circle-decoration-inner::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 60px;
    background: rgba(0, 212, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-decoration-inner::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: rgba(0, 212, 255, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive */
@media (max-width: 991px) {
    .about-main-circle-img {
        width: 280px;
        height: 280px;
    }

    .about-story-title {
        font-size: 1.8rem;
    }

    .about-circular-badge {
        width: 120px;
        height: 120px;
    }

    .circular-text {
        font-size: 0.45rem;
        max-width: 80px;
    }
}

@media (max-width: 767px) {
    .logo-white.d-lg-none {
            display: block !important;
            position: absolute;
            top: 5px;
            left: 0px;
            opacity: 0;
        }
    .images-content-area.active {
        height: 700px;
    }
    .about-main-circle-img {
        width: 250px;
        height: 350px;
    }

    .about-story-title {
        font-size: 1.6rem;
    }

    .about-story-center-content {
        padding: 40px 20px;
    }
}

/* Why Choose Cards */
.why-choose-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 102, 255, 0.15);
}

.why-choose-card.featured {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
}

.why-choose-card.featured h4,
.why-choose-card.featured p,
.why-choose-card.featured .why-choose-list li {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-choose-card.featured .why-choose-icon {
    background: rgba(255, 255, 255, 0.2);
}

.why-choose-icon i {
    font-size: 2rem;
    color: #0066FF;
}

.why-choose-card.featured .why-choose-icon i {
    color: white;
}

.why-choose-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-choose-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-list i {
    color: #10B981;
    font-size: 0.9rem;
}

.why-choose-card.featured .why-choose-list i {
    color: white;
}

/* Values Section */
.value-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.value-card:hover::before {
    top: -60%;
    right: -60%;
}

.value-card:hover {
    
    box-shadow: 0 15px 45px rgba(0, 102, 255, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-content {
    position: relative;
    z-index: 2;
}

.value-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.value-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.value-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-points li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.value-points i {
    color: #0066FF;
    font-size: 0.9rem;
}

/* Journey Timeline Section */
.journey-images-area {
    position: relative;
}

.journey-images-area .star-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.journey-images-area .star-1 {
    top: 15%;
    left: -30px;
}

.journey-images-area .star-2 {
    bottom: 20%;
    right: -30px;
}

.space100 {
    height: 100px;
}

.journey-img {
    position: relative;
}

.journey-img img {
    width: 100%; 
    transition: all 0.4s ease;
}

 

.journey-timeline-grid {
    position: relative;
    padding-left: 50px;
}

.journey-timeline-item {   
    border-bottom: 1px dashed #0066FF;
    height: 100%;
    position: relative;
    padding-bottom: 30px;;
}

 
 
 

.journey-year {
font-size: .8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.journey-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.journey-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Stats Section */
.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stat-box:hover {

    box-shadow: 0 15px 45px rgba(0, 102, 255, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: #0066FF;
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 500;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-box p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* About CTA Section */
.about-cta-section {
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive About Page */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-badge-circle {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -20px;
    }

    .badge-content h3 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 140px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 100px;
    }

    .timeline-year::before {
        right: -80px !important;
        left: auto !important;
    }

    .timeline-content {
        flex: 1;
    }

    .value-card {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 80px 0 50px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-badge-circle {
        width: 120px;
        height: 120px;
    }

    .badge-content h3 {
        font-size: 2rem;
    }

    .badge-content p {
        font-size: 0.75rem;
    }

    .why-choose-card,
    .value-card {
        padding: 30px;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-hero {
        justify-content: center;
    }

    .timeline-item {
        padding-left: 120px;
    }

    .timeline-year {
        font-size: 1.5rem;
        width: 80px;
    }
}

/* ========================================
   Footer - Dynamic Edition
   ======================================== */
.footer-section {
    background: linear-gradient(135deg, #0A1628 0%, #1a2942 100%);
    color: #ffffff;
    padding: 0;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 20px;
}

/* Decorative Wave */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-100%);
    color: #0A1628;
    z-index: 1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-section .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 30px;
}

/* Animated Background Shapes */
.footer-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -200px;
    animation: floatShape 20s ease-in-out infinite;
}

.footer-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -150px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.footer-logo img {
   width: 70%;

}
b{font-weight: 600 !important;}
 

.footer-widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Social Links - Dynamic */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 16px;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
    border-color: var(--primary-color);
}

.social-link:hover::before {
    opacity: 1;
}

/* Footer Links - Dynamic */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}


/* Contact Items - Dynamic */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info a,
.contact-info span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 30px;
}

.copyright-area {
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        margin-top: 0;
        position: static !important;
    }

    .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown-item {
        padding: 10px 15px;
    }

    /* Mobile Navigation */
    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        border-radius: 8px;
    }

    /* Mega Menu Responsive */
    .mega-menu .dropdown-menu.mega-menu-content {
        position: static !important;
        left: auto !important;
        max-width: 100%;
        padding: 18px;
        margin-top: 10px;
    }

    .mega-menu .dropdown-menu.mega-menu-content.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .mega-menu-header {
        padding-bottom: 12px;
        margin-bottom: 15px;
    }

    .mega-menu-title {
        font-size: 1.1rem;
    }

    .mega-menu-subtitle {
        font-size: 0.82rem;
    }

    .mega-menu-link {
        padding: 12px;
        margin-bottom: 6px;
    }

    .mega-menu-link:hover {
        transform: translateX(4px);
    }

    .mega-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }

    .mega-content h6 {
        font-size: 0.9rem;
    }

    .mega-content p {
        font-size: 0.78rem;
    }

    /* Products Menu Responsive */
    .products-menu {
        min-width: 100% !important;
        position: static !important;
        margin-top: 10px;
        padding: 14px;
    }

    .products-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .product-item {
        padding: 12px !important;
    }

    .product-item:hover {
        transform: translateX(4px);
    }

    .product-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.05rem;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-desc {
        font-size: 0.78rem;
    }

    .product-badge {
        font-size: 0.62rem;
        padding: 2px 7px;
    }

    /* CTA Button Mobile */
    .btn-primary-custom {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .floating-card span{
        font-size: 12px;
    }
    body .floating-card{
        padding: 8px 12px;
    }
        .about-main-circle-img img { 
            object-position: 0 5%;
        }
    body .experience-badge {
        position: absolute;
        bottom: -24px;
        right: 30px;
        background: var(--gradient-primary);
        padding: 10px 20px;
        border-radius: 10px; 
    }
    body .stat-number {
        font-size: 2rem;
    }
        .lead {
            font-size: 1.2rem;
            font-weight: 300;
        }
    .section-title {
        font-size: 2rem;
    }
    body .card-2 {
        bottom: 14%;
        right: 5%;
        animation-delay: 1s;
    }
    body .card-3 {
        top: 79%;
        left: 5%;
        animation-delay: 2s;
    }
     

    .hero-section .display-3 {
        font-size: 2rem;
    }

    .footer-section {
        padding: 60px 0 20px;
    }

    .newsletter-box {
        padding: 20px;
    }

    .newsletter-form .btn {
        margin-top: 10px;
        border-radius: 50px;
        width: 100%;
    }

    .newsletter-form .form-control {
        border-radius: 50px;
    }
}


/* Sección principal */
.service2-section-area {
    padding: 100px 0;
    position: relative;
}

.bg2 {
    background-color: rgba(0, 102, 255, 0.1);
    /* Color de fondo lavanda */
}

/* Header de la sección */
.service2-header {
    margin-bottom: 60px;
    position: relative;
}

.service2-header h5 {
    color: #0066FF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service2-header h2 {
    font-size: 35px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.h3,
h3 {
    font-size: 1.4rem;
}
.service2-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Estrellas decorativas */
.star2,
.star3 {
    position: absolute;
    width: 40px;
    height: 40px;
}

.star2 {
    top: 0;
    left: 15%;
    animation: rotate 10s linear infinite;
}

.star3 {
    top: 0;
    right: 15%;
    animation: rotate 10s linear infinite;
}

/* Contenedor de imagen grande */
.images-content-area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.images-content-area .img1 {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.images-content-area .img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Cajas de Mission y Vision */
.service-all-boxes {
    height: 100%;
}

.service-all-boxes .row {
    height: 100%;
    gap: 20px;
}
.content-area.plus{
    position: absolute;
    bottom: 0;
    padding: 40px;
    color: white;
}
.images-content-area::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 80%);
}
.images-content-area h5{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}
/* Caja Mission (morada) */
.service2-auhtor-boxarea {
    background: linear-gradient(135deg, #4DA3FF 0%, #00D4FF 100%);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Caja Vision (rosa) */
.service2-auhtor2-boxarea {
    background: linear-gradient(135deg, #FBB6CE 0%, #F9A8D4 100%);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Flecha en las cajas */
.service2-auhtor-boxarea .arrow,
.service2-auhtor2-boxarea .arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0066FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service2-auhtor2-boxarea .arrow {
    background-color: #EC4899;
}

.service2-auhtor-boxarea .arrow a,
.service2-auhtor2-boxarea .arrow a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Contenido de las cajas */
.service2-auhtor-boxarea .content-area,
.service2-auhtor2-boxarea .content-area {
    padding-right: 60px;
}

.service2-auhtor-boxarea .content-area h5,
.service2-auhtor2-boxarea .content-area h5 {
    color: #0066FF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service2-auhtor2-boxarea .content-area h5 {
    color: #EC4899;
}

.service2-auhtor-boxarea .content-area a,
.service2-auhtor2-boxarea .content-area a {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service2-auhtor-boxarea .content-area p,
.service2-auhtor2-boxarea .content-area p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Efectos hover */
.service2-auhtor-boxarea:hover .arrow,
.service2-auhtor2-boxarea:hover .arrow {
    transform: scale(1.1);
}

.service2-auhtor-boxarea:hover,
.service2-auhtor2-boxarea:hover {
    
    transition: transform 0.3s ease;
}

/* Animación de rotación para las estrellas */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .service2-header h2 {
        font-size: 36px;
    }

    .images-content-area {
        margin-bottom: 30px;
    }

    .service-all-boxes .row {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .service2-section-area {
        padding: 60px 0;
    }

    .service2-header h2 {
        font-size: 28px;
    }

    .service2-auhtor-boxarea,
    .service2-auhtor2-boxarea {
        margin-bottom: 20px;
    }
}

/* Sección principal */
.works-inner-section-area {
    padding: 100px 0;
    background-color: #fff;
}

/* Header de la sección */
.works-header-area h5 {
    color: #0066FF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.works-header-area h2 {
    font-size: 35px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.works-header-area p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Cajas de contenido */
.works-content-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background-color: #F8F9FA;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.works-content-box:hover {
    background-color: #fff;
    border-color: rgba(0, 102, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

/* Iconos */
.works-content-box .icons {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.works-content-box:hover .icons {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
}

.works-content-box .icons img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(73%) saturate(2234%) hue-rotate(236deg) brightness(95%) contrast(91%);
    transition: all 0.3s ease;
}

.works-content-box:hover .icons img {
    filter: brightness(0) invert(1);
}

/* Contenido de las cajas */
.works-content-box .content {
    flex: 1;
}

.works-content-box .content a {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.works-content-box:hover .content a {
    color: #0066FF;
}

.works-content-box .content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Área de imágenes */
.about-all-images-area {
    position: relative; 
}

/* Elementos decorativos */
.elements12,
.elements13 {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.elements12 {
    top: 10%;
    right: 5%;
    animation: rotate 10s linear infinite;
}

.elements13 {
    bottom: 15%;
    left: -5%;
    animation: rotate 10s linear infinite;
}

/* Contenedor de imágenes */
.about-all-images-area .row {
    position: relative;
    z-index: 2;
}

/* Imagen 1 (izquierda - persona con camisa a cuadros) */
.about-all-images-area .img1 {
    position: relative;
}

 

/* Imagen 2 (derecha - persona trabajando) */
.about-all-images-area .img2 {
    position: relative;
}

 

/* Animación de entrada para imágenes */
.image-anime {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.about-all-images-area .img1 {
    animation-delay: 0.2s;
}

.about-all-images-area .img2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de rotación para elementos decorativos */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Espaciadores */
.space20 {
    height: 20px;
}

.space32 {
    height: 32px;
}

.space100 {
    height: 100px;
}

/* Responsive */
@media (max-width: 991px) {
    .works-header-area h2 {
        font-size: 36px;
    }

    .about-all-images-area {
        margin-top: 50px;
    }

    .space100 {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .works-inner-section-area {
        padding: 60px 0;
    }

    .works-header-area h2 {
        font-size: 28px;
    }

    .works-content-box {
        padding: 20px;
    }

    .works-content-box .content a {
        font-size: 18px;
    }

    .about-all-images-area .img1 img,
    .about-all-images-area .img2 img {
        margin-bottom: 20px;
    }

    .space100 {
        height: 0;
    }
}
/* Font Awesome Icons for Works Content Box */
.works-content-box .icons i {
    font-size: 26px;
    color: #0066FF;
    transition: all 0.3s ease;
}

.works-content-box:hover .icons i {
    color: white;
    transform: rotate(5deg);
}


.portfolio-detail-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 170px 0 80px;
}

.portfolio-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.portfolio-detail-hero .container {
    position: relative;
    z-index: 10;
}

.portfolio-detail-hero h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.portfolio-detail-hero .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
}

.portfolio-detail-content {
    padding: 80px 0;
}

.case-study-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.case-study-section {
    margin-bottom: 40px;
}

.case-study-section h3 {
    color: #0066FF;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.case-study-section h3 i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
    border-radius: 12px;
    font-size: 1.2rem;
}

.case-study-section p {
    color: #6B7280;
    line-height: 1.8;
    font-size: 1.1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.metric-card {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
}

.metric-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.metric-card p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    color: white;
}

.project-info-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.project-info-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-info-item:last-child {
    border-bottom: none;
}

.project-info-label {
    font-weight: 700;
    color: #1F2937;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.project-info-label i {
    color: #0066FF;
    font-size: 1.1rem;
}

.project-info-value {
    color: #6B7280;
    margin-left: 30px;
}

.tech-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px;
}

.cta-card {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 30px;
}

.cta-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-cta {
    background: white;
    color: #0066FF;
    padding: 11px 26px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #0066FF;
}

.related-projects {
    background: #F9FAFB;
    padding: 80px 0;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}
.btn-white-outline {
    background: white;
    color: #0066FF !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-white-outline:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #00D4FF;
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom .current {
    color: white;
}
footer .social-links {
    justify-content: start;
}

/* ======================================== 
   HERO EFFECTS - Additional Effects 
   ======================================== */
/*
|--------------------------------------------------------------------------
| Hero Section - Effects Opcionales
| NovaCode - Agencia de Marketing Digital
|--------------------------------------------------------------------------
|
| Este archivo contiene efectos adicionales para el hero.
| Para usarlos, agrega la clase correspondiente al elemento .hero-section
|
| Ejemplos:
| <section class="hero-section hero-waves">
| <section class="hero-section hero-particles">
| <section class="hero-section hero-grid-lines">
|
*/

/* ========================================
   OPCIÓN 1: Ondas Animadas (Sutil)
   ======================================== */
.hero-waves::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230066FF" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    z-index: 0;
    animation: waveMove 15s linear infinite;
}

@keyframes waveMove {
    0% { background-position: 0 bottom; }
    100% { background-position: 1440px bottom; }
}

/* ========================================
   OPCIÓN 2: Grid Lines (Cyber/Tech Look)
   ======================================== */
.hero-grid-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* ========================================
   OPCIÓN 3: Partículas Flotantes
   ======================================== */
.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.hero-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-particles .particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation: particleFloat 10s ease-in-out infinite 1s;
}

.hero-particles .particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation: particleFloat 12s ease-in-out infinite 2s;
}

.hero-particles .particle:nth-child(4) {
    bottom: 30%;
    right: 25%;
    animation: particleFloat 9s ease-in-out infinite 3s;
}

.hero-particles .particle:nth-child(5) {
    top: 70%;
    left: 30%;
    animation: particleFloat 11s ease-in-out infinite 4s;
}

.hero-particles .particle:nth-child(6) {
    top: 15%;
    right: 35%;
    animation: particleFloat 13s ease-in-out infinite 5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 0.4;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.8);
        opacity: 0.1;
    }
    75% {
        transform: translate(30px, 10px) scale(1.2);
        opacity: 0.3;
    }
}

/* ========================================
   OPCIÓN 4: Glow Effect (Brillo Sutil)
   ======================================== */
.hero-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 102, 255, 0.1) 0%,
        rgba(0, 212, 255, 0.05) 30%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ========================================
   OPCIÓN 5: Mesh Gradient (Muy Moderno)
   ======================================== */
.hero-mesh {
    background:
        radial-gradient(at 0% 0%, rgba(0, 102, 255, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 212, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 102, 255, 0.06) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(0, 212, 255, 0.04) 0px, transparent 50%),
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, center; }
    50% { background-position: 10% 10%, 90% 10%, 90% 90%, 10% 90%, center; }
}

/* ========================================
   OPCIÓN 6: Líneas Diagonales (Sutil)
   ======================================== */
.hero-diagonal-lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(0, 102, 255, 0.02) 35px,
        rgba(0, 102, 255, 0.02) 70px
    );
    z-index: 0;
}

/* ========================================
   OPCIÓN 7: Blobs Orgánicos Animados
   ======================================== */
.hero-blobs .blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    filter: blur(40px);
    z-index: 0;
}

.hero-blobs .blob1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    animation: blobMove1 25s ease-in-out infinite;
}

.hero-blobs .blob2 {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    animation: blobMove2 20s ease-in-out infinite;
}

@keyframes blobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        transform: translate(50px, -50px) rotate(180deg);
        border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%;
    }
}

@keyframes blobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-30px, 30px) rotate(-180deg);
        border-radius: 30% 70% 70% 30% / 50% 60% 40% 50%;
    }
}

/* ========================================
   COMBINACIONES RECOMENDADAS
   ======================================== */

/* Combinación Moderna y Sutil (Recomendada) */
.hero-modern {
    background:
        radial-gradient(at 20% 30%, rgba(0, 102, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(0, 212, 255, 0.06) 0px, transparent 50%),
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Combinación Tech/Cyber */
.hero-tech {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-tech::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Combinación Minimalista Premium */
.hero-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(
        circle,
        rgba(0, 102, 255, 0.03) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    z-index: 0;
}


/* ======================================== 
   ABOUT HERO - Animated Background 
   ======================================== */
/* ========================================
   About Hero Section - Premium Effects
   ======================================== */
.about-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Container */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    top: 70%;
    left: 20%;
    animation-delay: 3s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 50%;
    left: 90%;
    animation-delay: 5s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 15%;
    left: 60%;
    animation-delay: 7s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-circle,
.shape-square,
.shape-triangle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: rotateShape 20s infinite linear;
}

.shape-circle {
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(255, 255, 255, 0.1);
    top: 30%;
    left: 20%;
    animation-delay: 15s;
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Grid Lines */
.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 212, 255, 0.3) 50%,
        transparent 100%
    );
    opacity: 0;
    animation: lineGlow 8s infinite ease-in-out;
}

.line-1 {
    width: 2px;
    height: 100%;
    left: 25%;
    animation-delay: 0s;
}

.line-2 {
    width: 100%;
    height: 2px;
    top: 30%;
    animation-delay: 2s;
}

.line-3 {
    width: 2px;
    height: 100%;
    right: 30%;
    animation-delay: 4s;
}

.line-4 {
    width: 100%;
    height: 2px;
    bottom: 25%;
    animation-delay: 6s;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hero Content */
.about-hero-section .container {
    position: relative;
    z-index: 10;
}

/* Breadcrumb */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #00D4FF;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
}

/* Hero Title */
.hero-content-wrapper {
    margin: 60px 0;
}

.about-hero-title-new {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Arrow Circle (for Story Section) */
.arrow-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.arrow-circle a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.arrow-circle .elements4 {
    width: 100%;
    height: auto;
}

.arrow-circle .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
}

/* Top2 Class */
.top2 {
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 991px) {
    
    .hero-section#home .col-lg-6:nth-child(1) {
            order: 2;
            margin-top: 40px;
        }
    
        .hero-section#home {
            padding: 80px 0px 120px !important;
        }
    .about-hero-section {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .about-hero-title-new {
        font-size: 4rem;
    }

    .gradient-orb {
        filter: blur(60px);
    }

    .orb-1, .orb-2 {
        width: 300px;
        height: 300px;
    }

    .orb-3 {
        width: 250px;
        height: 250px;
    }

    .arrow-circle {
        width: 100px;
        height: 100px;
    }

    .top2 {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
     
    .about-hero-section {
        min-height: 50vh;
        padding: 80px 0 50px;
    }

    .about-hero-title-new {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-content-wrapper {
        margin: 40px 0;
    }

    .scroll-indicator {
        margin-top: 40px;
    }

    .arrow-circle {
        width: 80px;
        height: 80px;
    }

    .top2 {
        margin-top: 20px;
    }
}


/* ======================================== 
   PORTFOLIO PAGE STYLES 
   ======================================== */
/* ========================================
   Portfolio Page Styles
   ======================================== */

/* ========================================
   Portfolio Hero Section
   ======================================== */
.portfolio-hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}
.pt-120 {
    padding-top: 120px;
}
.pt-180 {
    padding-top: 180px;
}
.mb-80{
    margin-bottom: 80px;
}
.pb-120{
    padding-bottom: 120px;
}
/* Animated Background */
.portfolio-hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Gradient Orbs */
.portfolio-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb 20s infinite ease-in-out;
}

.portfolio-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.portfolio-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Hero Content */
.portfolio-hero-section .container {
    position: relative;
    z-index: 10;
}

/* Breadcrumb */
.portfolio-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.portfolio-breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.portfolio-breadcrumb-link:hover {
    color: #00D4FF;
}

.portfolio-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

.portfolio-breadcrumb-current {
    color: white;
    font-weight: 600;
}

/* Hero Title */
.portfolio-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.portfolio-hero-gradient-text {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.portfolio-hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   Portfolio Filter Section
   ======================================== */
.portfolio-filter-section {
    padding: 60px 0 40px;
}

.portfolio-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.portfolio-filter-btn {
    background: white;
    color: #1a1a2e;
    border: 2px solid #E5E7EB;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.portfolio-filter-btn:hover::before,
.portfolio-filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.portfolio-filter-btn span {
    position: relative;
    z-index: 1;
}

.portfolio-filter-btn:hover {
    color: white;
    border-color: #0066FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.portfolio-filter-btn.active {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
    border-color: #0066FF;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

/* ========================================
   Portfolio Grid (Masonry)
   ======================================== */
.portfolio-masonry {
    margin: 0 -8px;
}

.portfolio-item {
    padding: 8px; 
}

/* ========================================
   Portfolio CTA Section
   ======================================== */
.portfolio-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.portfolio-cta-content {
    position: relative;
    z-index: 2;
}

.portfolio-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.portfolio-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-portfolio-cta {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-portfolio-cta-primary {
    background: white;
    color: #0066FF;
}

.btn-portfolio-cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-portfolio-cta-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-portfolio-cta-outline:hover {
    background: white;
    color: #0066FF;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .portfolio-hero-section {
        min-height: 45vh;
        padding: 120px 0 60px;
    }

    .portfolio-hero-title {
        font-size: 3.5rem;
    }

    .portfolio-gradient-orb {
        filter: blur(60px);
    }

    .portfolio-orb-1,
    .portfolio-orb-2 {
        width: 300px;
        height: 300px;
    }

    .portfolio-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .portfolio-hero-section {
        min-height: 40vh;
        padding: 100px 0 50px;
    }

    .portfolio-hero-title {
        font-size: 2.5rem;
    }

    .portfolio-hero-description {
        font-size: 1rem;
    }

    .portfolio-filter-buttons {
        gap: 10px;
    }

    .portfolio-filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .portfolio-cta-title {
        font-size: 1.75rem;
    }

    .portfolio-cta-description {
        font-size: 1rem;
    }

    .portfolio-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-portfolio-cta {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .portfolio-hero-title {
        font-size: 2rem;
    }

    .portfolio-filter-buttons {
        flex-direction: column;
    }

    .portfolio-filter-btn {
        width: 100%;
    }
}


/* ======================================== 
   SERVICES PAGE STYLES 
   ======================================== */
/* ========================================
   Services Pages - Unified Styles
   NovaCode - Professional Service Pages
   ======================================== */

/* ========================================
   Service Hero Section
   ======================================== */
.service-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0066FF, transparent);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00D4FF, transparent);
    bottom: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.service-breadcrumb a:hover {
    color: white;
}

.service-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.service-breadcrumb .current {
    color: white;
    font-weight: 600;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00D4FF;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.benefit-item i {
    color: #10B981;
    font-size: 1.2rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Service Hero Visual */
.service-hero-visual {
    position: relative;
    z-index: 10;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.visual-icon i {
    font-size: 2.5rem;
    color: white;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-value.up {
    color: #10B981;
}

/* ========================================
   Problem-Solution Section
   ======================================== */
.problem-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-left: 4px solid #DC2626;
    height: 100%;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FEE2E2, #FEF3F2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 1.8rem;
    color: #DC2626;
}

.problem-card h5 {
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 15px;
}

.problem-card p {
    color: #6B7280;
    line-height: 1.7;
    margin: 0;
}

.solution-banner {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 24px;
    padding: 50px;
    color: white;
}

.solution-banner h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.solution-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}


/* ========================================
   Service Feature Cards
   ======================================== */
.service-feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.service-feature-card.featured {
    border: 2px solid #0066FF;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.service-feature-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-feature-card:hover .service-icon {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    transform: scale(1.1) rotate(5deg);
}

.service-feature-card .service-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.service-feature-card:hover .service-icon i {
    -webkit-text-fill-color: white;
}

.service-feature-card h4 {
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-feature-card p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    color: #374151;
}

.feature-list li i {
    color: #10B981;
    font-size: 1rem;
}

/* ========================================
   Process Section
   ======================================== */
.process-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step h5 {
    color: #1F2937;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-step p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Results Section
   ======================================== */
.result-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
}

.result-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.result-label {
    color: #1F2937;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.result-description {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 2.5rem;
    }

    .trust-indicators {
        gap: 20px;
    }

    .solution-banner {
        padding: 35px;
        text-align: center;
    }

    .solution-banner .btn-white-outline {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .service-hero-section {
        padding: 100px 0 60px;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ========================================
   Service Sidebar Styles
   ======================================== */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-info-card:hover {
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
    transform: translateY(-5px);
}

.service-info-card h4 {
    color: #1F2937;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-feature-item:last-child {
    border-bottom: none;
}

.service-feature-item:hover {
    transform: translateX(5px);
}

.feature-check-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-feature-item:hover .feature-check-icon {
    background: linear-gradient(135deg, #10B981, #34D399);
    transform: scale(1.1);
}

.feature-check-icon i {
    font-size: 1.1rem;
    color: #10B981;
    transition: all 0.3s ease;
}

.service-feature-item:hover .feature-check-icon i {
    color: white;
}

.feature-text {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

/* Service CTA Card */
.service-cta-card {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.service-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.service-cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-cta-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    border: none;
    padding: 0;
}

.service-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.btn-service-cta {
    background: white;
    color: #0066FF;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #0066FF;
}

/* Service Stats Card */
.service-stats-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    margin-bottom: 30px;
}

.service-stat-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-stat-item:last-child {
    border-bottom: none;
}

.service-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.service-stat-label {
    color: #6B7280;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
}


/* ======================================== 
   PRODUCT PAGE STYLES 
   ======================================== */
/* ========================================
   Product Landing Page Styles
   Optimized for Conversion & SEO
   ======================================== */

/* ========================================
   Product Hero Section
   ======================================== */
.product-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.product-hero .container {
    position: relative;
    z-index: 10;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00D4FF;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.product-hero h1 .gradient-text {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-hero .lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.product-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
 

.btn-product-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
        font-size: 1rem; 
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.product-trust-badges {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge-item i {
    color: #00D4FF;
    font-size: 1.2rem;
}

.product-hero-image {
    position: relative;
    z-index: 10;
}

.product-screenshot {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Problem-Solution Section
   ======================================== */
.problem-section {
    padding: 100px 0;
    background: #fff;
}

.problem-card {
    background: linear-gradient(135deg, #FEF3F2 0%, #FEE2E2 100%);
    border-left: 4px solid #DC2626;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.problem-card h3 {
    color: #991B1B;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card ul li {
    padding: 12px 0;
    color: #7F1D1D;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.problem-card ul li i {
    color: #DC2626;
    margin-top: 4px;
}

.solution-card {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-left: 4px solid #0066FF;
    padding: 40px;
    border-radius: 16px;
}

.solution-card h3 {
    color: #1E40AF;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-card ul {
    list-style: none;
    padding: 0;
}

.solution-card ul li {
    padding: 12px 0;
    color: #1E3A8A;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.solution-card ul li i {
    color: #0066FF;
    margin-top: 4px;
}

/* ========================================
   Features Grid Section
   ======================================== */
.features-grid-section {
    padding: 100px 0;
    background: #F9FAFB;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-grid-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.feature-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-grid-item h4 {
    color: #1F2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-grid-item p {
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Product Screenshots Section
   ======================================== */
.screenshots-section {
    padding: 100px 0;
    background: white;
}

.screenshot-showcase {
    margin-top: 60px;
}

.screenshot-item {
    margin-bottom: 40px;
}

.screenshot-item img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #FBBF24;
    color: #78350F;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-card.featured h3 {
    color: white;
}

.pricing-description {
    color: #6B7280;
    margin-bottom: 30px;
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0066FF;
    line-height: 1;
}

.pricing-card.featured .price-amount {
    color: white;
}

.price-period {
    color: #6B7280;
    font-size: 1.1rem;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 14px 0;
    color: #374151;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured .pricing-features li {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li i {
    color: #0066FF;
    font-size: 1.2rem;
}

.pricing-card.featured .pricing-features li i {
    color: white;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: white;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    color: white;
}

.btn-pricing-white {
    background: white;
    color: #0066FF;
}

.btn-pricing-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ========================================
   Social Proof Section
   ======================================== */
.social-proof-section {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0066FF;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    color: #6B7280;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid #0066FF;
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    color: #1F2937;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info p {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 100px 0;
    background: #F9FAFB;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F9FAFB;
    color: #0066FF;
}

.faq-question i {
    font-size: 1.5rem;
    color: #0066FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 24px;
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 10;
}

.final-cta-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-section .gradient-text {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title-product {
    font-size: 3rem;
    font-weight: 900;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle-product {
    font-size: 1.2rem;
    color: #6B7280;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }

    .product-hero .lead {
        font-size: 1.2rem;
    }

    .product-cta-buttons {
        flex-direction: column;
    }

    .btn-product-primary,
    .btn-product-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title-product {
        font-size: 2rem;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ============================================
   UTILIDADES DE ACCESIBILIDAD (WCAG 2.1 AA)
   ============================================ */

/* Screen Reader Only - Ocultar visualmente pero mantener para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to main content - Accesibilidad para teclado */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    transition: top 0.3s;
}

.skip-to-main:focus {
    top: 0;
}
