*{
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
}
/* Modern Floating Navigation Bar - Sleek & Professional */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    background: rgba(47, 58, 78, 0.85); /* Slightly transparent with theme color */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled {
    background: rgba(47, 58, 78, 0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-container {
    padding: 0 24px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 10;
}

.nav-logo img {
    height: 72px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    position: relative;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.nav-link:hover,
.nav-link.active {
    color: #FF8C42;
    background: rgba(255, 140, 66, 0.1);
}

.chevron-down {
    width: 4px;
    height: 4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.has-mega:hover .chevron-down {
    transform: rotate(225deg);
}

/* Clean Mega Menu - Text Based Like RegisterKaro */
.mega-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 85vw;
    max-width: 900px;
    min-width: 700px;
    overflow: hidden;
    z-index: 999;
    pointer-events: none;
}

/* Smart positioning to prevent viewport overflow */
@media (min-width: 1024px) {
    .mega-menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(10px);
    }

    .nav-item:nth-last-child(-n+3) .mega-menu {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(10px);
    }

    .nav-item:nth-child(-n+3) .mega-menu {
        left: 0;
        right: auto;
        transform: translateX(0) translateY(10px);
    }

    .nav-item:nth-last-child(-n+3):hover .mega-menu {
        transform: translateX(0) translateY(0);
    }

    .nav-item:nth-child(-n+3):hover .mega-menu {
        transform: translateX(0) translateY(0);
    }

    .has-mega:not(:nth-child(-n+3)):not(:nth-last-child(-n+3)):hover .mega-menu {
        transform: translateX(-50%) translateY(0);
    }
}

/* Show mega menu on hover */
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-container {
    display: flex;
    min-height: 420px;
}

/* Left Sidebar */
.mega-sidebar {
    background: #2F3A4E;
    width: 280px;
    padding: 32px 0;
    flex-shrink: 0;
}

.mega-tab {
    padding: 16px 32px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    margin: 2px 0;
}

.mega-tab:hover,
.mega-tab.active {
    color: #FF8C42;
    background: rgba(255, 140, 66, 0.1);
    border-left-color: #FF8C42;
}

.mega-tab.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FF8C42;
}

/* Right Content Area */
.mega-content {
    flex: 1;
    padding: 40px;
    background: white;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 32px;
}

/* Clean text links - no buttons/cards */
.mega-link {
    display: block;
    padding: 12px 24px;
    color: #4B5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-link:hover {
    color: #FF8C42;
    background: rgba(255, 140, 66, 0.05);
    transform: translateX(4px);
}

.mega-link:last-child {
    border-bottom: none;
}

.know-more {
    display: inline-flex;
    align-items: center;
    color: #FF8C42;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.know-more:hover {
    transform: translateX(4px);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.search-icon {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.8);
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF8C42, #FF6A00);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.25);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.35);
}

.phone-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevent flickering */
.has-mega {
    position: relative;
}

.has-mega::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 25px;
    pointer-events: none;
}

