:root {
    --primary: #613DD4;
    --secondary: #FF590D;
    --dark: #ffffff;
    --light: #333333;
    --accent: #ff9900;
    --nav-text: #ffffff;
}
body {
    background-color: var(--dark);
    color: var(--light);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.hero-section {
    background: linear-gradient(135deg, var(--primary), #f0f0f0);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/></svg>') center/50px;
    opacity: 0.1;
}
.navbar {
    background-color: var(--primary) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.navbar-brand {
    color: var(--nav-text) !important;
    font-weight: 600;
}
.nav-link {
    color: var(--nav-text) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: var(--accent) !important;
    transform: translateY(-1px);
}
.section-title {
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.project-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}
.project-card:hover {
    transform: translateY(-5px);
}
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
}
.testimonial-card h5 {
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
}
.testimonial-card a.colorlead {
    color: var(--light);
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    line-height: 1.5;
}
.testimonial-card a.colorlead:hover {
    color: var(--primary);
}
.contact-info {
    background: rgba(255, 89, 13, 0.1);
    padding: 20px;
    border-radius: 15px;
}
.contact-info i {
    color: var(--secondary);
    margin-right: 10px;
}
.btn-custom {
    background-color: var(--secondary);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 89, 13, 0.3);
}
.btn-custom:hover {
    background-color: #ff7a3d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 89, 13, 0.4);
}
/* Update carousel indicators for better visibility */
.carousel-indicators button {
    background-color: var(--primary) !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0) grayscale(100%) brightness(40%);
}
/* Remove dark background from testimonial columns */
.flex-fill.rounded.bg-dark {
    background: transparent !important;
}
/* Projects section styling */
#projects {
    background: linear-gradient(180deg, #f0f0f0 0%, #ffffff 100%);
    padding: 80px 0;
}
/* Testimonials section styling */
#testimonials {
    background: linear-gradient(180deg, #ffffff, rgba(97, 61, 212, 0.1));
    padding: 80px 0;
}
/* SSL section styling */
.py-5 {
    background: linear-gradient(180deg, rgba(97, 61, 212, 0.1), #ffffff);
    padding: 80px 0 !important;
}
/* Add subtle pattern overlay to sections */
#projects::before,
#testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/></svg>') center/50px;
    opacity: 0.1;
    pointer-events: none;
}
    #qrcode-container {
    position: relative;
    display: inline-block;
}
#qrcode {
    width: 200px;
    height: 200px;
}
#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;  /* Adjust size of logo */
    height: 50px;
    border-radius: 10px;
}
    .expertise-stats {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--light);
    font-size: 1.1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin: 30px auto;
    justify-content: center;
    max-width: 100%;
    padding: 0 20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.skill-tags::-webkit-scrollbar {
    display: none;
}

.skill-tag {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.skill-tag:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Ensure the section title is centered */
.text-center .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#barcode {
    margin-top: 20px;
}
.me-2{
margin-right: .5rem !important; width: 40px; height: 40px; object-fit: cover;}