/* Mintylime-Style Cinematic Hero Animation Styles */

/* Hero Slider Container */
#minty-hero-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #0b1320;
}

/* Individual Slides */
#minty-hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform, opacity, background-position;
    transform-origin: center center;
}

/* Cinematic Dark Overlay */
#minty-hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(11, 19, 32, 0.7) 0%,
        rgba(11, 19, 32, 0.5) 50%,
        rgba(11, 19, 32, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

/* Additional cinematic vignette effect */
#minty-hero-slider .overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

/* Active slide state */
#minty-hero-slider .slide.active {
    opacity: 1;
    z-index: 0;
}

/* Ensure text remains crisp and stationary */
.e-con-inner > .elementor-element {
    position: relative;
    z-index: 10;
    transform: translateZ(0);
    will-change: auto;
}

/* Smooth loading animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#minty-hero-slider.loading {
    animation: heroFadeIn 1s ease-in-out;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    #minty-hero-slider .slide {
        transition: none !important;
        transform: none !important;
    }
    
    #minty-hero-slider .overlay {
        transform: none !important;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #minty-hero-slider .slide {
        background-position: center center;
    }
    
    #minty-hero-slider .overlay {
        background: linear-gradient(
            to bottom,
            rgba(11, 19, 32, 0.8) 0%,
            rgba(11, 19, 32, 0.6) 50%,
            rgba(11, 19, 32, 0.9) 100%
        );
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #minty-hero-slider .slide {
        background-size: cover;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Prevent text selection during interactions */
#minty-hero-slider {
    user-select: none;
    -webkit-user-select: none;
}

/* Smooth scroll behavior for parallax */
html {
    scroll-behavior: smooth;
}

/* Ensure content below hero is visible */
.elementor-element-6a313cb {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Text content wrapper for crisp rendering */
.elementor-element-6a313cb .e-con-inner {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.elementor-element-6a313cb .e-con-inner > * {
    pointer-events: auto;
}

/* Ken Burns effect helper classes */
.slide[data-zoom="in"] {
    animation: kenBurnsIn 12s ease-out forwards;
}

.slide[data-zoom="out"] {
    animation: kenBurnsOut 12s ease-out forwards;
}

@keyframes kenBurnsIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15);
    }
}

@keyframes kenBurnsOut {
    from {
        transform: scale(1.15);
    }
    to {
        transform: scale(1);
    }
}

/* Parallax depth layers */
#minty-hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    pointer-events: none;
}

/* Smooth crossfade transition */
.slide {
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pause indicator (optional) */
#minty-hero-slider[data-paused="true"]::after {
    content: '▌▌';
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

#minty-hero-slider[data-paused="true"]:hover::after {
    opacity: 1;
}

/* Grain texture overlay for cinematic effect */
#minty-hero-slider .overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 100;
    pointer-events: none;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(158, 204, 59, 0.2);
    border: 2px solid rgba(158, 204, 59, 0.6);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.nav-arrow:hover {
    background: rgba(158, 204, 59, 0.4);
    border-color: #9ECC3B;
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow svg {
    transition: transform 0.3s ease;
}

.nav-arrow:hover svg {
    transform: scale(1.2);
}

/* Dot Indicators */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
    pointer-events: none;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: #9ECC3B;
    border-color: #9ECC3B;
    transform: scale(1.3);
}

