/* Nebula Polystream PVT LTD - Clean Professional Theme */
:root {
    /* Logo-Based Clean Colors */
    --nebula-primary: #1e3a8a;     /* Primary blue from logo */
    --nebula-secondary: #3b82f6;   /* Secondary blue from logo */
    --nebula-accent: #1e40af;      /* Accent blue - clean and professional */
    --nebula-light: #f8fafc;       /* Light background */
    --nebula-dark: #0f172a;        /* Dark text */
    
    /* Professional Color Scheme */
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #1e40af;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    
    /* Clean Gradients - Blue Theme */
    --nebula-gradient-main: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --nebula-gradient-soft: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing - Reduced */
    --section-padding: 80px 0;
    --container-max: 1200px;
}

/* Clean Body & Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: white;
}

.container {
    max-width: var(--container-max);
}

/* Clean Image Carousel - No Overlays */
.clean-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.clean-carousel-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* No filters or overlays - pure image */
    display: block;
    position: relative;
}

/* Override body padding for carousel page */
body.carousel-page {
    padding-top: 0 !important;
}

.carousel-page .clean-carousel {
    margin-top: 0;
    position: relative;
    z-index: 1;
    width: 100vw;
    min-width: 100%;
}

.carousel-page .navbar {
    position: absolute;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(20px);
    width: 100%;
}

.carousel-page .top-header {
    position: absolute;
    z-index: 1001;
    background: rgba(15, 23, 42, 0.95) !important;
    width: 100%;
}

/* Premium Carousel Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(249, 115, 22, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.4);
    opacity: 0.9;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(249, 115, 22, 0.9);
    border-color: rgba(249, 115, 22, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(0);
    transform: scale(1.2);
}

/* Unique Carousel Transition Effects */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    transform: scale(0.95);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure images maintain full width during transitions */
.clean-carousel-img {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.carousel-item.active .clean-carousel-img {
    transform: scale(1);
    position: relative;
}

.carousel-item:not(.active) .clean-carousel-img {
    transform: scale(1.1);
    position: absolute;
}

/* Fix carousel inner positioning */
.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Ensure no gaps during transition */
.carousel-fade .carousel-item.carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item.carousel-item-prev.carousel-item-end {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
}

.carousel-fade .carousel-item.carousel-item-next.carousel-item-start .clean-carousel-img,
.carousel-fade .carousel-item.carousel-item-prev.carousel-item-end .clean-carousel-img {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/* Carousel Indicators (Optional Premium Style) */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(249, 115, 22, 0.6);
    transition: all 0.3s ease;
    margin: 0 6px;
}

.carousel-indicators .active {
    background: rgba(249, 115, 22, 0.9);
    border-color: rgba(249, 115, 22, 1);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* Responsive Carousel Controls */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
        background-size: 20px 20px;
    }
}

/* Clean Innovation Section */
.innovation-section {
    background: var(--nebula-light);
    padding: 60px 0;
}

.innovation-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.innovation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.innovation-icon {
    width: 70px;
    height: 70px;
    background: var(--nebula-gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    background: var(--nebula-gradient-main);
    transform: scale(1.1);
}

.innovation-icon i {
    font-size: 2rem;
    color: var(--nebula-primary);
    transition: color 0.3s ease;
}

.innovation-card:hover .innovation-icon i {
    color: white;
}

.innovation-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
}

.innovation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Simple About Section */
.about-section-simple {
    background: #f8fafc;
    padding: 80px 0;
}

.about-content .section-header {
    margin-bottom: 2rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--nebula-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Simple Stats Row */
.stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0;
}

/* Simple Buttons */
.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-buttons .btn {
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-buttons .btn-primary {
    background: var(--nebula-primary);
    border: none;
    color: white;
}

.about-buttons .btn-primary:hover {
    background: var(--nebula-accent);
    transform: translateY(-2px);
}

.about-buttons .btn-outline-primary {
    border: 2px solid var(--nebula-primary);
    color: var(--nebula-primary);
    background: transparent;
}

.about-buttons .btn-outline-primary:hover {
    background: var(--nebula-primary);
    color: white;
    transform: translateY(-2px);
}

/* Simple Image */
.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .about-section-simple {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .about-buttons .btn {
        flex: 1;
        max-width: 200px;
    }
}

/* Enhanced Why Choose Section */
.why-choose-section-new {
    background: white;
    padding: 100px 0;
}

.why-choose-content {
    margin-bottom: 2rem;
}

.content-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--nebula-primary);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--nebula-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 0.8rem;
}

