/* Custom styles for EVE Business Solutions - Professional Modern Color Scheme */
:root {
    --bs-primary: #1e3a8a; /* Changed to navy blue */
    --bs-primary-rgb: 30, 58, 138; /* Updated RGB values for navy blue */
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    --accent-violet: #8b5cf6;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --text-dark: #1e3a8a; /* Changed to navy blue */
    --text-light: #1f2937; /* Changed to darker navy-gray */
    --text-muted: #6b7280; /* Slightly darker muted text */
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #4338ca 100%); /* Navy blue gradient */
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-accent: linear-gradient(135deg, #dc2626 0%, #f43f5e 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Container width adjustments for narrower layout */
.container {
    max-width: 1140px; /* Reduced from default Bootstrap 1320px */
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px; /* Even more constrained on very large screens */
    }
}

/* Navigation Logo Styling - More Prominent */
.navbar-logo {
    height: 145px;
    width: 550px;
    max-width: 450px;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

/* Navbar brand spacing */
.navbar-brand {
    padding: 0;
    margin-right: 1rem;
    margin-left: -50px;
    position: relative;
}

/* Optional: Add subtle background highlight behind logo */
.navbar-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    right: 10px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(16, 185, 129, 0.03) 100%); /* Updated to navy blue */
    border-radius: 12px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.navbar-brand:hover::before {
    opacity: 1;
}

/* Logo hover effect */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.08);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-logo {
        height: 90px;
        max-width: 280px;
    }
    
    .navbar-brand {
        padding: 0.5rem 1rem 0.5rem 0;
        margin-right: 1rem;
    }
    
    .navbar-brand::before {
        height: 60px;
        left: -8px;
        right: 8px;
    }
    
    .navbar {
        min-height: 70px;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 70px;
        max-width: 220px;
    }
    
    .navbar-brand {
        padding: 0.4rem 0.75rem 0.4rem 0;
        margin-right: 0.75rem;
    }
    
    .navbar-brand::before {
        height: 50px;
        left: -6px;
        right: 6px;
    }
    
    .navbar {
        min-height: 60px;
    }
}

/* Hero Section with Background Carousel */
.hero-section {
    padding-top: 120px; /* Increased to accommodate taller navbar */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    --animation-play-state: running;
}

/* Background carousel containers */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation-play-state: var(--animation-play-state);
}

/* First background - Circuit and Hexagon Pattern */
.hero-section::before {
    background-image: url('images/hero-tech-bg2.svg');
    animation: backgroundCarousel1 10s infinite;
}

/* Second background - Network and Data Visualization */
.hero-section::after {
    background-image: url('images/bg2.jpg');
    animation: backgroundCarousel2 10s infinite;
}

/* Force slide states for manual control */
.hero-section.force-slide-1::before {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.hero-section.force-slide-1::after {
    opacity: 0 !important;
    transform: scale(1.05) !important;
}

.hero-section.force-slide-2::before {
    opacity: 0 !important;
    transform: scale(1.05) !important;
}

.hero-section.force-slide-2::after {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Carousel animation keyframes */
@keyframes backgroundCarousel1 {
    0%, 45% {
        opacity: 1;
        transform: scale(1);
    }
    50%, 95% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes backgroundCarousel2 {
    0%, 45% {
        opacity: 0;
        transform: scale(1.05);
    }
    50%, 95% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.3); /* Reduced opacity to show the tech background better */
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
    position: relative;
    max-width: 1000px; /* Narrower hero content */
}

.hero-section h1 {
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 500px; /* Reduced from 600px */
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Hero Carousel Indicators */
.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

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

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.carousel-indicator.active {
    background: var(--bs-primary);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

/* Indicator animation sync with carousel */
.carousel-indicator:first-child {
    animation: indicatorSync1 10s infinite;
}

.carousel-indicator:last-child {
    animation: indicatorSync2 10s infinite;
}

@keyframes indicatorSync1 {
    0%, 45% {
        background: var(--bs-primary);
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.5); /* Updated to navy blue */
    }
    50%, 100% {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }
}

@keyframes indicatorSync2 {
    0%, 45% {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: none;
    }
    50%, 100% {
        background: var(--bs-primary);
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.5); /* Updated to navy blue */
    }
}

/* Responsive indicators */
@media (max-width: 768px) {
    .hero-carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

.hero-badge {
    background: rgba(30, 58, 138, 0.15) !important; /* Updated to navy blue */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 58, 138, 0.3); /* Updated to navy blue */
    color: #93c5fd !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(30, 58, 138, 0.25) !important; /* Updated to navy blue */
    transform: translateY(-2px);
}

.hero-cta {
    margin-top: 2rem;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--bs-primary);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Service Cards */
.service-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
    background: white;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(30, 58, 138, 0.2); /* Updated to navy blue */
}

.service-icon {
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card:nth-child(1) .service-icon i { color: var(--bs-primary) !important; }
.service-card:nth-child(2) .service-icon i { color: var(--accent-emerald) !important; }
.service-card:nth-child(3) .service-icon i { color: var(--accent-amber) !important; }
.service-card:nth-child(4) .service-icon i { color: var(--accent-rose) !important; }

.service-card h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Cards */
.team-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
    background: white;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(30, 58, 138, 0.2); /* Updated to navy blue */
}

.team-card .card-img-top {
    background: var(--gradient-secondary) !important;
    position: relative;
}

.team-card .card-body {
    position: relative;
    z-index: 2;
}

.team-card h5 {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.team-card .text-muted {
    color: var(--text-light) !important;
}

.team-card .card-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Custom button styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.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.6s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.3); /* Updated to navy blue */
    background: var(--gradient-primary);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid var(--border-color);
    min-height: 20px;
    padding: 0;
    align-items: center;
    overflow: visible;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}

