/* css of tech section on home page  start*/
#tech-stack-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

#tech-stack-section {
    isolation: isolate;
    /* Creates a new stacking context */
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: #2d3748;
    padding: 80px 20px;
    width: 100%;
}

#tech-stack-section .tech-container {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 50px 40px;
    margin: 0 auto;
}

#tech-stack-section .tech-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

#tech-stack-section .tech-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

#tech-stack-section .tech-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#tech-stack-section .tech-header::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

#tech-stack-section .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

#tech-stack-section .tech-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
}

#tech-stack-section .tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#tech-stack-section .tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#tech-stack-section .tech-card:hover::before {
    transform: scaleX(1);
}

#tech-stack-section .tech-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

#tech-stack-section .tech-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 12px;
    background: #f7fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#tech-stack-section .tech-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

#tech-stack-section .tech-desc {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

#tech-stack-section .tech-skill-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
}

#tech-stack-section .tech-skill-progress {
    height: 100%;
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Color classes for each tech */
#tech-stack-section .html-color {
    color: #e34f26;
}

#tech-stack-section .html-progress {
    background: linear-gradient(90deg, #e34f26, #f06529);
    width: 92%;
}

#tech-stack-section .css-color {
    color: #264de4;
}

#tech-stack-section .css-progress {
    background: linear-gradient(90deg, #264de4, #2965f1);
    width: 88%;
}

#tech-stack-section .js-color {
    color: #f0db4f;
}

#tech-stack-section .js-progress {
    background: linear-gradient(90deg, #f0db4f, #f7df1e);
    width: 85%;
}

#tech-stack-section .bootstrap-color {
    color: #7952b3;
}

#tech-stack-section .bootstrap-progress {
    background: linear-gradient(90deg, #7952b3, #563d7c);
    width: 83%;
}

#tech-stack-section .react-color {
    color: #61dafb;
}

#tech-stack-section .react-progress {
    background: linear-gradient(90deg, #61dafb, #00a3d7);
    width: 87%;
}

#tech-stack-section .vue-color {
    color: #41b883;
}

#tech-stack-section .vue-progress {
    background: linear-gradient(90deg, #41b883, #34495e);
    width: 79%;
}

#tech-stack-section .laravel-color {
    color: #ff2d20;
}

#tech-stack-section .laravel-progress {
    background: linear-gradient(90deg, #ff2d20, #f55247);
    width: 81%;
}

#tech-stack-section .node-color {
    color: #339933;
}

#tech-stack-section .node-progress {
    background: linear-gradient(90deg, #339933, #68a063);
    width: 86%;
}

#tech-stack-section .python-color {
    color: #3776ab;
}

#tech-stack-section .python-progress {
    background: linear-gradient(90deg, #3776ab, #306998);
    width: 90%;
}

#tech-stack-section .ai-color {
    color: #3a86ff;
}

#tech-stack-section .ai-progress {
    background: linear-gradient(90deg, #3a86ff, #3d5af1);
    width: 84%;
}

/* Animation for skill bars */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#tech-stack-section .tech-card {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

#tech-stack-section .tech-card:nth-child(1) {
    animation-delay: 0.1s;
}

#tech-stack-section .tech-card:nth-child(2) {
    animation-delay: 0.2s;
}

#tech-stack-section .tech-card:nth-child(3) {
    animation-delay: 0.3s;
}

#tech-stack-section .tech-card:nth-child(4) {
    animation-delay: 0.4s;
}

#tech-stack-section .tech-card:nth-child(5) {
    animation-delay: 0.5s;
}

#tech-stack-section .tech-card:nth-child(6) {
    animation-delay: 0.6s;
}

#tech-stack-section .tech-card:nth-child(7) {
    animation-delay: 0.7s;
}

#tech-stack-section .tech-card:nth-child(8) {
    animation-delay: 0.8s;
}

#tech-stack-section .tech-card:nth-child(9) {
    animation-delay: 0.9s;
}

#tech-stack-section .tech-card:nth-child(10) {
    animation-delay: 1.0s;
}

/* Responsive design */
@media (max-width: 1024px) {
    #tech-stack-section .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    #tech-stack-section .tech-container {
        padding: 35px 25px;
    }

    #tech-stack-section .tech-header h2 {
        font-size: 2.2rem;
    }

    #tech-stack-section .tech-header p {
        font-size: 1.1rem;
    }

    #tech-stack-section .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 20px;
    }

    #tech-stack-section .tech-card {
        padding: 25px 20px;
    }

    #tech-stack-section .tech-icon {
        font-size: 2.8rem;
        height: 70px;
    }

    #tech-stack-section .tech-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    #tech-stack-section {
        padding: 60px 15px;
    }

    #tech-stack-section .tech-container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    #tech-stack-section .tech-header {
        margin-bottom: 40px;
    }

    #tech-stack-section .tech-header h2 {
        font-size: 1.9rem;
    }

    #tech-stack-section .tech-header p {
        font-size: 1rem;
    }

    #tech-stack-section .tech-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #tech-stack-section .tech-card {
        padding: 20px;
    }

    #tech-stack-section .tech-icon {
        font-size: 2.5rem;
        height: 60px;
    }

    #tech-stack-section .tech-image {
        width: 50px;
        height: 50px;
    }

    #tech-stack-section .tech-name {
        font-size: 1.1rem;
    }

    #tech-stack-section .tech-desc {
        font-size: 0.9rem;
    }
}
/* css of tech section on home page  end */



/* css of  Beyond the Expected: Our Expertise section on home page  */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}


.services-section {
    padding: 5rem 1rem;
}



.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-icon {
    width: 80px;
    height: 80px;
}

