:root {
    --primary-color: #F45927;
    --secondary-color: #45187E;
    --accent-color: #FFDCB0;
    --text-color: #333333;
    --light-bg: #F5F5F5;
    --white: #ffffff;
    --border-radius: 32px;
    --transition: all 0.3s ease;
}

/* Typography */
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-color);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-color);
    max-width: 48rem;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Custom Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

/* Custom Components */
.rounded-custom {
    border-radius: var(--border-radius) !important;
}

.btn-custom-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-custom-primary:hover {
    background-color: #d44a1f;
    border-color: #d44a1f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 89, 39, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    padding: 80px 60px;
}

.hero-image img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

/* Stats Card */
.stats-card {
    background-color: var(--light-bg) !important;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-color);
    margin: 0;
}

/* Excellence Badge */
.excellence-badge .badge-content {
    transition: var(--transition);
}

.excellence-badge .badge-content:hover {
    background-color: rgba(244, 89, 39, 0.2) !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.02);
}

.badge-icon span {
    font-size: 2.5rem;
    display: inline-block;
    transition: var(--transition);
}

.excellence-badge:hover .badge-icon span {
    transform: scale(1.2) rotate(10deg);
}

/* Introduction Image */
.intro-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.intro-image {
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.intro-image-container:hover .intro-image {
    transform: scale(1.05);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius) !important;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(244, 89, 39, 0.2);
}

.service-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
}

.service-card:hover .service-number {
    background-color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(244, 89, 39, 0.4);
}

/* Case Study Cards */
.case-study-card {
    transition: var(--transition);
    overflow: hidden;
}

.case-study-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-study-primary {
    background: linear-gradient(135deg, rgba(244, 89, 39, 0.1), rgba(69, 24, 126, 0.1));
}

.case-study-secondary {
    background: linear-gradient(135deg, rgba(69, 24, 126, 0.1), rgba(244, 89, 39, 0.1));
}

.case-study-card .card-img-top img {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .card-img-top img {
    transform: scale(1.05);
}

/* Tech Stack Cards - New Design */
.tech-stack-card-new {
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.tech-stack-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tech-header-orange {
    background: linear-gradient(135deg, #F45927 0%, #FF6B42 100%);
}

.tech-header-purple {
    background: linear-gradient(135deg, #451A7E 0%, #5D2A9E 100%);
}

.tech-item-row {
    transition: var(--transition);
    min-height: 60px;
}

.tech-item-row:hover {
    background-color: #f8f9fa;
}

.tech-item-row:last-child {
    border-bottom: none !important;
}

.tech-item-icon {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}

.tech-item-icon img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
}

.tech-item-name {
    font-weight: 500;
    color: #374151;
}

.tech-item-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-orange {
    background-color: #F45927;
}

.dot-purple {
    background-color: #451A7E;
}

.tech-footer {
    color: #6b7280;
}

/* Legacy tech stack styles (keeping for compatibility) */
.tech-stack-card {
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.tech-stack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tech-stack-header {
    padding: 16px 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tech-stack-header.primary {
    background-color: var(--primary-color);
    border-color: rgba(244, 89, 39, 0.3);
}

.tech-stack-header.secondary {
    background-color: var(--secondary-color);
    border-color: rgba(69, 24, 126, 0.3);
}

.tech-stack-card:hover .tech-stack-header.primary {
    border-color: var(--primary-color);
}

.tech-stack-card:hover .tech-stack-header.secondary {
    border-color: var(--secondary-color);
}

.tech-item {
    padding: 16px 20px;
    transition: var(--transition);
    border-left: 2px solid;
    border-right: 2px solid;
}

.tech-item:hover {
    background-color: rgba(248, 249, 250, 0.5);
    transform: translateX(2px);
}

.tech-logo {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: var(--transition);
}

.tech-item:hover .tech-logo {
    border-color: #dee2e6;
    transform: scale(1.1);
}

.tech-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.tech-item:hover .tech-dot {
    transform: scale(1.25);
}

/* Benefits Cards */
.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius) !important;
    transition: var(--transition);
    height: 100%;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* border: 1px solid black; */

}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #F45927;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary-color);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(69, 24, 126, 0.4);
}

/* Solutions Cards */
.solution-card {
    background: var(--white);
    border-radius: var(--border-radius) !important;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #F45927;
}

.solution-card:hover h3 {
    color: #F45927;
}

.solution-card.primary:hover {
    border-color: #F45927;
}

.solution-card.secondary:hover {
    border-color: #F45927;
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.solution-icon.primary {
    background-color: var(--primary-color);
}

.solution-icon.secondary {
    background-color: var(--secondary-color);
}

.solution-card:hover .solution-icon {
    transform: scale(1.15) rotate(10deg);
}

.solution-card:hover .solution-icon.primary {
    background-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(244, 89, 39, 0.5);
}

.solution-card:hover .solution-icon.secondary {
    background-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(69, 24, 126, 0.5);
}

/* Industry Cards */
.industry-card {
    background: var(--white);
    border-radius: var(--border-radius) !important;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    transition: var(--transition);
    margin: 0 auto 16px;
}

.industry-card:hover .industry-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.15) rotate(8deg);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--primary-color));
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 48px;
}

