     
    /* Initial transparent navbar */
    .navbar {
        background: transparent !important;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Sticky navbar when scrolled */
    .navbar.sticky-top {
        position: fixed !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Initial navbar text color (white on hero) */
    .navbar .navbar-brand h2 {
        color: #ffffff !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    /* Sticky navbar text color (blue when white background) */
    .navbar.sticky-top .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    /* Hover and active states */
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #06a3da !important;
    }
    
    /* Adjust hero section padding when navbar is sticky */
    body.sticky-navbar .hero {
        padding-top: 150px;
    }
    
    /* For mobile view */
    @media (max-width: 991.98px) {
        .navbar {
            position: relative;
            background: #ffffff !important;
        }
        
        .navbar .navbar-brand h2 {
            color: #06a3da !important;
        }
        
        .navbar .navbar-nav .nav-link {
            color: #091e3e !important;
        }
        
        .navbar.sticky-top {
            position: relative !important;
            box-shadow: none;
        }
        
        body.sticky-navbar .hero-section {
            padding-top: 130px;
        }
    }
/* ===== High DPI / Zoom Fix ===== */
        
    /* Initial transparent navbar */
    .navbar {
        background: transparent !important;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }
    
    /* Sticky navbar when scrolled */
    .navbar.sticky-top {
        position: fixed !important;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    /* Initial navbar text color (white on hero) */
    .navbar .navbar-brand h2 {
        color: #ffffff !important;
    }
    
    .navbar .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    
    /* Sticky navbar text color (blue when white background) */
    .navbar.sticky-top .navbar-brand h2 {
        color: #06a3da !important;
    }
    
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #091e3e !important;
    }
    
    /* Hover and active states */
    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #06a3da !important;
    }
    
    /* Adjust hero section padding when navbar is sticky */
    body.sticky-navbar .hero {
        padding-top: 150px;
    }
    
    /* For mobile view */
    @media (max-width: 991.98px) {
        .navbar {
            position: relative;
            background: #ffffff !important;
        }
        
        .navbar .navbar-brand h2 {
            color: #06a3da !important;
        }
        
        .navbar .navbar-nav .nav-link {
            color: #091e3e !important;
        }
        
        .navbar.sticky-top {
            position: relative !important;
            box-shadow: none;
        }
        
        body.sticky-navbar .hero-section {
            padding-top: 130px;
        }
    }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.hero-title {
    font-weight: 400 !important;
    letter-spacing: 0.5px;
}

/* Windows 150% scaling fix */
@media (min-resolution: 1.5dppx) {
    .hero-title {
        font-weight: 350 !important;
        letter-spacing: 0.7px;
    }
}
/* FORCE 4 COLUMNS ON DESKTOP (EVEN AT 150% ZOOM) */
.services-main-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
    gap: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
    .services-main-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-main-list {
        grid-template-columns: 1fr !important;
    }
}