.animated-icon circle,
.animated-icon polygon,
.animated-icon path,
.animated-icon line {
    stroke: var(--primary-color);
    stroke-linecap: round;
}

/* Hover Animations for Icons */
.service-card:hover .gear-outer {
    animation: spin 3s linear infinite;
    stroke: var(--secondary-color);
}

.service-card:hover .gear-inner {
    animation: spin 2s linear infinite reverse;
    stroke: var(--secondary-color);
}

.service-card:hover .rocket-body {
    animation: takeOff 1s ease-in-out;
    stroke: var(--secondary-color);
}

.service-card:hover .rocket-tail {
    animation: flicker 0.3s infinite alternate;
}

.service-card:hover .flame {
    animation: flicker 0.2s infinite alternate;
    stroke: #f59e0b;
}

.service-card:hover .pulse-outline {
    animation: pulse 2s infinite;
    stroke: var(--secondary-color);
}

.service-card:hover .pulse-line {
    animation: beat 2s infinite;
    stroke: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #6b7280;
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta-link:hover {
    transform: translateX(5px);
}

/* Keyframes for Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes takeOff {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes flicker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.6;
    }
}

@keyframes pulse {
    0% {
        stroke-width: 8;
        opacity: 1;
    }

    50% {
        stroke-width: 12;
        opacity: 0.7;
    }

    100% {
        stroke-width: 8;
        opacity: 1;
    }
}

@keyframes beat {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* css of  Beyond the Expected: Our Expertise section on home page end  */


/* case studies section  home page start  */
        


.case-studio-area {
    padding: 5rem 0;
}

.case-studio-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.case-studio-tabs {
    justify-content: center;
    margin-bottom: 3rem;
    border: none;
}

.case-studio-tabs .nav-item {
    margin: 0 0.5rem;
}

.case-studio-tabs .nav-link {
    color: #6b7280;
    font-weight: 500;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.case-studio-tabs .nav-link:hover,
.case-studio-tabs .nav-link.active {
    color: white;
    background: var(--primary-color);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.case-studio-body {
    gap: 2rem;
    align-items: stretch;
}

.case-studio-body .left {
    gap: 1.5rem;
    flex: 1;
}

.case-studio-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
}

.case-studio-img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.case-studio-img-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.case-studio-img-card:hover img {
    transform: scale(1.05);
}

.case-studio-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.case-studio-cat:hover {
    background: var(--accent-color);
}

.case-studio-contents {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.case-studio-contents:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.case-studio-contents h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--dark-color);
}

.case-studio-contents p {
    color: #6b7280;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.thm-btn{
    align-self: flex-start;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tthm-btn:hover {
    background: var(--accent-color);
    transform: rotate(45deg);
}

/* Animated Icons */
.animated-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.animated-icon .gear-outer,
.animated-icon .gear-inner {
    stroke: var(--primary-color);
    stroke-width: 5;
    fill: none;
    transition: all 0.5s ease;
}

.case-studio-contents:hover .gear-outer {
    animation: spin 3s linear infinite;
    stroke: var(--secondary-color);
}

.case-studio-contents:hover .gear-inner {
    animation: spin 2s linear infinite reverse;
    stroke: var(--secondary-color);
}

.animated-icon .rocket-body {
    stroke: var(--primary-color);
    stroke-width: 5;
    fill: none;
    transition: all 0.5s ease;
}

.animated-icon .rocket-tail {
    stroke: var(--primary-color);
    stroke-width: 3;
    transition: all 0.5s ease;
}

.case-studio-contents:hover .rocket-body {
    animation: takeOff 1.5s ease-in-out infinite;
    stroke: var(--accent-color);
}

.case-studio-contents:hover .rocket-tail {
    animation: flicker 0.3s infinite alternate;
    stroke: #f59e0b;
}

.animated-icon .pulse-circle {
    stroke: var(--primary-color);
    stroke-width: 5;
    fill: none;
    transition: all 0.5s ease;
}

.case-studio-contents:hover .pulse-circle {
    animation: pulse 2s infinite;
    stroke: var(--secondary-color);
}

.animated-icon .design-handle {
    stroke: var(--primary-color);
    stroke-width: 5;
    fill: none;
    transition: all 0.5s ease;
}

.animated-icon .design-brush {
    stroke: var(--primary-color);
    stroke-width: 3;
    transition: all 0.5s ease;
}

.case-studio-contents:hover .design-handle {
    stroke: var(--accent-color);
}

.case-studio-contents:hover .design-brush {
    animation: paint 2s infinite;
    stroke: var(--secondary-color);
}

.animated-icon .support-gear {
    stroke: var(--primary-color);
    stroke-width: 5;
    fill: none;
    transition: all 0.5s ease;
}

.animated-icon .support-wrench {
    stroke: var(--primary-color);
    stroke-width: 3;
    transition: all 0.5s ease;
}

.case-studio-contents:hover .support-gear {
    animation: spin 3s linear infinite;
    stroke: var(--accent-color);
}

.case-studio-contents:hover .support-wrench {
    animation: adjust 2s infinite;
    stroke: var(--secondary-color);
}

/* Animation Keyframes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes takeOff {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes flicker {
    from { opacity: 1; }
    to { opacity: 0.6; }
}

@keyframes pulse {
    0% { stroke-width: 5; opacity: 1; }
    50% { stroke-width: 8; opacity: 0.7; }
    100% { stroke-width: 5; opacity: 1; }
}

@keyframes paint {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@keyframes adjust {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .case-studio-body {
        flex-direction: column;
    }
    
    .case-studio-body .left {
        flex-direction: column;
    }
    
    .case-studio-img-card img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .case-studio-tabs .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* case studies section  home page end  */