.has-mega:hover::before {
    pointer-events: all;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mega-menu {
        width: 90vw;
        max-width: 750px;
        min-width: 500px;
    }
    
    .mega-sidebar {
        width: 250px;
    }
    
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar {
        width: calc(100% - 20px);
        top: 10px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 4px;
    }
    
    .nav-link {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        width: 95vw;
        max-width: none;
        min-width: auto;
        left: 2.5vw !important;
        right: auto !important;
        transform: translateX(0) translateY(10px) !important;
    }
    
    .has-mega:hover .mega-menu {
        transform: translateX(0) translateY(0) !important;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        transform: none;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(47, 58, 78, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 0;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .search-btn {
        display: none;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        justify-content: center;
        width: 100%;
        margin: 0 20px;
    }
    
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        margin: 8px 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        pointer-events: all;
    }
    
    .mega-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .mega-sidebar {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
    }
    
    .mega-content {
        padding: 24px;
    }
    
    .mega-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-wrapper {
        height: 64px;
    }
    
    .nav-logo img {
        height: 32px;
    }
    
    .btn-cta {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }
    
    .phone-icon {
        width: 14px;
        height: 14px;
    }
}

/* Brand color variables */
:root {
    --brand-orange: #FF8C42;
    --brand-pink: #FF3C6A;
    --brand-purple: #6E37FF;
    --brand-blue: #2A2DFF;
    --brand-dark: #0C1E3C;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-300: #E0E0E0;
    --gray-700: #555555;
    --success: #28a745;
    --error: #dc3545;
    --info: #17a2b8;
    --brand-gradient: linear-gradient(45deg, #FF6A00, #FF3C6A, #6E37FF, #2A2DFF);
}


/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px; /* Account for fixed navbar */
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0F1729 0%, #1E293B 25%, #334155 50%, #1E293B 75%, #0F1729 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 66, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    background-size: 100% 100%, 80% 80%, 60% 60%;
    background-position: 0% 0%, 100% 100%, 50% 50%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 140, 66, 0.1);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(120, 119, 198, 0.1);
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(255, 140, 66, 0.1);
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    background: rgba(16, 185, 129, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin: 0;
}

.title-highlight {
    background: linear-gradient(135deg, #FF8C42, #FF6A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
    margin: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF8C42, #FF6A00);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, #FF7A28, #FF5500);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF8C42;
    margin: 0 0 4px 0;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    height: 140px;
}

.card-2 {
    top: 80px;
    right: 0;
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-3 {
    bottom: 0;
    left: 40px;
    width: 180px;
    height: 120px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.card-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #FF8C42, #FF6A00);
    border-radius: 4px;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0%, 100% { width: 70%; }
    50% { width: 85%; }
}

.card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.card-stats span:first-child {
    color: #10B981;
    font-weight: 600;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    width: 16px;
    background: linear-gradient(180deg, #FF8C42, #FF6A00);
    border-radius: 2px;
    animation: chartAnimation 4s ease-in-out infinite;
}

@keyframes chartAnimation {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-5px); }
    60% { transform: translateX(-50%) translateY(-3px); }
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-visual {
        max-width: 400px;
        height: 300px;
    }
    
    .card-1 {
        width: 240px;
        height: 120px;
    }
    
    .card-2 {
        width: 180px;
        height: 70px;
    }
    
    .card-3 {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-left {
        gap: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-visual {
        max-width: 300px;
        height: 250px;
    }
    
    .card-1 {
        width: 200px;
        height: 100px;
        padding: 16px;
    }
    
    .card-2 {
        width: 150px;
        height: 60px;
        padding: 12px;
        font-size: 12px;
    }
    
    .card-3 {
        width: 140px;
        height: 80px;
        padding: 12px;
    }
}







/* About Section - Modern Grid Layout */
.about-section {
    background: #1a1a1a;
    padding: 120px 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* Left Side - Text Area */
.about-text-area {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.02em;
}

.text-orange {
    color: #E67E22;
    font-weight: 500;
}

.about-content-text {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 95%;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

/* Right Side - Data Area */
.about-data-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Video Section */
.video-section {
    width: 100%;
    margin-bottom: 20px;
}

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #E67E22, #D35400);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-player:hover::before {
    background: rgba(0, 0, 0, 0.05);
}

.video-player:hover {
    transform: scale(1.02);
}

.play-control {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.video-player:hover .play-control {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.video-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    position: relative;
    z-index: 2;
}

/* Stats Grid - Modern Design */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(230, 126, 34, 0.3);
}

.stat-icon-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #E67E22;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 8px;
    padding-right: 40px;
}

.stat-detail {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    padding-right: 40px;
}

/* Modern Animations */
.stat-box[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-box[data-animate="fade-up"].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-layout {
        gap: 80px;
    }
    
    .about-main-title {
        font-size: 42px;
    }
    
    .stats-grid-modern {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-data-area {
        gap: 30px;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 24px;
    }
    
    .about-main-title {
        font-size: 36px;
    }
    
    .about-content-text {
        max-width: 100%;
        font-size: 15px;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-box {
        padding: 20px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
        padding-right: 36px;
    }
    
    .stat-detail {
        padding-right: 36px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 20px;
    }
    
    .about-main-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .feature-tags {
        gap: 8px;
    }
    
    .tag {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .play-control {
        width: 50px;
        height: 50px;
    }
    
    .video-label {
        font-size: 14px;
    }
    
    .stat-box {
        padding: 18px;
    }
    
    .stat-icon-modern {
        width: 32px;
        height: 32px;
        top: 16px;
        right: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        padding-right: 32px;
    }
    
    .stat-detail {
        padding-right: 32px;
    }
}




/* CTA Card */
.cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(230, 126, 34, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 126, 34, 0.3);
    transform: translateY(-2px);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.cta-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.cta-button {
    background: #E67E22;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    display: inline-block;
}

.cta-button:hover {
    background: #E67E22;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-card:hover .cta-arrow {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.cta-card:hover .cta-arrow svg path {
    stroke: rgba(230, 126, 34, 0.6);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }
    
    .cta-title {
        font-size: 18px;
    }
    
    .cta-button {
        align-self: center;
    }
    
    .cta-arrow {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .cta-card {
        padding: 20px;
        margin: 24px 0;
    }
    
    .cta-title {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .cta-arrow {
        width: 40px;
        height: 40px;
    }
}




/* Services Section */
.services-section {
    background: #0f0f0f;
    padding: 120px 0;
    margin-top: -20px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation Tabs */
.services-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.service-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.service-tab:hover,
.service-tab.active {
    background: #E67E22;
    color: white;
    transform: translateY(-1px);
}

/* Service Content */
.services-content {
    position: relative;
}

.service-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Service Info */
.service-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.service-name {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.service-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(230, 126, 34, 0.3);
    transform: translateX(4px);
}

.feature-status {
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-name {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    flex: 1;
    text-align: right;
    padding-right: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .service-tab {
        width: 100%;
        text-align: center;
    }
    
    .service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-container {
        padding: 0 24px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .service-name {
        font-size: 24px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .feature-name {
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 20px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .service-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .feature-item {
        padding: 16px;
    }
}






/* Case Studies Section */
.case-studies-section {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 60px 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

/* Header */
.case-studies-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-studies-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-studies-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Vertical Slider Container */
.case-studies-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.case-study-track {
    display: flex;
    flex-direction: column;
    height: 400%; /* 4 slides */
    animation: verticalScroll 16s linear infinite;
}

@keyframes verticalScroll {
    0% { transform: translateY(0); }
    25% { transform: translateY(-25%); }
    50% { transform: translateY(-50%); }
    75% { transform: translateY(-75%); }
    100% { transform: translateY(0); }
}

.case-study-track:hover {
    animation-play-state: paused;
}

.case-study-item {
    height: 25%; /* Each item takes 25% of track height */
    min-height: 70vh;
    opacity: 1;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    height: 500px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
}

/* Case Study Info */
.case-study-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.case-study-name {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.1;
}

.case-study-description {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.case-study-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 12px 0 8px 0;
}

.case-study-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 16px 0 24px 0;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-value {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #E67E22;
    line-height: 1;
}

.metric-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.metric-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.view-case-study {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 16px 28px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: all 0.3s ease;
}

.view-case-study:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #E67E22;
    color: #E67E22;
    transform: translateX(6px);
}

/* Case Study Visual */
.case-study-visual {
    height: 100%;
    display: flex;
    align-items: center;
}

.case-study-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-image:hover img {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study-image:hover .image-overlay {
    opacity: 1;
}

/* Vertical Progress Indicator */
.vertical-progress {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.progress-track {
    width: 3px;
    height: 160px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.progress-fill {
    width: 100%;
    background: linear-gradient(180deg, #E67E22, #F39C12);
    height: 25%;
    animation: progressMove 16s linear infinite;
    transform-origin: top;
}

@keyframes progressMove {
    0% { transform: translateY(0); }
    25% { transform: translateY(300%); }
    50% { transform: translateY(600%); }
    75% { transform: translateY(900%); }
    100% { transform: translateY(0); }
}

.slide-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #E67E22;
    transform: scale(1.2);
    border-color: rgba(230, 126, 34, 0.3);
}

.indicator:hover {
    background: rgba(230, 126, 34, 0.7);
    transform: scale(1.1);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        height: auto;
        padding: 40px;
    }
    
    .case-study-visual {
        order: -1;
    }
    
    .case-study-image {
        height: 320px;
    }
    
    .vertical-progress {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .case-studies-section {
        padding: 60px 0;
    }
    
    .case-studies-container {
        padding: 0 24px;
    }
    
    .case-studies-title {
        font-size: 36px;
    }
    
    .case-studies-subtitle {
        font-size: 16px;
    }
    
    .case-studies-slider {
        height: 60vh;
    }
    
    .case-study-item {
        min-height: 60vh;
    }
    
    .case-study-content {
        padding: 30px;
        gap: 30px;
    }
    
    .case-study-name {
        font-size: 32px;
    }
    
    .case-study-metrics {
        justify-content: center;
        gap: 24px;
    }
    
    .case-study-image {
        height: 280px;
    }
    
    .vertical-progress {
        display: none;
    }
}

@media (max-width: 480px) {
    .case-studies-container {
        padding: 0 20px;
    }
    
    .case-studies-title {
        font-size: 28px;
    }
    
    .case-study-content {
        padding: 24px;
    }
    
    .case-study-name {
        font-size: 26px;
    }
    
    .metric-value {
        font-size: 28px;
    }
    
    .case-study-image {
        height: 240px;
    }
}






/* Testimonials Section */
.testimonials-section {
    background: #0a0a0a;
    padding: 120px 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-family: 'Roboto', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.02em;
    max-width: 1000px;
    margin: 0 auto;
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: horizontalScroll 30s linear infinite;
    width: fit-content;
}

@keyframes horizontalScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

/* Duplicate testimonials for seamless loop */
.testimonials-track::after {
    content: '';
    display: flex;
    gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 320px;
    width: 320px;
    /* background: rgba(255, 255, 255, 0.08); */
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 126, 34, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
    border-radius: 20px;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .video-overlay {
    opacity: 0;
}

.testimonial-card.playing .video-overlay {
    opacity: 0;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(230, 126, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: rgba(230, 126, 34, 1);
    transform: scale(1.1);
}

/* Testimonial Info */
.testimonial-info {
    padding: 24px;
    text-align: center;
}

.client-name {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.client-designation {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* Auto-play video animation */
.testimonial-card.auto-playing .testimonial-video {
    border: 2px solid #E67E22;
}

.testimonial-card.auto-playing .video-overlay {
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 40px;
    }
    
    .testimonial-card {
        min-width: 280px;
        width: 280px;
    }
    
    .video-container {
        height: 350px;
    }
    
    .testimonials-track {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-container {
        padding: 0 24px;
    }
    
    .testimonials-title {
        font-size: 32px;
        line-height: 1.4;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonial-card {
        min-width: 260px;
        width: 260px;
    }
    
    .video-container {
        height: 320px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-info {
        padding: 20px;
    }
    
    .client-name {
        font-size: 18px;
    }
    
    .client-designation {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-title {
        font-size: 26px;
    }
    
    .testimonial-card {
        min-width: 240px;
        width: 240px;
    }
    
    .video-container {
        height: 300px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Ensure no conflicts with existing styles */
.testimonials-section * {
    box-sizing: border-box;
}

/* Hide scrollbar for horizontal scroll on mobile */
.testimonials-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}



/* CTA Section - Scoped Styles */
.cta-section {
    background: #000;
    padding: 80px 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.cta-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-section-content {
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 50%, #A68B5B 100%);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-section-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Text */
.cta-section-text {
    position: relative;
    z-index: 2;
}

.cta-section-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.cta-section-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
    max-width: 90%;
}

.cta-section-button {
    background: white;
    color: #8B6F47;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-section-button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* CTA Visual */
.cta-section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-section-ai-chip {
    position: relative;
    width: 200px;
    height: 120px;
    perspective: 1000px;
    animation: cta-section-float 6s ease-in-out infinite;
}

@keyframes cta-section-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.cta-section-chip-base {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #E6D7C3, #C4B299);
    border-radius: 12px;
    position: relative;
    transform: rotateX(10deg) rotateY(-5deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section-chip-text {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #8B6F47;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 3;
    position: relative;
}

.cta-section-chip-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.4) 0%, transparent 70%);
    border-radius: 20px;
    animation: cta-section-pulse 3s ease-in-out infinite;
}

@keyframes cta-section-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Circuit Lines */
.cta-section-chip-circuits {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 12px;
}

.cta-section-circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, #B8956A 50%, transparent 100%);
    animation: cta-section-circuitFlow 4s linear infinite;
}

.cta-section-circuit-1 {
    top: 20%;
    left: -100%;
    width: 300%;
    height: 1px;
    animation-delay: 0s;
}

.cta-section-circuit-2 {
    top: 40%;
    right: -100%;
    width: 300%;
    height: 1px;
    animation-delay: 0.5s;
    animation-direction: reverse;
}

.cta-section-circuit-3 {
    top: 60%;
    left: -100%;
    width: 300%;
    height: 1px;
    animation-delay: 1s;
}

.cta-section-circuit-4 {
    top: 80%;
    right: -100%;
    width: 300%;
    height: 1px;
    animation-delay: 1.5s;
    animation-direction: reverse;
}

.cta-section-circuit-5 {
    left: 20%;
    top: -100%;
    width: 1px;
    height: 300%;
    animation-delay: 2s;
    background: linear-gradient(180deg, transparent 0%, #B8956A 50%, transparent 100%);
}

.cta-section-circuit-6 {
    left: 40%;
    bottom: -100%;
    width: 1px;
    height: 300%;
    animation-delay: 2.5s;
    animation-direction: reverse;
    background: linear-gradient(180deg, transparent 0%, #B8956A 50%, transparent 100%);
}

.cta-section-circuit-7 {
    left: 60%;
    top: -100%;
    width: 1px;
    height: 300%;
    animation-delay: 3s;
    background: linear-gradient(180deg, transparent 0%, #B8956A 50%, transparent 100%);
}

.cta-section-circuit-8 {
    left: 80%;
    bottom: -100%;
    width: 1px;
    height: 300%;
    animation-delay: 3.5s;
    animation-direction: reverse;
    background: linear-gradient(180deg, transparent 0%, #B8956A 50%, transparent 100%);
}

@keyframes cta-section-circuitFlow {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Chip Connections */
.cta-section-chip-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-section-connection {
    position: absolute;
    width: 3px;
    height: 15px;
    background: linear-gradient(180deg, #8B6F47, #A68B5B);
    border-radius: 1px;
}

.cta-section-connection-1 { top: -8px; left: 25%; }
.cta-section-connection-2 { top: -8px; left: 40%; }
.cta-section-connection-3 { top: -8px; left: 60%; }
.cta-section-connection-4 { top: -8px; left: 75%; }
.cta-section-connection-5 { bottom: -8px; left: 25%; }
.cta-section-connection-6 { bottom: -8px; left: 40%; }
.cta-section-connection-7 { bottom: -8px; left: 60%; }
.cta-section-connection-8 { bottom: -8px; left: 75%; }

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 50px;
    }
    
    .cta-section-visual {
        order: -1;
    }
    
    .cta-section-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section-container {
        padding: 0 24px;
    }
    
    .cta-section-content {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .cta-section-title {
        font-size: 24px;
    }
    
    .cta-section-description {
        font-size: 15px;
    }
    
    .cta-section-ai-chip {
        width: 160px;
        height: 100px;
    }
    
    .cta-section-chip-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cta-section-container {
        padding: 0 20px;
    }
    
    .cta-section-content {
        padding: 30px 24px;
    }
    
    .cta-section-title {
        font-size: 22px;
    }
    
    .cta-section-description {
        font-size: 14px;
    }
    
    .cta-section-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .cta-section-ai-chip {
        width: 140px;
        height: 90px;
    }
    
    .cta-section-chip-text {
        font-size: 18px;
    }
}




/* Naraway Contact Section Styles - Scoped to prevent conflicts */
.naraway-contact-section {
    background: #0a0a0a;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.naraway-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 140, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.naraway-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.naraway-contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.naraway-contact-tag {
    display: inline-block;
    background: rgba(255, 140, 66, 0.1);
    color: #FF8C42;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

.naraway-contact-main-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.naraway-contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Grid */
.naraway-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

/* Contact Info Styles */
.naraway-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.naraway-contact-info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.naraway-contact-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateY(-4px);
}

.naraway-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C42;
    flex-shrink: 0;
}

.naraway-contact-details h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.naraway-address {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.naraway-timing,
.naraway-response-time,
.naraway-availability {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.naraway-email-link,
.naraway-phone-link {
    color: #FF8C42;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.naraway-email-link:hover,
.naraway-phone-link:hover {
    color: #FF7A28;
}

/* Social Section */
.naraway-social-section {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
}

.naraway-social-section h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.naraway-social-links {
    display: flex;
    gap: 16px;
}

.naraway-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C42;
    text-decoration: none;
    transition: all 0.3s ease;
}

.naraway-social-link:hover {
    background: #FF8C42;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Form Styles */
.naraway-contact-form-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.naraway-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.naraway-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.naraway-form-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.naraway-form-input,
.naraway-form-select,
.naraway-form-textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.naraway-form-input:focus,
.naraway-form-select:focus,
.naraway-form-textarea:focus {
    border-color: #FF8C42;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.naraway-form-input::placeholder,
.naraway-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.naraway-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 50px;
    appearance: none;
}

.naraway-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Error Messages */
.naraway-error-message {
    color: #FF4444;
    font-size: 14px;
    margin: 0;
    display: none;
}

.naraway-form-input.error,
.naraway-form-select.error,
.naraway-form-textarea.error {
    border-color: #FF4444;
    background: rgba(255, 68, 68, 0.1);
}

.naraway-form-input.error + .naraway-error-message,
.naraway-form-select.error + .naraway-error-message,
.naraway-form-textarea.error + .naraway-error-message {
    display: block;
}

/* Submit Button */
.naraway-submit-btn {
    background: linear-gradient(135deg, #FF8C42, #FF6A00);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
}

.naraway-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #FF7A28, #FF5500);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

.naraway-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.naraway-spinner {
    animation: narawaySpinAnimation 1s linear infinite;
}

@keyframes narawaySpinAnimation {
    to { transform: rotate(360deg); }
}

/* Success Message */
.naraway-success-message {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    color: #10B981;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Quick Contact */
.naraway-quick-contact {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.naraway-quick-item {
    flex: 1;
    max-width: 200px;
}

.naraway-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.naraway-quick-link:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateY(-4px);
}

.naraway-quick-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C42;
}

.naraway-quick-link:hover .naraway-quick-icon {
    background: #FF8C42;
    color: #ffffff;
}

.naraway-quick-link span {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .naraway-contact-container {
        padding: 0 32px;
    }
    
    .naraway-contact-grid {
        gap: 60px;
    }
    
    .naraway-contact-main-title {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .naraway-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .naraway-contact-form-wrapper {
        order: -1;
    }
    
    .naraway-contact-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .naraway-contact-section {
        padding: 80px 0;
    }
    
    .naraway-contact-container {
        padding: 0 24px;
    }
    
    .naraway-contact-header {
        margin-bottom: 60px;
    }
    
    .naraway-contact-main-title {
        font-size: 36px;
    }
    
    .naraway-contact-subtitle {
        font-size: 16px;
    }
    
    .naraway-contact-info-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .naraway-contact-form-wrapper {
        padding: 30px 24px;
    }
    
    .naraway-quick-contact {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
    }
    
    .naraway-quick-item {
        max-width: none;
    }
    
    .naraway-quick-link {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 16px;
    }
    
    .naraway-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .naraway-contact-container {
        padding: 0 20px;
    }
    
    .naraway-contact-main-title {
        font-size: 28px;
    }
    
    .naraway-contact-info-card {
        padding: 20px;
    }
    
    .naraway-contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .naraway-form-input,
    .naraway-form-select,
    .naraway-form-textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .naraway-submit-btn {
        padding: 16px 24px;
        font-size: 15px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .naraway-contact-info-card {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .naraway-form-input,
    .naraway-form-select,
    .naraway-form-textarea {
        border-color: rgba(255, 255, 255, 0.4);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .naraway-contact-info-card,
    .naraway-quick-link,
    .naraway-submit-btn,
    .naraway-social-link {
        transition: none;
    }
    
    .naraway-spinner {
        animation: none;
    }
}





/* Naraway Footer Styles */
.naraway-footer {
    background: #000;
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.naraway-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /* background: linear-gradient(90deg, #ff6b35, #f7931e, #2196F3, #ff6b35); */
    background-size: 200% 100%;
    animation: narawayGradientShift 3s ease-in-out infinite;
}

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

.naraway-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.naraway-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Section */
.naraway-footer-brand {
    position: relative;
}

.naraway-footer-logo {
    margin-bottom: 20px;
}

.naraway-footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.naraway-footer-logo img:hover {
    transform: scale(1.05);
}

.naraway-brand-description {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.naraway-social-links {
    display: flex;
    gap: 15px;
}

.naraway-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.naraway-social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.naraway-social-links a:nth-child(even):hover {
    background: linear-gradient(135deg, #ff6b35, #e91e63);
}

/* Footer Links Sections */
.naraway-footer-links h3,
.naraway-footer-services h3,
.naraway-footer-newsletter h3 {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.naraway-footer-links h3::after,
.naraway-footer-services h3::after,
.naraway-footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #2196F3);
}

.naraway-footer-links ul,
.naraway-footer-services ul {
    list-style: none;
}

.naraway-footer-links ul li,
.naraway-footer-services ul li {
    margin-bottom: 12px;
}

.naraway-footer-links ul li a,
.naraway-footer-services ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.naraway-footer-links ul li a::before,
.naraway-footer-services ul li a::before {
    content: '▸';
    color: #ff6b35;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.naraway-footer-links ul li a:hover,
.naraway-footer-services ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.naraway-footer-links ul li a:hover::before,
.naraway-footer-services ul li a:hover::before {
    color: #2196F3;
    transform: translateX(3px);
}

/* Newsletter Section */
.naraway-footer-newsletter p {
    color: #b8b8b8;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.naraway-newsletter-form {
    margin-bottom: 25px;
}

.naraway-input-group {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.naraway-input-group input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(10px);
}

.naraway-input-group input::placeholder {
    color: #b8b8b8;
}

.naraway-input-group button {
    padding: 12px 20px;
    border: none;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.naraway-input-group button:hover {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    transform: scale(1.05);
}

.naraway-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.naraway-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.naraway-contact-item i {
    color: #ff6b35;
    width: 18px;
    text-align: center;
}

.naraway-contact-item a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.naraway-contact-item a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.naraway-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.naraway-footer-bottom-left p {
    color: #b8b8b8;
    font-size: 14px;
    margin: 0;
}

.naraway-location {
    font-size: 12px !important;
    color: #888 !important;
    margin-top: 5px !important;
}

.naraway-footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.naraway-footer-bottom-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.naraway-footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #2196F3);
    transition: width 0.3s ease;
}

.naraway-footer-bottom-links a:hover {
    color: #ffffff;
}

.naraway-footer-bottom-links a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.naraway-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.naraway-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.naraway-back-to-top:hover {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .naraway-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .naraway-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .naraway-footer-bottom-links {
        justify-content: center;
    }
    
    .naraway-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .naraway-social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .naraway-footer {
        padding: 40px 0 0;
    }
    
    .naraway-footer-container {
        padding: 0 15px;
    }
    
    .naraway-footer-content {
        gap: 25px;
    }
    
    .naraway-input-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .naraway-input-group input,
    .naraway-input-group button {
        border-radius: 0;
    }
    
    .naraway-input-group input {
        border-radius: 10px 10px 0 0;
    }
    
    .naraway-input-group button {
        border-radius: 0 0 10px 10px;
    }
}

/* Naraway Startup Solutions Styles */
.naraway-startup-solutions {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.naraway-startup-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 25% 25%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.naraway-solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.naraway-solutions-hero {
    text-align: center;
    margin-bottom: 80px;
}

.naraway-solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    color: #FF8C42;
    font-size: 14px;
    font-weight: 600;
}

.naraway-badge-icon {
    font-size: 16px;
}

.naraway-solutions-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.naraway-gradient-text {
    background: linear-gradient(135deg, #FF8C42, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.naraway-solutions-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Solutions Grid */
.naraway-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.naraway-solution-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.naraway-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8C42, #3B82F6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.naraway-solution-card:hover::before {
    transform: scaleX(1);
}

.naraway-solution-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.naraway-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.naraway-card-number {
    font-size: 24px;
    font-weight: 700;
}

.naraway-card-badge {
    background: rgba(255, 140, 66, 0.15);
    color: #FF8C42;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.naraway-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.naraway-card-subtitle {
    color: #FF8C42;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.naraway-card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.naraway-card-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.naraway-keyword {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

.naraway-card-footer {
    margin-top: auto;
}

.naraway-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF8C42;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.naraway-card-link:hover {
    color: #FF7A28;
    transform: translateX(4px);
}

/* CTA Section */
.naraway-solutions-cta {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.naraway-solutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05), rgba(59, 130, 246, 0.05));
    pointer-events: none;
}

.naraway-cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.naraway-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.naraway-cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

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

.naraway-cta-primary {
    background: linear-gradient(135deg, #FF8C42, #FF6A00);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.3);
}

.naraway-cta-primary:hover {
    background: linear-gradient(135deg, #FF7A28, #FF5500);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 140, 66, 0.4);
}

.naraway-cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.naraway-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.naraway-cta-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.naraway-stat-item {
    text-align: center;
}

.naraway-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #FF8C42;
    margin-bottom: 4px;
}

.naraway-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .naraway-solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 24px;
    }
    
    .naraway-cta-stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .naraway-startup-solutions {
        padding: 80px 0;
    }
    
    .naraway-solutions-container {
        padding: 0 24px;
    }
    
    .naraway-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .naraway-solution-card {
        padding: 24px;
    }
    
    .naraway-solutions-cta {
        padding: 40px 24px;
    }
    
    .naraway-cta-title {
        font-size: 24px;
    }
    
    .naraway-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .naraway-cta-primary,
    .naraway-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .naraway-cta-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .naraway-solutions-container {
        padding: 0 20px;
    }
    
    .naraway-solution-card {
        padding: 20px;
    }
    
    .naraway-card-keywords {
        gap: 6px;
    }
    
    .naraway-keyword {
        font-size: 10px;
        padding: 3px 6px;
    }
}