/* Section Backgrounds with narrower content */
#services {
    background: white;
}

#services .container,
#why-us .container,
#team .container,
#contact .container {
    max-width: 1080px; /* Narrower content sections */
    padding-left: 2rem;
    padding-right: 2rem;
}

#why-us {
    background: var(--light-bg);
    position: relative;
}

#team {
    background: white;
}

#contact {
     background: var(--light-bg);
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Form styles */
.form-control {
    border-radius: 12px;
    border: 2px solid var(--border-color);
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    background: white;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.1); /* Updated to navy blue */
    background: white;
}

.form-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card hover effects */
.card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 16px;
}

.card:hover {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
    border-color: rgba(30, 58, 138, 0.1); /* Updated to navy blue */
}

/* Section headings */
.display-5 {
    color: var(--text-dark) !important;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

/* Why Us Icons */
.why-us-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Social Links */
.social-links a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: white !important;
    text-decoration: none;
    margin: 0.25rem;
    font-size: 1.1rem;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3); /* Updated to navy blue */
}

/* Enhanced Footer */
footer {
    background: var(--dark-bg) !important;
    position: relative;
    border-top: 1px solid rgba(30, 58, 138, 0.2); /* Updated to navy blue */
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Google Maps Section Styling */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.map-container iframe {
    transition: filter 0.3s ease;
    border-radius: 0;
}

.map-container:hover iframe {
    filter: brightness(1.05) contrast(1.05);
}

/* Map card styling */
#contact .card-header.bg-primary {
    background: var(--gradient-primary) !important;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

#contact .card-header h5 {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact .card-footer {
    background: rgba(248, 250, 252, 0.8) !important;
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
}

#contact .card-footer .btn-outline-primary {
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#contact .card-footer .btn-outline-primary:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Responsive map adjustments */
@media (max-width: 768px) {
    .map-container iframe {
        height: 250px;
    }
    
    #contact .card-footer .btn-outline-primary {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* Stack contact cards vertically on mobile */
    #contact .col-lg-6,
    #contact .col-lg-3 {
        margin-bottom: 2rem;
    }
    
    #contact .col-lg-6 {
        order: 1;
    }
    
    #contact .col-lg-3:first-of-type {
        order: 2;
    }
    
    #contact .col-lg-3:last-of-type {
        order: 3;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    /* Tablet layout - contact form full width, other cards side by side */
    #contact .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    #contact .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-section .container {
        max-width: 100%; /* Full width on mobile */
    }
    
    #services .container,
    #why-us .container,
    #team .container,
    #contact .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .service-card, .team-card {
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.8rem;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.85rem;
        margin: 0 0.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Subtle animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.float {
    animation: float 4s ease-in-out infinite;
}

/* Card hover effects */
.card {
    transition: all 0.3s ease;
}

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

/* Social links */
.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .service-card, .team-card {
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 0.75rem 2rem;
        font-size: 0.8rem;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Social Links */
.social-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white !important;
    text-decoration: none;
    margin: 0.25rem;
}

.social-links a:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Enhanced Footer */
footer {
    background: var(--dark-bg) !important;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading animation for images */
.img-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Team Navigation Styles */
.team-nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px; /* Space for navigation arrows */
}

.team-view {
    border-radius: 16px;
    padding: 10px 0;
}

.team-slides {
    transition: transform 0.4s ease;
}

.team-view-slide {
    width: 100%;
}

/* Team Navigation Buttons */
.team-nav-btn {
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(30, 58, 138, 0.9);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.team-nav-btn:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}

.team-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.team-nav-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(30, 58, 138, 0.9);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.team-nav-prev {
    left: 10px;
}

.team-nav-next {
    right: 10px;
}

/* Team View Indicators */
.team-indicators {
    gap: 12px;
}

.team-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.team-indicator.active {
    background: var(--bs-primary);
    transform: scale(1.3);
}

.team-indicator:hover {
    background: var(--bs-primary);
    opacity: 0.8;
}

/* Portfolio Section Styles */
.portfolio-nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px; /* Space for navigation arrows */
}

.portfolio-view {
    border-radius: 16px;
    padding: 10px 0;
}