.process-step:nth-child(even) {
    text-align: right;
}

.process-node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.process-node.primary {
    background-color: var(--primary-color);
}

.process-node.secondary {
    background-color: var(--secondary-color);
}

.process-node:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.process-node.primary:hover {
    box-shadow: 0 12px 30px rgba(244, 89, 39, 0.6);
}

.process-node.secondary:hover {
    box-shadow: 0 12px 30px rgba(69, 24, 126, 0.6);
}

.process-card {
    background: var(--white);
    border-radius: var(--border-radius) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.process-card.primary:hover {
    border-color: var(--primary-color);
}

.process-card.secondary:hover {
    border-color: var(--secondary-color);
}

.process-step:nth-child(even) .process-card {
    margin-left: auto;
    padding-right: 64px;
}

.process-step:nth-child(odd) .process-card {
    margin-right: auto;
    padding-left: 64px;
}

.connecting-line {
    position: absolute;
    top: 50%;
    width: 64px;
    height: 4px;
    transform: translateY(-50%);
}

.process-step:nth-child(even) .connecting-line {
    right: 0;
}

.process-step:nth-child(odd) .connecting-line {
    left: 0;
}

.connecting-line.primary {
    background-color: var(--primary-color);
}

.connecting-line.secondary {
    background-color: var(--secondary-color);
}

/* Mobile Process Timeline */
@media (max-width: 991.98px) {
    .process-timeline {
        max-width: 28rem;
    }
    
    .timeline-line {
        left: 32px;
    }
    
    .process-node {
        left: 32px;
        width: 64px;
        height: 64px;
        font-size: 1.125rem;
    }
    
    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left !important;
    }
    
    .process-step:nth-child(even) {
        text-align: left !important;
    }
    
    .process-card {
        margin-left: 96px !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex: 1;
    }
    
    .connecting-line {
        display: none;
    }
}

/* CTA Gradient */
.cta-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* USP Cards */
.usp-card {
    border-radius: 24px !important;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.usp-card.primary {
    background-color: var(--primary-color);
}

.usp-card.secondary {
    background-color: var(--secondary-color);
}

.usp-card:nth-child(even) {
    margin-left: auto;
}

.usp-number {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.usp-card:hover .usp-number {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile USP Layout */
@media (max-width: 991.98px) {
    .usp-card:nth-child(even) {
        margin-left: 0;
    }
}

/* Clutch Card */
.clutch-card {
    max-width: 300px;
}

.stars {
    font-size: 1.25rem;
}

/* FAQ */
.accordion-button {
    background-color: var(--white);
    border: none;
    border-radius: var(--border-radius) !important;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-color);
    padding: 24px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--text-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-item {
    background-color: var(--white);
    border: none;
    border-radius: var(--border-radius) !important;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-body {
    padding: 0 24px 24px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
    
    .py-5 {
        padding: 3rem 0 !important;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
}