/* Mobile adjustments for navigation */
@media (max-width: 768px) {
    .slider-nav {
        padding: 0 15px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Ensure main navigation is visible on homepage */
.elementor-location-header {
    position: relative !important;
    z-index: 1000 !important;
    background: rgba(11, 19, 32, 0.95) !important;
}

.elementor-nav-menu--main {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1001 !important;
}

.elementor-nav-menu--main .elementor-nav-menu {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

.elementor-nav-menu--main .elementor-nav-menu li {
    position: relative;
}

.elementor-nav-menu--main .elementor-item {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.elementor-nav-menu--main .elementor-item:hover {
    color: #9ECC3B;
}

.elementor-nav-menu--main .elementor-item-active {
    color: #9ECC3B;
}

/* Dropdown menu styling */
.elementor-nav-menu--dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0b1320;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.elementor-nav-menu--dropdown li {
    width: 100%;
}

.elementor-nav-menu--dropdown .elementor-sub-item {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background 0.3s ease;
}

.elementor-nav-menu--dropdown .elementor-sub-item:hover {
    background: rgba(158, 204, 59, 0.1);
    color: #9ECC3B;
}

/* Show dropdown on hover */
.menu-item-has-children:hover .elementor-nav-menu--dropdown {
    display: block;
}

/* Professional Dropdown Styling */
.professional-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(11, 19, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(158, 204, 59, 0.2);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

.menu-item-has-children:hover .professional-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.professional-dropdown li {
    position: relative;
    padding: 0;
}

.professional-dropdown .elementor-sub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
}

.professional-dropdown .elementor-sub-item:hover {
    background: rgba(158, 204, 59, 0.15);
    color: #9ECC3B;
    padding-left: 28px;
}

.dropdown-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    padding-top: 8px;
}

/* Dropdown animation delay for smooth feel */
.menu-item-has-children .professional-dropdown {
    transition-delay: 0.1s;
}

.menu-item-has-children:hover .professional-dropdown {
    transition-delay: 0s;
}

/* Mobile Dropdown Behavior */
@media (max-width: 1024px) {
    .professional-dropdown {
        position: static;
        width: 100%;
        min-width: 100%;
        background: rgba(11, 19, 32, 0.98);
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    .menu-item-has-children.active .professional-dropdown {
        display: block;
        max-height: 500px;
        padding: 12px 0;
    }
    
    .professional-dropdown .elementor-sub-item {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .professional-dropdown .elementor-sub-item:hover {
        padding-left: 32px;
        background: rgba(158, 204, 59, 0.1);
    }
    
    .dropdown-arrow {
        display: inline-block;
    }
    
    /* Mobile accordion toggle */
    .menu-item-has-children > .elementor-item {
        position: relative;
        cursor: pointer;
    }
    
    .menu-item-has-children > .elementor-item::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 20px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    
    .menu-item-has-children.active > .elementor-item::after {
        transform: rotate(45deg);
    }
}

/* Accessibility */
.professional-dropdown .elementor-sub-item:focus {
    outline: 2px solid #9ECC3B;
    outline-offset: -2px;
}

.menu-item-has-children:focus-within .professional-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Smooth scroll for anchor links */
.professional-dropdown .elementor-sub-item {
    scroll-behavior: smooth;
}

/* About Us Page Styling */
.value-card, .why-card {
    background: rgba(11, 19, 32, 0.8);
    border: 1px solid rgba(158, 204, 59, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover, .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 204, 59, 0.2);
    border-color: rgba(158, 204, 59, 0.4);
}

.value-card h4, .why-card h4 {
    color: #9ECC3B;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p, .why-card p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(11, 19, 32, 0.8);
    border: 1px solid rgba(158, 204, 59, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(158, 204, 59, 0.2);
    border-color: rgba(158, 204, 59, 0.4);
}

.stat-card h3 {
    color: #9ECC3B;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

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

/* Founder Profile Styling */
.elementor-widget-container img[alt*="Austine"] {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

#founder-bio h5 {
    color: #9ECC3B;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#founder-bio ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#founder-bio ul li {
    color: #fff;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

#founder-bio ul li::before {
    content: "✓";
    color: #9ECC3B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Story Section Styling */
#story-description p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

/* Mission and Vision Styling */
#mission-text h3, #vision-text h3 {
    color: #9ECC3B;
    font-size: 24px;
    margin-bottom: 16px;
}

#mission-text p, #vision-text p {
    color: #fff;
    line-height: 1.8;
    font-size: 16px;
}

/* Services Page Styling */
.service-detail-card {
    background: rgba(11, 19, 32, 0.8);
    border: 1px solid rgba(158, 204, 59, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 204, 59, 0.2);
    border-color: rgba(158, 204, 59, 0.4);
}

.service-detail-card h4 {
    color: #9ECC3B;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-detail-card p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.industry-card {
    background: rgba(11, 19, 32, 0.8);
    border: 1px solid rgba(158, 204, 59, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 204, 59, 0.2);
    border-color: rgba(158, 204, 59, 0.4);
}

.industry-card h4 {
    color: #9ECC3B;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.industry-card p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.process-step {
    background: rgba(11, 19, 32, 0.8);
    border: 1px solid rgba(158, 204, 59, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 204, 59, 0.2);
    border-color: rgba(158, 204, 59, 0.4);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #9ECC3B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    font-weight: 700;
    color: #0b1320;
}

.process-step h4 {
    color: #9ECC3B;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.tech-card {
    background: rgba(11, 19, 32, 0.8);
    border: 1px solid rgba(158, 204, 59, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 204, 59, 0.2);
    border-color: rgba(158, 204, 59, 0.4);
}

.tech-card h4 {
    color: #9ECC3B;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tech-card p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Services Page Specific Styles */
#software-detail-desc h4 {
    color: #9ECC3B;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#software-detail-desc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

#software-detail-desc ul li {
    color: #fff;
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

#software-detail-desc ul li::before {
    content: "✓";
    color: #9ECC3B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

#software-detail-desc p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Case Studies Page Styling */
#eduwell-desc h4, #cybercafe-desc h4, #healthmate-desc h4, #tha-desc h4, #cybersec-desc h4 {
    color: #9ECC3B;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

#eduwell-desc ul, #cybercafe-desc ul, #healthmate-desc ul, #tha-desc ul, #cybersec-desc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

#eduwell-desc ul li, #cybercafe-desc ul li, #healthmate-desc ul li, #tha-desc ul li, #cybersec-desc ul li {
    color: #fff;
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

#eduwell-desc ul li::before, #cybercafe-desc ul li::before, #healthmate-desc ul li::before, #tha-desc ul li::before, #cybersec-desc ul li::before {
    content: "✓";
    color: #9ECC3B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

#eduwell-desc p, #cybercafe-desc p, #healthmate-desc p, #tha-desc p, #cybersec-desc p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 15px;
}

.elementor-widget-container img[alt*="Dashboard"],
.elementor-widget-container img[alt*="Interface"],
.elementor-widget-container img[alt*="Platform"] {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

/* Resources Page Styling */
.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-category {
    color: #9ECC3B;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.blog-date {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.blog-excerpt {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    color: #9ECC3B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #8ab832;
}

.report-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.report-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.report-card h4 {
    color: #9ECC3B;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.report-card p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.report-download {
    display: inline-block;
    background: #9ECC3B;
    color: #0b1322;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.report-download:hover {
    background: #8ab832;
    transform: translateY(-2px);
}

.newsletter-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.newsletter-wrapper p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    width: 100%;
}

.newsletter-input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: #9ECC3B;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: #9ECC3B;
    color: #0b1322;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.newsletter-btn:hover {
    background: #8ab832;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-detail-card,
    .industry-card,
    .process-step,
    .tech-card,
    .blog-card,
    .report-card,
    .newsletter-wrapper {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Portfolio Search & Filter */
.portfolio-search-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.portfolio-search {
    width: 100%;
    max-width: 500px;
}

.portfolio-search input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.portfolio-search input:focus {
    outline: none;
    border-color: #99cc00;
    box-shadow: 0 0 0 3px rgba(153, 204, 0, 0.1);
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #99cc00;
    color: #99cc00;
}

.filter-btn.active {
    background: #99cc00;
    border-color: #99cc00;
    color: #0b1320;
}

/* Detailed Portfolio Cards */
.portfolio-item.detailed {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item.detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-hero {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.portfolio-item.detailed:hover .portfolio-hero img {
    transform: scale(1.05);
}

.portfolio-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(153, 204, 0, 0.95);
    color: #0b1320;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.portfolio-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 5px;
}

.portfolio-subtitle {
    color: #99cc00;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-description {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.portfolio-problem,
.portfolio-features,
.portfolio-tech,
.portfolio-results {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #99cc00;
}

.portfolio-problem strong,
.portfolio-features strong,
.portfolio-tech strong,
.portfolio-results strong {
    color: #0b1320;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.portfolio-problem p,
.portfolio-results p {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.portfolio-features ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

.portfolio-features li {
    margin-bottom: 5px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.portfolio-tech strong {
    margin-bottom: 0;
    margin-right: 10px;
}

.tech-tag {
    background: #99cc00;
    color: #0b1320;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-links {
    margin-top: auto;
    display: flex;
    gap: 10px;
    padding-top: 15px;
}

.portfolio-link-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #99cc00;
    background: transparent;
    color: #99cc00;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link-btn:hover {
    background: #99cc00;
    color: #0b1320;
}

.portfolio-link-btn.primary {
    background: #99cc00;
    color: #0b1320;
}

.portfolio-link-btn.primary:hover {
    background: #88b800;
}

/* Portfolio Filter Animation */
.portfolio-item.detailed {
    transition: all 0.3s ease;
}

.portfolio-item.detailed.hidden {
    display: none;
}

.portfolio-item.detailed.fade-in {
    animation: portfolioFadeIn 0.5s ease forwards;
}

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

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-search-wrapper {
        gap: 15px;
    }
    
    .portfolio-search input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .portfolio-hero {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-content h4 {
        font-size: 1.3rem;
    }
    
    .portfolio-problem,
    .portfolio-features,
    .portfolio-tech,
    .portfolio-results {
        padding: 12px;
    }
    
    .portfolio-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .portfolio-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .portfolio-hero {
        height: 180px;
    }
    
    .portfolio-content {
        padding: 15px;
    }
    
    .portfolio-content h4 {
        font-size: 1.2rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Cybersecurity Services Page Styles */
.cybersecurity-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.cybersecurity-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cybersecurity-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 15px;
}

.cybersecurity-service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cybersecurity-service-card ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #555;
    line-height: 1.8;
}

.cybersecurity-service-card li {
    margin-bottom: 8px;
}

.cybersecurity-service-card .service-link {
    margin-top: auto;
    color: #99cc00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cybersecurity-service-card .service-link:hover {
    color: #88b800;
}

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

.tool-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #99cc00;
}

.tool-name {
    font-weight: 700;
    color: #0b1320;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tool-desc {
    color: #555;
    font-size: 0.9rem;
}

.process-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #99cc00;
    color: #0b1320;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 10px;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #99cc00 0%, #88b800 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: #0b1320;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #0b1320;
    color: #99cc00;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a1f2e;
    transform: translateY(-2px);
}

/* Responsive Cybersecurity */
@media (max-width: 768px) {
    .cybersecurity-service-card {
        padding: 25px;
    }
    
    .cybersecurity-service-card .service-icon {
        font-size: 2.5rem;
    }
    
    .cybersecurity-service-card h3 {
        font-size: 1.2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* AI Solutions Page Styles */
.ai-service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.ai-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ai-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 15px;
}

.ai-service-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ai-service-card ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #555;
    line-height: 1.8;
}

.ai-service-card li {
    margin-bottom: 8px;
}

.ai-service-card .service-link {
    margin-top: auto;
    color: #99cc00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ai-service-card .service-link:hover {
    color: #88b800;
}

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

.case-study-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #99cc00;
}

.case-study-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 10px;
}

.case-study-client {
    color: #99cc00;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.case-study-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-study-results {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.case-study-results strong {
    color: #0b1320;
    display: block;
    margin-bottom: 5px;
}

/* Responsive AI Solutions */
@media (max-width: 768px) {
    .ai-service-card {
        padding: 25px;
    }
    
    .ai-service-card .service-icon {
        font-size: 2.5rem;
    }
    
    .ai-service-card h3 {
        font-size: 1.2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-card {
        padding: 25px;
    }
}

/* Results & Impact Section Styles */
.results-impact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #99cc00;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #99cc00;
    margin-bottom: 10px;
    line-height: 1;
}

.counter-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Responsive Results & Impact */
@media (max-width: 768px) {
    .results-impact-section {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .impact-card {
        padding: 30px 20px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 1rem;
    }
    
    .counter-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .results-impact-section {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .impact-card {
        padding: 25px 15px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    .counter-icon {
        font-size: 1.5rem;
    }
}

/* Project Request Wizard Styles */
.project-wizard-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.wizard-progress {
    margin-bottom: 50px;
}

.progress-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #99cc00;
    width: 0%;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #99cc00;
    color: #0b1320;
}

.step.completed .step-number {
    background: #99cc00;
    color: #0b1320;
}

.step-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.step.active .step-label {
    color: #99cc00;
    font-weight: 700;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 30px;
}

.project-type-grid,
.budget-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.project-type-card,
.budget-card {
    cursor: pointer;
    position: relative;
}

.project-type-card input,
.budget-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.project-type-card .card-content,
.budget-card .card-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
}

.project-type-card:hover .card-content,
.budget-card:hover .card-content {
    border-color: #99cc00;
    transform: translateY(-5px);
}

.project-type-card input:checked + .card-content,
.budget-card input:checked + .card-content {
    border-color: #99cc00;
    background: rgba(153, 204, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #0b1320;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #99cc00;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.urgency-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.urgency-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.btn-prev,
.btn-next,
.btn-submit,
.btn-home {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-prev {
    background: #e0e0e0;
    color: #0b1320;
}

.btn-prev:hover {
    background: #d0d0d0;
}

.btn-next,
.btn-submit {
    background: #99cc00;
    color: #0b1320;
}

.btn-next:hover,
.btn-submit:hover {
    background: #88b800;
}

.btn-home {
    background: #0b1320;
    color: #99cc00;
}

.btn-home:hover {
    background: #1a2639;
}

.wizard-success {
    text-align: center;
    padding: 60px 40px;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #99cc00;
    color: #0b1320;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 30px;
}

.success-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 20px;
}

.success-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive Wizard */
@media (max-width: 768px) {
    .project-wizard-container {
        padding: 30px 15px;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step {
        flex: 0 0 auto;
        min-width: 60px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .wizard-step h2 {
        font-size: 1.5rem;
    }
    
    .project-type-grid,
    .budget-options {
        grid-template-columns: 1fr;
    }
    
    .wizard-buttons {
        flex-direction: column;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
    }
    
    .urgency-options {
        flex-direction: column;
        gap: 10px;
    }
}

/* About Us Page - Timeline Section */
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #99cc00;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-year {
    background: #99cc00;
    color: #0b1320;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #99cc00;
    max-width: 400px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* About Us Page - Certifications Section */
.cert-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.cert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cert-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 10px;
}

.cert-card p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-right: 0;
        padding-left: 50px;
        justify-content: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .cert-card {
        padding: 25px 20px;
    }
    
    .cert-icon {
        font-size: 2.5rem;
    }
}

/* Technology Stack Page Styles */
.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tech-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #99cc00;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.tech-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 20px;
}

.skill-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.skill-fill {
    background: linear-gradient(90deg, #99cc00, #88b800);
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
    position: relative;
}

.skill-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: #99cc00;
    display: block;
}

/* Responsive Technology Stack */
@media (max-width: 768px) {
    .tech-stack-container {
        padding: 30px 15px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .tech-card {
        padding: 20px;
    }
    
    .tech-icon {
        font-size: 2rem;
    }
    
    .tech-card h3 {
        font-size: 1rem;
    }
}