.portfolio-slides {
    transition: transform 0.4s ease;
}

.portfolio-view-slide {
    width: 100%;
}

/* Portfolio Card Styles */
.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    height: 280px;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.2);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.85) 40%,
        rgba(0, 0, 0, 0.98) 100%
    );
    opacity: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Portfolio Navigation Buttons */
.portfolio-nav-btn {
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(30, 58, 138, 0.9);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.portfolio-nav-btn:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}

.portfolio-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.portfolio-nav-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(30, 58, 138, 0.9);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.portfolio-nav-prev {
    left: 10px;
}

.portfolio-nav-next {
    right: 10px;
}

/* Portfolio View Indicators */
.portfolio-indicators {
    gap: 12px;
}

.portfolio-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.portfolio-indicator.active {
    background: var(--bs-primary);
    transform: scale(1.3);
}

.portfolio-indicator:hover {
    background: var(--bs-primary);
    opacity: 0.8;
}

/* Portfolio Responsive Design */
@media (max-width: 768px) {
    .portfolio-nav-container {
        padding: 0 40px;
    }
    
    .portfolio-card {
        height: 240px;
    }
    
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-content h5 {
        font-size: 1rem;
    }
    
    .portfolio-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .portfolio-nav-container {
        padding: 0 20px;
    }
    
    .portfolio-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .portfolio-nav-prev {
        left: 5px;
    }
    
    .portfolio-nav-next {
        right: 5px;
    }
}

/* Blog Carousel Styles */
.blog-carousel-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px; /* Space for navigation arrows */
}

.blog-carousel-wrapper {
    border-radius: 16px;
    padding: 10px 0;
}

.blog-carousel-track {
    transition: transform 0.4s ease;
    gap: 1.5rem;
}

/* Blog Card Styles */
.blog-card {
    width: 350px;
    transition: all 0.3s ease;
}

.blog-card-inner {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover .blog-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.2);
}

/* Blog Thumbnail */
.blog-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 138, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover .play-button {
    background: rgba(30, 58, 138, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Blog Content */
.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-category {
    background: rgba(30, 58, 138, 0.1);
    color: var(--bs-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-btn {
    align-self: flex-start;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Blog Navigation Buttons */
.blog-nav-btn {
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(30, 58, 138, 0.9);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.blog-nav-btn:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}

.blog-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.blog-nav-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(30, 58, 138, 0.9);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.blog-nav-prev {
    left: 10px;
}

.blog-nav-next {
    right: 10px;
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .blog-carousel-container {
        padding: 0 40px;
    }
    
    .blog-card {
        width: 300px;
    }
    
    .blog-carousel-track {
        gap: 1rem;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-carousel-container {
        padding: 0 20px;
    }
    
    .blog-card {
        width: 280px;
    }
    
    .blog-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .blog-nav-prev {
        left: 5px;
    }
    
    .blog-nav-next {
        right: 5px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
}

/* About Us Section Background */
#about {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.18) 0%, 
        rgba(30, 58, 138, 0.28) 25%,
        rgba(30, 58, 138, 0.22) 50%,
        rgba(30, 58, 138, 0.28) 75%,
        rgba(30, 58, 138, 0.18) 100%);
    position: relative;
}

#about .container {
    position: relative;
    z-index: 1;
}

/* Why Partner With EVE Section Background - Same as About Us */
#why-us {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.18) 0%, 
        rgba(30, 58, 138, 0.28) 25%,
        rgba(30, 58, 138, 0.22) 50%,
        rgba(30, 58, 138, 0.28) 75%,
        rgba(30, 58, 138, 0.18) 100%);
    position: relative;
}

#why-us .container {
    position: relative;
    z-index: 1;
}

/* Portfolio Section Background - Same as About Us and Why Us */
#portfolio {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.18) 0%, 
        rgba(30, 58, 138, 0.28) 25%,
        rgba(30, 58, 138, 0.22) 50%,
        rgba(30, 58, 138, 0.28) 75%,
        rgba(30, 58, 138, 0.18) 100%);
    position: relative;
}

#portfolio .container {
    position: relative;
    z-index: 1;
}

/* About Us Section Styles */
.about-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2) !important;
    background: rgba(255, 255, 255, 0.98);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.05));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(30, 58, 138, 0.1));
    transform: scale(1.1);
}

.values-list {
    text-align: left;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

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

.value-item i {
    width: 20px;
    font-size: 1rem;
}

/* Value bullet points */
.value-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--bs-primary);
    border-radius: 50%;
    margin-right: 12px;
    margin-left: 4px;
    flex-shrink: 0;
}

/* About description card */
#about .bg-light {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9), 
        rgba(255, 255, 255, 0.85)) !important;
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 20px !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.12);
}

#about .bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--bs-primary) 0%, 
        rgba(30, 58, 138, 0.7) 50%, 
        var(--bs-primary) 100%);
}

#about .bg-light .card-body {
    position: relative;
    z-index: 1;
}