.highlight-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Key Benefits List */
.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.benefit-item i {
    color: var(--nebula-secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Visual Section */
.why-choose-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.achievement-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    text-align: center;
    min-width: 100px;
}

.badge-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.badge-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    margin-top: 4rem;
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--nebula-accent);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--nebula-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover h5 {
    color: var(--nebula-accent);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-section-new {
        padding: 60px 0;
    }
    
    .content-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .highlight-text h4 {
        font-size: 1.2rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .achievement-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .features-grid {
        margin-top: 3rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
}
@media (max-width: 1200px) {
    .float-element.element-1 {
        right: -8%;
    }
    
    .float-element.element-2 {
        left: -12%;
    }
    
    .float-element.element-3 {
        right: -5%;
    }
}

@media (max-width: 992px) {
    .about-section-new {
        padding: 80px 0;
    }
    
    .about-visual-new {
        height: 450px;
        margin-top: 2rem;
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-item {
        flex-direction: row;
        text-align: left;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .float-element {
        display: none; /* Hide floating elements on tablet */
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 60px 0;
    }
    
    .about-content-new .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .about-content-new .section-header .section-description {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .about-story .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .story-highlights {
        margin-bottom: 2rem;
    }
    
    .highlight-row {
        gap: 0.8rem;
    }
    
    .highlight-item {
        padding: 1.2rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
    }
    
    .highlight-number {
        font-size: 1.5rem;
    }
    
    .highlight-text {
        font-size: 0.85rem;
    }
    
    .expertise-areas {
        text-align: center;
    }
    
    .expertise-areas h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .expertise-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .expertise-content h5 {
        font-size: 0.9rem;
    }
    
    .expertise-content p {
        font-size: 0.8rem;
    }
    
    .about-visual-new {
        height: 350px;
        margin-top: 1.5rem;
    }
    
    .main-image-container {
        border-radius: 20px;
    }
    
    .about-actions {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .about-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-section-new {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-story .lead {
        font-size: 1rem;
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .highlight-number {
        font-size: 1.3rem;
    }
    
    .expertise-item {
        padding: 1rem;
    }
    
    .expertise-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-visual-new {
        height: 300px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .decoration-circle,
    .decoration-line {
        display: none; /* Hide decorations on mobile */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
    
    .expertise-item {
        padding: 0.8rem;
    }
    
    .about-visual-new {
        height: 250px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--nebula-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--nebula-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Button Styles */
.btn-primary {
    background: var(--nebula-gradient-main);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--nebula-primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .float-element {
        position: relative;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .float-element.element-1,
    .float-element.element-2,
    .float-element.element-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

/* Modern Body & Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--nebula-light);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
}

/* Revolutionary Header Design */
.top-header {
    background: var(--nebula-gradient-dark) !important;
    border-bottom: 2px solid var(--nebula-accent);
    position: relative;
    overflow: hidden;
}

.top-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    animation: nebula-sweep 3s infinite;
}

@keyframes nebula-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Futuristic Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3);
    padding: 1rem 0;
}

.navbar-brand {
    position: relative;
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--nebula-gradient-main);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-brand:hover::before {
    opacity: 0.2;
}

.navbar .nav-link {
    color: #e2e8f0 !important;
    font-weight: 500;
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--nebula-accent) !important;
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--nebula-glow);
}

/* Dropdown Revolution */
.navbar .dropdown-menu {
    background: var(--nebula-dark);
    border: 1px solid var(--nebula-accent);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.4);
    padding: 1.5rem 0;
    margin-top: 1rem;
    min-width: 320px;
}

.navbar .dropdown-item {
    color: #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 15px;
    margin: 0.3rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--nebula-gradient-main);
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar .dropdown-item:hover {
    color: white;
    transform: translateX(10px);
}

.navbar .dropdown-item:hover::before {
    left: 0;
}

/* Mobile Menu Transformation */
.offcanvas {
    background: var(--nebula-gradient-dark);
    border: none;
    width: 100% !important;
}

.offcanvas .nav-link {
    color: #e2e8f0 !important;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    margin: 0.5rem 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.offcanvas .nav-link:hover {
    background: rgba(249, 115, 22, 0.2);
    border-left-color: var(--nebula-accent);
    transform: translateX(10px);
}

/* Clean Innovation Section */

/* Stats Section Revolution */
.stats-section {
    background: var(--nebula-gradient-main);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation: nebula-rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

@keyframes nebula-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-icon {
    font-size: 3rem;
    color: var(--nebula-accent);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* Section Headers Revolution */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    background: var(--nebula-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--nebula-gradient-main);
    border-radius: 2px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--nebula-primary);
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Simple Industries Section */
.industries-section {
    background: white;
    padding: 80px 0;
}

.industry-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-accent);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.industry-icon i {
    font-size: 1.8rem;
    color: var(--nebula-primary);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon i {
    color: white;
}

.industry-content {
    margin-bottom: 1.5rem;
}

.industry-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-title {
    color: var(--nebula-accent);
}

.industry-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Industry Overlay - Simple Button */
.industry-overlay {
    margin-top: 1rem;
}

.industry-overlay .btn {
    background: var(--nebula-primary);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.industry-overlay .btn:hover {
    background: var(--nebula-accent);
    transform: translateY(-2px);
    color: white;
}

/* Responsive Industries */
@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industry-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
    }
    
    .industry-icon i {
        font-size: 1.5rem;
    }
    
    .industry-title {
        font-size: 1.2rem;
    }
}

/* Button Revolution */
.btn-primary {
    background: var(--nebula-gradient-main);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Clean Professional Footer */
.premium-footer {
    background: var(--nebula-primary);
    color: white;
    position: relative;
}

.footer-content {
    padding: 60px 0 40px;
    position: relative;
}

.footer-section {
    height: 100%;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--nebula-secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: block;
}

.footer-links a:hover {
    color: var(--nebula-secondary);
    transform: translateX(5px);
}

/* Social Links */
.footer-social {
    margin-top: 2rem;
}

.social-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--nebula-secondary);
    color: white;
    transform: translateY(-2px);
    border-color: var(--nebula-secondary);
}

.social-link i {
    font-size: 1.1rem;
}

/* Contact Info */
.footer-contact {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--nebula-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1rem;
}

.contact-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: var(--nebula-secondary);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--nebula-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        padding: 50px 0 30px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .contact-item {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .innovation-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-item {
        margin-bottom: 2rem;
    }
    
    .industry-card,
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Loading Animation */
.nebula-loading {
    position: relative;
    overflow: hidden;
}

.nebula-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation: nebula-shimmer 2s infinite;
}

@keyframes nebula-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Revolutionary Hero Section Styles */
.hero-nebula {
    background: var(--nebula-gradient-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: var(--nebula-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--nebula-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-accent);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.float-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: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.float-card.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-card.card-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.float-card.card-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

.float-card i {
    font-size: 2rem;
    color: var(--nebula-accent);
    margin-bottom: 1rem;
}

.float-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

/* Innovation Section */
.innovation-section {
    background: var(--nebula-light);
    padding: 100px 0;
}

.innovation-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--nebula-gradient-main);
    transition: left 0.5s ease;
    z-index: -1;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    color: white;
}

.innovation-card:hover::before {
    left: 0;
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: var(--nebula-gradient-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.innovation-icon i {
    font-size: 2.5rem;
    color: var(--nebula-primary);
    transition: color 0.3s ease;
}

.innovation-card:hover .innovation-icon i {
    color: white;
}

.innovation-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.innovation-card:hover h4 {
    color: white;
}

.innovation-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.innovation-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* New About Section */
.about-section-new {
    background: white;
    padding: 120px 0;
}

.about-content-new .section-header {
    margin-bottom: 3rem;
}

.about-story .lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.story-highlights {
    margin-bottom: 3rem;
}

.highlight-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: var(--nebula-gradient-soft);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: var(--text-secondary);
    font-weight: 600;
}

.expertise-areas h4 {
    color: var(--nebula-primary);
    font-weight: 700;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--nebula-gradient-soft);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.1);
}

.expertise-item i {
    font-size: 1.5rem;
    color: var(--nebula-accent);
}

.expertise-item span {
    font-weight: 600;
    color: var(--nebula-primary);
}

.about-visual-new {
    position: relative;
    height: 600px;
}

.main-image-container {
    position: relative;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nebula-gradient-main);
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-element {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
    animation: float 6s ease-in-out infinite;
}

.float-element.element-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    bottom: 40%;
    left: -15%;
    animation-delay: 2s;
}

.float-element.element-3 {
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

.element-content {
    text-align: center;
}

.element-content i {
    font-size: 2rem;
    color: var(--nebula-accent);
    margin-bottom: 1rem;
}

.element-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 0.5rem;
}

.element-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .innovation-card {
        padding: 2rem 1.5rem;
    }
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .float-element {
        position: relative;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .float-element.element-1,
    .float-element.element-2,
    .float-element.element-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

/* Revolutionary Services Section */
.services-section-new {
    background: var(--nebula-light);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.services-section-new .container {
    position: relative;
    z-index: 2;
}

.service-card-new {
    background: white;
    border-radius: 30px;
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.08);
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--nebula-gradient-main);
    transition: left 0.6s ease;
    z-index: -1;
}

.service-card-new:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
    color: white;
}

.service-card-new:hover::before {
    left: 0;
}

.service-header {
    padding: 2.5rem 2.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-new {
    width: 90px;
    height: 90px;
    background: var(--nebula-gradient-soft);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.service-card-new:hover .service-icon-new {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.service-card-new:hover .service-icon-new::before {
    left: 0;
}

.service-icon-new i {
    font-size: 3rem;
    color: var(--nebula-primary);
    transition: all 0.4s ease;
}

.service-card-new:hover .service-icon-new i {
    color: white;
    transform: scale(1.1);
}

.service-badge {
    background: var(--nebula-gradient-main);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.service-content-new {
    padding: 0 2.5rem 1.5rem;
}

.service-title-new {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
    line-height: 1.3;
}

.service-card-new:hover .service-title-new {
    color: white;
}

.service-description-new {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.service-card-new:hover .service-description-new {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}

.service-card-new:hover .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--nebula-accent);
    margin-right: 0.8rem;
    font-size: 1rem;
    transition: color 0.4s ease;
}

.service-card-new:hover .service-features i {
    color: rgba(255, 255, 255, 0.9);
}

.service-action {
    padding: 0 2.5rem 2.5rem;
}

.service-action .btn {
    width: 100%;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.service-card-new:hover .service-action .btn {
    background: white;
    color: var(--nebula-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Services CTA */
.services-cta {
    background: white;
    border-radius: 30px;
    padding: 4rem 3rem;
    margin-top: 5rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nebula-gradient-soft);
    opacity: 0.5;
    z-index: -1;
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-card-new {
        margin-bottom: 2rem;
    }
    
    .service-header {
        padding: 2rem 2rem 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .service-content-new {
        padding: 0 2rem 1.5rem;
        text-align: center;
    }
    
    .service-action {
        padding: 0 2rem 2rem;
    }
    
    .services-cta {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }
    
    .services-cta h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation Enhancements */
.service-card-new {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card-new:nth-child(1) { animation-delay: 0.1s; }
.service-card-new:nth-child(2) { animation-delay: 0.2s; }
.service-card-new:nth-child(3) { animation-delay: 0.3s; }
.service-card-new:nth-child(4) { animation-delay: 0.4s; }
.service-card-new:nth-child(5) { animation-delay: 0.5s; }
.service-card-new:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Glow Effect */
.service-card-new:hover {
    box-shadow: 
        0 30px 80px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(249, 115, 22, 0.2),
        0 0 50px rgba(249, 115, 22, 0.1);
}

/* Service Badge Variations */
.service-badge:nth-of-type(1) { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.service-badge:nth-of-type(2) { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.service-badge:nth-of-type(3) { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.service-badge:nth-of-type(4) { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.service-badge:nth-of-type(5) { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.service-badge:nth-of-type(6) { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
/* Clean CTA Section */
.cta-section-new {
    background: var(--nebula-primary);
    padding: 80px 0;
    position: relative;
}

.cta-content-new {
    color: white;
}

.cta-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--nebula-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-title-new {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-description-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-feature i {
    color: var(--nebula-secondary);
    font-size: 1.1rem;
}

.cta-actions-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: var(--nebula-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
    background: var(--nebula-accent);
}

.action-icon i {
    font-size: 1.5rem;
    color: white;
}

.action-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.action-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.action-card .btn {
    width: 100%;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-action .btn-primary {
    background: white;
    color: var(--nebula-primary);
    border: none;
}

.primary-action .btn-primary:hover {
    background: var(--nebula-secondary);
    color: white;
    transform: translateY(-2px);
}

.secondary-action .btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.secondary-action .btn-outline-primary:hover {
    background: white;
    color: var(--nebula-primary);
    transform: translateY(-2px);
}

/* Responsive CTA Design */
@media (max-width: 768px) {
    .cta-section-new {
        padding: 60px 0;
    }
    
    .cta-title-new {
        font-size: 2.2rem;
    }
    
    .cta-description-new {
        font-size: 1.1rem;
    }
    
    .cta-actions-new {
        margin-top: 3rem;
    }
    
    .action-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .cta-features {
        margin-bottom: 2rem;
    }
}
/* Simple Services Section */
.services-section-clean {
    background: #f8fafc;
    padding: 80px 0;
}
/* Service Card Clean Styles */
.service-card-clean {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    cursor: pointer;
}

.service-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-accent);
}

.service-icon-clean {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.service-icon-clean i {
    font-size: 1.8rem;
    color: var(--nebula-primary);
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-icon-clean i {
    color: white;
}

.service-content-clean {
    margin-bottom: 1.5rem;
}

.service-title-clean {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card-clean:hover .service-title-clean {
    color: var(--nebula-accent);
}

.service-description-clean {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features-clean {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features-clean li {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features-clean i {
    color: var(--nebula-secondary);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-action-clean .btn {
    width: 100%;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--nebula-primary);
    border: none;
    color: white;
}

.service-action-clean .btn:hover {
    background: var(--nebula-accent);
    transform: translateY(-2px);
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-section-clean {
        padding: 60px 0;
    }
    
    .service-card-clean {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .service-icon-clean {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-clean i {
        font-size: 1.5rem;
    }
    
    .service-title-clean {
        font-size: 1.2rem;
    }
}
        margin-top: 2.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .cta-features {
        margin-bottom: 2rem;
    }
}

/* Clean About Us Page Styles */

/* Hero Section */
section.about-hero-clean {
    background-color: #1e3a8a !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    padding: 120px 0 80px !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

section.about-hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-content-clean {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--nebula-secondary);
}

.hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle-clean {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Company Overview */
.company-overview-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title-clean {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 2rem;
}

.overview-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item-clean {
    text-align: center;
}

.stat-number-clean {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nebula-secondary);
    margin-bottom: 0.5rem;
}

.stat-label-clean {
    color: var(--text-secondary);
    font-weight: 600;
    margin: 0;
}

.overview-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

/* Mission Vision Values */
.mvv-section-clean {
    padding: 80px 0;
    background: white;
}

.section-header-clean {
    margin-bottom: 4rem;
}

.section-description-clean {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.mvv-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.mvv-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.mvv-icon-clean {
    width: 80px;
    height: 80px;
    background: var(--nebula-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.mvv-card-clean:hover .mvv-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.1);
}

.mvv-icon-clean i {
    font-size: 2rem;
    color: white;
}

.mvv-title-clean {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
}

.mvv-text-clean {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.values-list-clean {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item-clean {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.value-item-clean i {
    color: var(--nebula-secondary);
    font-size: 1.1rem;
}

/* Core Services */
.core-services-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.service-card-about {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.service-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.service-icon-about {
    width: 70px;
    height: 70px;
    background: var(--nebula-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-about:hover .service-icon-about {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.service-icon-about i {
    font-size: 2rem;
    color: white;
}

.service-title-about {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1.5rem;
}

.service-list-about {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-about li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-list-about li::before {
    content: '•';
    color: var(--nebula-secondary);
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Industries */
.industries-clean {
    padding: 80px 0;
    background: white;
}

.industry-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.industry-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.industry-icon-clean {
    width: 60px;
    height: 60px;
    background: var(--nebula-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.industry-card-clean:hover .industry-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.1);
}

.industry-icon-clean i {
    font-size: 1.5rem;
    color: white;
}

.industry-title-clean {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
}

.industry-text-clean {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose-clean {
    padding: 80px 0;
    background: #f8fafc;
}

.advantage-card-clean {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
}

.advantage-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--nebula-secondary);
}

.advantage-icon-clean {
    width: 60px;
    height: 60px;
    background: var(--nebula-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card-clean:hover .advantage-icon-clean {
    background: var(--nebula-accent);
    transform: scale(1.05);
}

.advantage-icon-clean i {
    font-size: 1.5rem;
    color: white;
}

.advantage-title-clean {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--nebula-primary);
    margin-bottom: 1rem;
}

.advantage-text-clean {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-clean {
        padding: 100px 0 60px;
    }
    
    .hero-title-clean {
        font-size: 2.2rem;
    }
    
    .section-title-clean {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .company-overview-clean,
    .mvv-section-clean,
    .core-services-clean,
    .industries-clean,
    .why-choose-clean {
        padding: 60px 0;
    }
    
    .mvv-card-clean,
    .service-card-about,
    .industry-card-clean,
    .advantage-card-clean {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title-clean {
        font-size: 1.8rem;
    }
    
    .section-title-clean {
        font-size: 1.8rem;
    }
    
    .mvv-card-clean,
    .service-card-about,
    .advantage-card-clean {
        padding: 2rem 1.5rem;
    }
}