/* ================================
   HERO SECTION STYLES
================================= */
.digital-hero-section {
    background:  linear-gradient(135deg, #0a1929 0%, #0f2a40 100%);;
    padding: 120px 0 80px;
    overflow-x: hidden;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Hero Grid - Two Columns */
.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Side Content */
.hero-left {
    flex: 1;
    max-width: 55%;
}

.digital-heading {
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.heading-part-first {
    color: #ffffff;
    display: block;
    margin-bottom: 12px;
    font-size: 2.2rem;
    font-weight: 700;
}

.heading-part-second {
    color: #06a3da;
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
}

.heading-divider {
    width: 80px;
    height: 4px;
    background: #06a3da;
    margin: 20px 0 25px;
    border-radius: 2px;
}

.digital-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 0 30px 0;
    text-align: left;
}

/* CTA Buttons Container */
.digital-cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0 0;
    flex-wrap: wrap;
}

/* Common Button Style */
.digital-cta-main,
.digital-cta-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 190px;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

/* Primary Button */
.digital-cta-main {
    background-color: #06a3da;
    color: #ffffff;
    border: 2px solid #06a3da;
}

.digital-cta-main:hover {
    background-color: transparent;
    color: #06a3da;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary (Outline) Button */
.digital-cta-alt {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.digital-cta-alt:hover {
    background-color: #ffffff;
    color: #0a1929;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Right Side Image */
.hero-right {
    flex: 1;
    max-width: 40%;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .digital-heading {
        text-align: center;
    }
    
    .heading-divider {
        margin: 20px auto 25px;
    }
    
    .digital-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .digital-cta-group {
        justify-content: center;
    }
    
    .hero-right {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .digital-hero-section {
        padding: 100px 0 60px;
    }
    
    .heading-part-first {
        font-size: 1.8rem;
    }
    
    .heading-part-second {
        font-size: 1.4rem;
    }
    
    .digital-text {
        font-size: 1rem;
    }
    
    .digital-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .digital-cta-main,
    .digital-cta-alt {
        width: 100%;
        max-width: 250px;
        padding: 12px 28px;
    }
    
    .hero-right {
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .digital-hero-section {
        padding: 80px 0 40px;
    }
    
    .heading-part-first {
        font-size: 1.5rem;
    }
    
    .heading-part-second {
        font-size: 1.2rem;
    }
    
    .digital-text {
        font-size: 0.95rem;
    }
}

/* Services And Solutions We Offer Section - Single Column Accordion */
.services-solutions-section {
    padding: 50px 0 50px 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-main-title {
    /* font-size: 2.5rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.section-main-title .highlight {
    color: #06a3da;
    position: relative;
    display: inline-block;
}

.section-main-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(6, 163, 218, 0.15);
    z-index: -1;
}

/* .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #06a3da, #0482b0);
    margin: 15px auto 25px;
    border-radius: 2px;
} */

.section-description {
    /* font-size: 1.1rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services List - Single Column */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/* Service Accordion */
.service-accordion {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(6, 163, 218, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-accordion:hover {
    border-color: rgba(6, 163, 218, 0.3);
    box-shadow: 0 10px 30px rgba(6, 163, 218, 0.1);
}

/* Accordion Header */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(6, 163, 218, 0.02);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    width: 42px;
    height: 42px;
    background: rgba(6, 163, 218, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.2rem;
    color: #06a3da;
    transition: all 0.3s ease;
}

.accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-icon i {
    font-size: 1.2rem;
    color: #06a3da;
    transition: all 0.3s ease;
}

/* Active State */
.service-accordion.active .accordion-header {
    background: linear-gradient(135deg, #06a3da, #0482b0);
}

.service-accordion.active .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-accordion.active .service-icon i {
    color: #ffffff;
}

.service-accordion.active .accordion-title {
    color: #ffffff;
}

.service-accordion.active .accordion-icon i {
    color: #ffffff;
    transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
}

.service-accordion.active .accordion-content {
    max-height: 400px;
    padding: 20px 25px 25px;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: #06a3da;
    font-size: 0.9rem;
    width: 18px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-solutions-section {
        padding: 60px 0;
    }
    
    .section-main-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .header-left {
        gap: 12px;
    }
    
    .service-icon {
        width: 36px;
        height: 36px;
    }
    
    .service-icon i {
        font-size: 1rem;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-icon i {
        font-size: 1rem;
    }
    
    .service-desc {
        font-size: 0.9rem;
    }
    
    .service-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .accordion-header {
        padding: 12px 16px;
    }
    
    .header-left {
        gap: 10px;
    }
    
    .service-icon {
        width: 32px;
        height: 32px;
    }
    
    .service-icon i {
        font-size: 0.9rem;
    }
    
    .accordion-title {
        font-size: 0.95rem;
    }
    
    .service-accordion.active .accordion-content {
        padding: 15px 18px 20px;
    }
    
    .service-list li {
        font-size: 0.85rem;
    }
}
.service-header {
    cursor: pointer;
    z-index: 10;
    position: relative;
}

/* Default link color */
.accordion-title a {
    color: inherit;
    text-decoration: none;
}

/* When accordion is active → make text white */
.service-accordion.active .accordion-title a {
    color: #ffffff;
}


/* Cloud Application Development Services Section */
.cloud-services-section {
     padding: 50px 0 50px 0;
    background: #e6f4ff;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}


.cloud-heading {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}



.cloud-description {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Service Card - Updated box design */
.service-card {
    background: #ffffff;
    border-radius: 30px 10px 30px 10px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    border: 2px solid rgba(6, 163, 218, 0.1);
    box-shadow: 0 15px 35px rgba(6, 163, 218, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #06a3da;
    box-shadow: 0 25px 45px rgba(6, 163, 218, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent #06a3da transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(135deg, #06a3da, #0482b0);
    transition: height 0.4s ease;
}

.service-card:hover::after {
    height: 100%;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(6, 163, 218, 0.1);
    border-radius: 20px 5px 20px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #06a3da, #0482b0);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.3);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: #06a3da;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper i {
    color: #ffffff;
}

.service-title {
    font-size: 1.3rem;
    /* font-weight: 600; */
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

/* .service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #06a3da;
    transition: width 0.3s ease;
} */

.service-card:hover .service-title::after {
    width: 60px;
}

.service-card:hover .service-title {
    color: #06a3da;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features span {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features span i {
    color: #06a3da;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-features span i {
    color: #0482b0;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
[data-delay="0.1s"] { transition-delay: 0.1s; }
[data-delay="0.2s"] { transition-delay: 0.2s; }
[data-delay="0.3s"] { transition-delay: 0.3s; }
[data-delay="0.4s"] { transition-delay: 0.4s; }
[data-delay="0.5s"] { transition-delay: 0.5s; }
[data-delay="0.6s"] { transition-delay: 0.6s; }
[data-delay="0.7s"] { transition-delay: 0.7s; }
[data-delay="0.8s"] { transition-delay: 0.8s; }
[data-delay="0.9s"] { transition-delay: 0.9s; }
[data-delay="1s"] { transition-delay: 1s; }
[data-delay="1.1s"] { transition-delay: 1.1s; }
[data-delay="1.2s"] { transition-delay: 1.2s; }

/* Responsive Design */
@media (max-width: 992px) {
    .cloud-heading {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cloud-services-section {
        padding: 60px 0;
    }
    
    .cloud-heading {
        font-size: 2rem;
    }
    
    .cloud-description {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .cloud-heading {
        font-size: 1.8rem;
    }
    
    .cloud-description {
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
}


/* Shopify Tech Stack Section - Completely New Class Names */
.shopify-stack-wrapper {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: visible;
}

.shopify-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.stack-header-group {
    text-align: center;
    margin-bottom: 40px;
}

.stack-main-title {
    /* font-size: 2.8rem;
    font-weight: 700; */
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* .stack-title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #06a3da, #0482b0);
    margin: 20px auto;
    border-radius: 2px;
} */

.stack-description-text {
    /* font-size: 1.2rem; */
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Tabs */
.stack-category-wrapper {
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
}

.stack-tab-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    min-width: min-content;
}

.stack-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(6, 163, 218, 0.2);
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.stack-tab-btn:hover {
    border-color: #06a3da;
    color: #06a3da;
    transform: translateY(0);
}

.stack-tab-btn.stack-active-tab {
    background: linear-gradient(135deg, #06a3da, #0482b0);
    border-color: #06a3da;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(6, 163, 218, 0.2);
}

/* Tech Grid Container */
.stack-grid-holder {
    position: relative;
    min-height: 200px;
}

.stack-tech-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    animation: stackFadeIn 0.5s ease;
}

.stack-tech-grid.stack-grid-active {
    display: grid;
}

@keyframes stackFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tech Item */
.stack-tech-cell {
    background: #ffffff;
    border: 1px solid rgba(6, 163, 218, 0.1);
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.stack-tech-cell:hover {
    transform: translateY(-5px);
    border-color: #06a3da;
    box-shadow: 0 15px 30px rgba(6, 163, 218, 0.1);
}

.stack-tech-cell i {
    font-size: 2rem;
    color: #06a3da;
    transition: all 0.3s ease;
}

.stack-tech-cell:hover i {
    transform: scale(1.1);
}

.stack-tech-cell span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

.stack-tech-cell img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Tech Note (if needed) */
.stack-footer-note {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    background: rgba(6, 163, 218, 0.05);
    border-radius: 50px;
    color: #666;
    font-size: 0.95rem;
}

.stack-footer-note i {
    color: #06a3da;
    margin-right: 8px;
}

/* Slide Up Animation */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
[data-wait="0.1s"] { transition-delay: 0.1s; }
[data-wait="0.2s"] { transition-delay: 0.2s; }
[data-wait="0.3s"] { transition-delay: 0.3s; }
[data-wait="0.4s"] { transition-delay: 0.4s; }
[data-wait="0.5s"] { transition-delay: 0.5s; }
[data-wait="0.6s"] { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    .stack-main-title {
        font-size: 2.4rem;
    }
    
    .stack-tab-group {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .shopify-stack-wrapper {
        padding: 60px 0;
    }
    
    .stack-main-title {
        font-size: 2rem;
    }
    
    .stack-description-text {
        font-size: 1.1rem;
    }
    
    .stack-tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }
    
    .stack-tech-cell {
        padding: 15px 10px;
    }
    
    .stack-tech-cell i {
        font-size: 1.6rem;
    }
    
    .stack-tech-cell img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 576px) {
    .stack-main-title {
        font-size: 1.8rem;
    }
    
    .stack-description-text {
        font-size: 1rem;
    }
    
    .stack-tab-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .stack-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Software CTA Section Styles - Compact Version */
.software-cta-section {
    padding: 50px 0;
    background: #06a3da;
    position: relative;
    overflow: hidden;
}

.software-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.software-cta-content {
    /*max-width: 700px;*/
    margin: 0 auto;
}

.software-cta-heading {
    /* font-weight: 700; */
    color: #091e3e;
    margin-bottom: 15px;
    /* line-height: 1.2; */
}

.software-cta-description {
    color: rgba(255, 255, 255, 0.9);
     padding-bottom: 35px;
    /* line-height: 1.5; */
}

.software-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px !important;
    flex-wrap: wrap;
}

.software-cta-btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.software-cta-btn-primary {
    background: white;
    color: #0d6efd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.software-cta-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.software-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.software-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .software-cta-section {
        padding: 50px 0;
    }
    
    .software-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .software-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .software-cta-section {
        padding: 40px 0;
    }
    
    .software-cta-btn {
        padding: 10px 20px;
    }
}


/* Portfolio Section */
.portfolio-section-updated {
    padding: 50px 0 50px 0 !important;
    background: #f8fafc;
    position: relative;
}

.container-updated {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header-updated h2 {
    font-weight: 800;
    margin-bottom: 5px !important;
    line-height: 1.2;
    color: #091e3e;
    text-align: center;
}

.section-header-updated p {
    color: #64748b;
    max-width: 1200px;
    margin: 0 auto 60px;
    line-height: 1.8;
    text-align: center;
}

/* Portfolio Section */
.portfolio-section-updated {
    padding: 40px 0;
    background:  #ededee;
    position: relative;
}

.container-updated {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header-updated h2 {
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #091e3e;
    text-align: center;
}

.section-header-updated p {
    color: #64748b;
    max-width: 1500px;
    margin: 0 auto 60px;
    line-height: 1.8;
    text-align: center;
}

/* Portfolio Content Wrapper - FULL LIGHT BLUE */
.portfolio-grid-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #e6f7ff;
    border-radius: 20px;
    padding: 0;
    margin-top: 40px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Image Container - LIGHT BLUE */
.portfolio-media-container {
    flex: 1;
    min-width: 0;
    background: #e6f7ff;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* INCREASED IMAGE HEIGHT */
.carousel-container {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slides */
.carousel-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide-item.current {
    opacity: 1;
}

/* Image */
.media-display {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-display img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Content Container - WHITE CONTAINER */
.portfolio-info-container {
    flex: 1;
    min-width: 0;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.info-inner-wrapper {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 420px;   
}

.project-info-block {
    opacity: 0;
    transform: translateX(20px);
    display: none;
    transition: all 0.5s ease;
}

.project-info-block.current {
    opacity: 1;
    transform: translateX(0);
    display: block;
}

/* EXACT TEXT STYLING FROM IMAGE */
.project-tag {
    font-weight: 700;
    color: #06a6e0;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.project-name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.project-summary {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 35px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.project-summary br {
    display: block;
    content: "";
    margin-bottom: 0.4em;
}

/* EXACT BUTTON FROM REFERENCE IMAGE */
.portfolio-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #06a6e0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    box-shadow: 0 4px 15px rgba(6, 166, 224, 0.2);
}

.portfolio-action-btn:hover {
    background: #0593c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 166, 224, 0.3);
    gap: 15px;
}

.portfolio-action-btn i {
    transition: transform 0.2s ease;
}

.portfolio-action-btn:hover i {
    transform: translateX(5px);
}

/* EXTERNAL SLIDER CONTROLS - COMPLETELY CLEAN, NO BORDERS */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.nav-prev-btn,
.nav-next-btn {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nav-prev-btn:hover,
.nav-next-btn:hover {
    background: #f8fafc;
    color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
}

/* REMOVE ANY FOCUS OUTLINES */
.nav-prev-btn:focus,
.nav-next-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.1);
}

.carousel-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.current {
    background: #9ca3af;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-section-updated {
        padding: 80px 0;
    }
    
    .section-header-updated p {
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .portfolio-grid-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .portfolio-media-container {
        padding: 40px 40px 20px 40px;
    }
    
    .portfolio-info-container {
        padding: 20px 40px 40px 40px;
    }
    
    .info-inner-wrapper {
        max-width: 100%;
        padding: 40px;
    }
    
    /* INCREASED HEIGHT FOR TABLET */
    .carousel-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .portfolio-section-updated {
        padding: 70px 0;
    }
    
    .portfolio-grid-wrapper {
        margin-top: 25px;
        border-radius: 16px;
    }
    
    .portfolio-media-container {
        padding: 25px 25px 15px 25px;
    }
    
    .portfolio-info-container {
        padding: 15px 25px 25px 25px;
    }
    
    .info-inner-wrapper {
        padding: 30px;
    }
    
    /* INCREASED HEIGHT FOR MOBILE */
    .carousel-container {
        height: 250px;
    }
    
    .section-header-updated h2 {
        margin-bottom: 15px;
    }
    
    .section-header-updated p {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .project-name {
        margin-bottom: 20px;
    }
    
    .project-tag {
        margin-bottom: 15px;
    }
    
    .project-summary {
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .portfolio-action-btn {
        padding: 12px 30px;
    }
    
    .carousel-navigation {
        gap: 20px;
        margin-top: 20px;
    }
    
    .nav-prev-btn,
    .nav-next-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 576px) {
    .portfolio-section-updated {
        padding: 60px 0;
    }
    
    .portfolio-grid-wrapper {
        border-radius: 12px;
        margin-top: 20px;
    }
    
    .portfolio-media-container {
        padding: 20px 20px 10px 20px;
    }
    
    .portfolio-info-container {
        padding: 10px 20px 20px 20px;
    }
    
    .info-inner-wrapper {
        padding: 25px;
    }
    
    .carousel-container {
        height: 200px;
    }
    
    .section-header-updated p {
        margin-bottom: 30px;
    }
    
    .project-name {
        margin-bottom: 15px;
    }
    
    .project-tag {
        margin-bottom: 12px;
    }
    
    .project-summary {
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .portfolio-action-btn {
        padding: 10px 25px;
        width: 100%;
        justify-content: center;
    }
    
    .carousel-navigation {
        gap: 15px;
        margin-top: 15px;
    }
    
    .nav-prev-btn,
    .nav-next-btn {
        width: 38px;
        height: 38px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 375px) {
    .portfolio-section-updated {
        padding: 50px 0;
    }
    
    .portfolio-media-container {
        padding: 15px 15px 5px 15px;
    }
    
    .portfolio-info-container {
        padding: 5px 15px 15px 15px;
    }
    
    .info-inner-wrapper {
        padding: 20px;
    }
    
    .carousel-container {
        height: 180px;
    }
}

/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq-section {
    padding: 50px 0 50px 0;
    background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
    position: relative;
    margin-bottom: 0; /* Ensure no bottom margin */
}

/* Remove any unwanted margin/padding after FAQ */
.faq-section + * {
    margin-top: 0 !important;
}

/* Footer container - remove top margin */
.container-fluid.px-0.bg-dark.text-light {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure FAQ container has proper spacing */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
}

/* Rest of your existing FAQ styles remain the same... */

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-main-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.faq-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #68a4c4, #06a3da);
    border-radius: 2px;
}

/* First part of heading - "Frequently Asked" */
.first-part {
    color: #091e3e; /* Dark blue color */
}

/* Second part of heading - "Questions" */
.second-part {
    color: #06a3da; /* Blue color */
}

.faq-subtitle {
    font-size: 1rem;
    color: #444;
    max-width: 600px;
    margin: 20px auto 0;
    padding: 0 20px;
}

/* FAQ Item - Individual boxes with spacing */
.faq-item {
    margin-bottom: 14px; /* SPACE BETWEEN BOXES */
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
    width: 100%;
    animation: fadeIn 0.5s ease forwards;
    box-shadow: 0 4px 15px rgba(6, 163, 218, 0.08);
    border: 1px solid #d1ecff;
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    background: linear-gradient(90deg, rgba(6, 163, 218, 0.03), rgba(104, 164, 196, 0.03));
    box-shadow: 0 6px 20px rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.3);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    min-height: 70px; /* Taller question area */
    transition: all 0.3s ease;
    padding: 0 30px;
}

/* Question Content */
.question-content {
    display: flex;
    align-items: center;
    flex: 1;
}

/* FAQ Title */
.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #091e3e; /* Changed to blue for questions */
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 0; /* Removed padding since we don't have Q: prefix */
}

.faq-title::before {
    display: none; /* Remove Q: prefix */
}

.faq-question:hover .faq-title {
    color: #0480b8; /* Slightly darker blue on hover */
}

.faq-item.active .faq-title {
    color: #06a3da; /* Keep blue when active */
    font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
    color: #091e3e;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 163, 218, 0.08);
    border: 1px solid rgba(6, 163, 218, 0.1);
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(6, 163, 218, 0.3);
}

.faq-question:hover .faq-icon {
    background: rgba(6, 163, 218, 0.12);
    border-color: rgba(6, 163, 218, 0.15);
    transform: scale(1.05);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 30px;
    position: relative;
    line-height: 1.6;
    background: rgba(6, 163, 218, 0.02);
    border-top: 1px solid transparent;
}

.faq-answer::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #68a4c4, #06a3da);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 25px 30px;
    border-top: 1px solid rgba(6, 163, 218, 0.1);
}

.faq-item.active .faq-answer::before {
    opacity: 1;
}

.faq-answer p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 10px;
}

.faq-question:hover {
    transform: translateX(3px);
}

.faq-item.active .faq-question {
    transform: translateX(0);
}

/* FAQ Item Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-main-title {
        font-size: 2rem;
        padding-bottom: 12px;
    }
    
    .faq-main-title::after {
        width: 80px;
        height: 2.5px;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .faq-question {
        min-height: 65px;
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer::before {
        left: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 20px;
        max-height: 500px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .faq-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 10px;
    }
    
    .faq-main-title {
        font-size: 1.6rem;
        padding-bottom: 10px;
    }
    
    .faq-main-title::after {
        width: 60px;
        height: 2px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .faq-question {
        min-height: 60px;
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-answer::before {
        left: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 15px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* For larger screens */
@media (min-width: 1200px) {
    .faq-container {
        max-width: 900px;
    }
}

@media (min-width: 1400px) {
    .faq-container {
        max-width: 1000px;
    }
    
    .faq-item {
        margin-bottom: 18px;
    }
}