/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
    margin-top: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-header {
    margin-top: 0 !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* White header styles */
.main-header.header-white {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.header-white .custom-nav .nav-list li a.menu-links {
    color: #050748;
}

.active-dark .main-header.header-white {
    background-color: #151515;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-carousel .item {
    height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hire-developer/hire-dev-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Dark mode overlay for background */
.active-dark .hero-background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.custom-breadcrumb {
    margin-bottom: 20px;
}

.custom-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.custom-breadcrumb ul li {
    color: #fff;
    font-size: 16px;
}

.custom-breadcrumb ul li:not(:last-child):after {
    content: "•";
    margin: 0 10px;
    color: #fff;
}

.custom-breadcrumb ul li a {
    color: #fff;
    text-decoration: none;
}

.hero-content h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content .lead {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.stats-wrapper {
    margin-top: 30px;
}

.stats-box {
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.stats-box h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.stats-box p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Dark mode styles */
.active-dark .hero-content h1,
.active-dark .hero-content .lead,
.active-dark .custom-breadcrumb ul li,
.active-dark .custom-breadcrumb ul li a,
.active-dark .stats-box h3,
.active-dark .stats-box p {
    color: #e6e6e6;
}

.active-dark .hero-card {
    background: rgba(25, 25, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.active-dark .hero-card h4 {
    color: #e6e6e6;
}

.active-dark .hero-card p {
    color: #a2a2a2;
}

.active-dark .tech-badge {
    background: rgba(219, 45, 60, 0.15);
    color: #e6e6e6;
}

/* Company Carousel Styles */
.company-carousel-section {
    padding: 50px 0;
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    display: block;
}

.company-logos-carousel {
    display: block;
    width: 100%;
    position: relative;
}

.company-logo-item {
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
}

.company-logo-item img {
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.company-logo-item:hover img {
    transform: scale(1.1);
}

.owl-carousel {
    display: block;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Card Styles */
.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background: rgba(219, 45, 60, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Navigation */
.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.hero-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    color: #fff !important;
    font-size: 24px !important;
    transition: all 0.3s ease;
}

.hero-carousel .owl-nav button:hover {
    background: rgba(219, 45, 60, 0.9) !important;
}

.hero-carousel .owl-nav .owl-prev {
    left: 20px;
}

.hero-carousel .owl-nav .owl-next {
    right: 20px;
}

/* Carousel Dots */
.hero-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.hero-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
}

.hero-carousel .owl-dots .owl-dot.active {
    background: #DB2D3C;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 75vh;
    }

    .hero-carousel .item {
        height: auto;
        min-height: 75vh;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 36px;
        text-align: center;
    }

    .hero-content .lead {
        text-align: center;
    }

    .stats-box {
        text-align: center;
    }

    .hero-content-wrapper .col-lg-6:last-child {
        margin-top: 40px;
    }

    .custom-breadcrumb {
        justify-content: center;
    }

    .custom-breadcrumb ul {
        justify-content: center;
    }

    .hero-card {
        padding: 30px;
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 90px 0 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content .lead {
        font-size: 16px;
    }

    .stats-box h3 {
        font-size: 30px;
    }

    .stats-box p {
        font-size: 14px;
    }

    .hero-card {
        padding: 25px;
    }
    
    .tech-stack {
        justify-content: center;
    }
}

/* Filler Section Styles */
.filler-section {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.active-dark .filler-section {
    background: #151515;
}

.filler-section .common-heading {
    padding-right: 20px;
}

.filler-section .common-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.active-dark .filler-section .common-heading h2 {
    color: #e6e6e6;
}

.filler-section .btn-main {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    background: #DB2D3C;
    color: #fff;
    border-radius: 100px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filler-section .btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(219, 45, 60, 0.2);
}

.filler-text {
    padding-left: 30px;
    border-left: 1px solid #e6e6e6;
}

.active-dark .filler-text {
    border-left: 1px solid #2b2b2b;
}

.filler-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
    color: #6a6a8e;
}

.active-dark .filler-text p {
    color: #a2a2a2;
}

/* Horizontal Line Styles */
hr {
    border: none;
    border-top: 1px solid #ccc;
    width: 100%;
    margin: 0;
    padding: 0;
}

.active-dark hr {
    border-top: 1px solid #2b2b2b;
}

@media (max-width: 991px) {
    .filler-section {
        padding: 60px 0;
    }

    .filler-section .common-heading {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .filler-section .common-heading h2 {
        font-size: 32px;
    }

    .filler-text {
        padding-left: 0;
        border-left: none;
    }

    .filler-text p {
        text-align: center;
    }
} 

.pricing-section {
    padding: 80px 0;
    background-color: #FCFCFC;
}

.active-dark .pricing-section {
    background-color: #151515;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-heading h2 {
    font-style: bold;
    font-weight: 700;
    margin-bottom: 20px;
}

.active-dark .pricing-heading h2 {
    color: #e6e6e6;
}

.pricing-heading p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.active-dark .pricing-heading p {
    color: #a2a2a2;
}

.pricecard-section {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricecard { 
    background-color: #FFFFFF;
    border: none; 
    border-radius: 20px; 
    padding: 40px; 
    width: 100%; 
    max-width: 350px; 
    min-height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
    transition: all 0.3s ease;
}

.active-dark .pricecard {
    background-color: #202020;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricecard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.price-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.active-dark .price-header h3 {
    color: #e6e6e6;
}

.price-info {
    margin-bottom: 20px;
}

.starting-text {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px 0;
}

.active-dark .starting-text {
    color: #a2a2a2;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount .amount {
    font-size: 36px;
    font-weight: 600;
    color: #4169E1;
}

.price-amount .period {
    font-size: 16px;
    color: #666;
}

.active-dark .price-amount .period {
    color: #a2a2a2;
}

.price-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

.active-dark .price-description {
    color: #a2a2a2;
}

.price-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hire-btn {
    background: #5c6bc0;
    color: white;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hire-btn:hover {
    background: #5379F6;
    transform: translateY(-2px);
    color: white;
}

.hire-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hire-btn:hover i {
    transform: translateX(5px);
}

.nda-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    text-align: center;
}

.active-dark .nda-text {
    color: #a2a2a2;
}

.devleopers-list-section {
    background-color: #FCFCFC;
    padding: 80px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.active-dark .devleopers-list-section {
    background-color: #151515; /* Dark mode background */
}

.developers-heading {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.developers-heading-left {
    flex: 0 0 60%;
    max-width: 60%;
}

.developers-heading-left h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    color: #333; /* Default text color */
}

.active-dark .developers-heading-left h2 {
    color: #e6e6e6; /* Dark mode text color */
}

.developers-heading-right {
    flex: 0 0 40%;
    max-width: 40%;
}

.developers-heading-right p {
    width: 400px;
    font-size: 16px;
    line-height: 1.7;
    color: #6a6a8e; /* Default text color */
    margin: 0;
}

.active-dark .developers-heading-right p {
    color: #a2a2a2; /* Dark mode text color */
}

/* Responsive styles */
@media (max-width: 991px) {
    .devleopers-list-section {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .developers-heading {
        flex-direction: column;
        gap: 25px;
    }

    .developers-heading-left,
    .developers-heading-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .developers-heading-left h2 {
        font-size: 28px;
        text-align: left;
        line-height: 1.4;
    }

    .developers-heading-right p {
        text-align: left;
        font-size: 15px;
        line-height: 1.6;
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .devleopers-list-section {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .developers-heading {
        gap: 20px;
    }

    .developers-heading-left h2 {
        font-size: 24px;
        line-height: 1.35;
        padding: 0 10px;
    }

    .developers-heading-right p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Developer Type Section Styles */
.devtype {
    padding: 0 120px 80px;
    background-color: #FCFCFC;
}

.active-dark .devtype {
    background-color: #151515;
}

.devtype-heading {
    text-align: left;
    margin-bottom: 20px;
}

.devtype-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.active-dark .devtype-heading h2 {
    color: #e6e6e6;
}

.devtype-subheading {
    text-align: left;
    margin-bottom: 50px;
}

.devtype-subheading p {
    font-size: 16px;
    color: #6a6a8e;
    max-width: 800px;
    margin: 0;
    line-height: 1.6;
}

.active-dark .devtype-subheading p {
    color: #a2a2a2;
}

.devtype-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.devtype-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.active-dark .devtype-card {
    background: #202020;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.devtype-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.devtype-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.devtype-card-header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.devtype-card-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.active-dark .devtype-card-header h4 {
    color: #e6e6e6;
}

.devtype-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6a6a8e;
    margin-bottom: 25px;
    min-height: 96px;
}

.active-dark .devtype-card-description {
    color: #a2a2a2;
}

.devtype-card-price-section {
    font-size: 16px;
    font-weight: 600;
    color: #4169E1;
    margin-bottom: 25px;
}

.active-dark .devtype-card-price-section {
    color: #5379F6;
}

.devtype-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.devtype-card-footer-left {
    font-size: 14px;
    color: #6a6a8e;
    line-height: 1.4;
    width: 60%; /* Restrict width to 60% of total width of card */
}

.active-dark .devtype-card-footer-left {
    color: #a2a2a2;
}

.devtype-card-footer-left span {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    display: inline-block;
}

.active-dark .devtype-card-footer-left span {
    color: #e6e6e6;
}

/* Responsive styles for devtype section */
@media (max-width: 1200px) {
    .devtype {
        padding: 0 60px 60px;
    }
    
    .devtype-cards {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .devtype-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .devtype {
        padding: 0 20px 40px;
    }
    
    .devtype-heading h2 {
        font-size: 28px;
    }
    
    .devtype-subheading p {
        font-size: 15px;
    }
    
    .devtype-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .devtype-card {
        padding: 25px;
    }
    
    .devtype-card-description {
        min-height: auto;
    }
}

/* Leverage Talent Section Styles */
.leverage-talent-section {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding: 80px 0;
}

.active-dark .leverage-talent-section {
    background-color: #151515;
    border-color: #2b2b2b;
}

.leverage-talent-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.leverage-talent-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.leverage-talent-left {
    flex: 0 0 calc(33.333333% - 15px);
    max-width: calc(33.333333% - 15px);
    border-right: 1px solid #dee2e6;
}

.active-dark .leverage-talent-left {
    border-color: #2b2b2b;
}

.leverage-talent-content {
    padding: 60px 40px;
    height: 100%;
    position: relative;
}

.leverage-talent-sticky {
    position: sticky;
    top: 120px;
}

.leverage-talent-sticky h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.active-dark .leverage-talent-sticky h2 {
    color: #e6e6e6;
}

.bottom-line {
    display: block;
    width: 60px;
    height: 4px;
    background-color: #DB2D3C;
    margin: 25px 0;
}

.bottom-line-big {
    width: 100px;
    height: 4px;
    background: #DB2D3C;
    display: block;
    margin: 20px auto;
    position: relative;
}

.bottom-line-big:after {
    content: '';
    position: absolute;
    left: 35%;
    right: 35%;
    height: 4px;
    background: #DB2D3C;
    top: -8px;
    border-radius: 2px;
}

.active-dark .bottom-line-big,
.active-dark .bottom-line-big:after {
    background: #DB2D3C;
    opacity: 0.9;
}

.leverage-talent-sticky p {
    font-size: 18px;
    line-height: 1.7;
    color: #6a6a8e;
    margin: 0;
    font-weight: 400;
}

.active-dark .leverage-talent-sticky p {
    color: #a2a2a2;
}

.leverage-talent-right {
    flex: 0 0 calc(66.666667% - 15px);
    max-width: calc(66.666667% - 15px);
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.talent-card {
    padding: 50px;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

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

.active-dark .talent-card {
    border-color: #2b2b2b;
    background: #202020;
}

.active-dark .talent-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.talent-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
}

.talent-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 20px;
    color: #333;
    letter-spacing: -0.01em;
}

.active-dark .talent-card h3 {
    color: #e6e6e6;
}

.talent-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #6a6a8e;
    margin: 0;
    font-weight: 400;
}

.active-dark .talent-card p {
    color: #a2a2a2;
}

@media (max-width: 1400px) {
    .leverage-talent-container {
        max-width: 1200px;
    }
    
    .leverage-talent-sticky h2 {
        font-size: 38px;
    }
    
    .talent-card {
        padding: 40px;
    }
}

@media (max-width: 1200px) {
    .leverage-talent-content {
        padding: 40px 30px;
    }
    
    .talent-card {
        padding: 35px;
    }
    
    .leverage-talent-sticky h2 {
        font-size: 34px;
    }
    
    .talent-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .leverage-talent-left,
    .leverage-talent-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .leverage-talent-left {
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }
    
    .active-dark .leverage-talent-left {
        border-color: #2b2b2b;
    }
    
    .leverage-talent-content {
        padding: 40px 20px;
    }
    
    .leverage-talent-sticky {
        position: static;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .bottom-line {
        margin: 25px auto;
    }
    
    .talent-grid {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .leverage-talent-section {
        padding: 40px 0;
    }
    
    .leverage-talent-container {
        padding: 0 20px;
    }
    
    .leverage-talent-sticky h2 {
        font-size: 32px;
    }
    
    .leverage-talent-sticky p {
        font-size: 16px;
    }
    
    .talent-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .talent-card {
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .talent-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .active-dark .talent-card {
        background: transparent;
        border: none;
    }
    
    .talent-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .talent-card-content {
        flex: 1;
    }
    
    .talent-card h3 {
        font-size: 22px;
        margin: 0 0 10px;
    }
    
    .talent-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    .leverage-talent-left {
        border-bottom: 1px solid rgba(0,0,0,0.1);
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .active-dark .leverage-talent-left {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

/* On Demand Teams Section */
.on-demand-teams {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.active-dark .on-demand-teams {
    background-color: #101010;
}

.on-demand-teams .title-h4 {
    font-size: 42px;
    line-height: 52px;
    color: #050748;
    font-weight: 600;
    margin-bottom: 20px;
}

.active-dark .on-demand-teams .title-h4 {
    color: #fff;
}

.on-demand-teams .desc {
    font-size: 17px;
    line-height: 28px;
    color: #454545;
}

.active-dark .on-demand-teams .desc {
    color: #fff;
}

.process-flow {
    position: relative;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #DB2D3C 0%, #DB2D3C 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.active-dark .process-line {
    background: linear-gradient(90deg, #DB2D3C 0%, #DB2D3C 100%);
    opacity: 0.8;
}

.process-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.process-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 20px;
    text-align: center;
}

.process-pin {
    position: relative;
    padding-top: 100px;
}

.pin-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.active-dark .pin-icon {
    background: #1d1d1d;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.pin-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.pin-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.active-dark .pin-content {
    background: #1d1d1d;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.pin-content .title-h6 {
    font-size: 22px;
    line-height: 32px;
    color: #050748;
    font-weight: 600;
    margin-bottom: 15px;
}

.active-dark .pin-content .title-h6 {
    color: #fff;
}

@media (max-width: 991px) {
    .process-items {
        flex-direction: column;
        align-items: center;
    }

    .process-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 60px;
    }

    .process-item:last-child {
        margin-bottom: 0;
    }

    .process-line {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .pin-content {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .on-demand-teams {
        padding: 40px 0;
    }

    .process-flow {
        padding: 20px 0;
    }

    .pin-icon {
        width: 60px;
        height: 60px;
    }

    .pin-icon img {
        width: 30px;
        height: 30px;
    }

    .pin-content {
        padding: 20px;
    }

    .pin-content .title-h6 {
        font-size: 18px;
        line-height: 28px;
    }

    .process-item {
        margin-bottom: 40px;
    }
}

/* Highly Skilled Developer Section */
.highly-skilled-developer {
    padding: 80px 0;
    background-color: #fff;
}

.highly-skilled-developer .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.active-dark .highly-skilled-developer {
    background-color: #101010;
}

.highly-skilled-developer .title-h4 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #050748;
}

.active-dark .highly-skilled-developer .title-h4 {
    color: #fff;
}

.bg-blue-box {
    background: linear-gradient(135deg, #DB2D3C 0%, #ff4757 100%);
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 8px rgba(219, 45, 60, 0.2);
    position: sticky;
    left: 0;
    z-index: 1;
}

.bg-light-box {
    background-color: #f8f9fa;
    border-radius: 0 8px 8px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #DB2D3C #f8f9fa;
    padding-bottom: 5px;
    width: calc(100% - 250px);
}

.bg-light-box::-webkit-scrollbar {
    height: 6px;
}

.bg-light-box::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.bg-light-box::-webkit-scrollbar-thumb {
    background: #DB2D3C;
    border-radius: 3px;
}

.active-dark .bg-light-box {
    background-color: #1d1d1d;
    scrollbar-color: #DB2D3C #1d1d1d;
}

.active-dark .bg-light-box::-webkit-scrollbar-track {
    background: #1d1d1d;
}

.bg-light-box span {
    padding: 8px 16px;
    background-color: #fff;
    border-radius: 6px;
    font-size: 14px;
    color: #050748;
    display: inline-block;
    margin: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.active-dark .bg-light-box span {
    background-color: #1d1d1d;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bg-light-box span:hover {
    background-color: #DB2D3C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(219, 45, 60, 0.3);
    border-color: transparent;
}

.c-white {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.font-w-500 {
    font-weight: 500;
}

.title-h6 {
    font-size: 18px;
    line-height: 1.4;
}

.d-flex.mb-4 {
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.active-dark .d-flex.mb-4 {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .bg-blue-box {
        min-width: 200px;
        border-radius: 8px 8px 0 0;
        position: relative;
    }
    
    .bg-light-box {
        border-radius: 0 0 8px 8px;
        width: 100%;
    }
    
    .highly-skilled-developer .title-h4 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .highly-skilled-developer {
        padding: 50px 0;
    }
    
    .highly-skilled-developer .title-h4 {
        font-size: 24px;
    }
    
    .bg-blue-box {
        min-width: 180px;
    }
    
    .bg-light-box span {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Business Types Section */
.business-types-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.active-dark .business-types-section {
    background-color: #1d1d1d;
}

.business-types-section h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
}

.active-dark .business-types-section h2 {
    color: #ffffff;
}

.business-types-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.active-dark .business-types-section p {
    color: #adadad;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.business-card {
    padding: 35px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    color: #fff;
}

.business-card:hover {
    transform: translateY(-10px);
}

.business-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.business-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.business-card.startups {
    background: linear-gradient(135deg, #DB2D3C 0%, #ef4b58 100%);
}

.business-card.mid-size {
    background: linear-gradient(135deg, #2e2a8f 0%, #4b47b1 100%);
}

.business-card.enterprise {
    background: linear-gradient(135deg, #1d1d1d 0%, #404040 100%);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .business-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .business-types-section h2 {
        font-size: 28px;
    }
    
    .business-types-section p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .business-cards {
        grid-template-columns: 1fr;
    }
    
    .business-types-section {
        padding: 60px 0;
    }
    
    .business-types-section h2 {
        font-size: 24px;
    }
    
    .business-card {
        padding: 25px;
    }
    
    .business-card h3 {
        font-size: 20px;
    }
    
    .business-card p {
        font-size: 14px;
    }
}

/* Why Hire Section Styles */
.why-hire-sect {
    padding-top: 80px;
    padding-bottom: 80px;
}

.why-hire-sect .bg-light-blue {
    background-color: #f5f6ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-hire-sect .bg-light-pink {
    background-color: #fff5f5;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.why-hire-sect .title-h4 {
    font-size: 28px;
    line-height: 38px;
    color: #050748;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-hire-sect .desc {
    font-size: 17px;
    line-height: 28px;
    color: #6a6a8e;
}

.why-hire-sect ul li {
    font-size: 16px;
    line-height: 32px;
    color: #6a6a8e;
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
}

.why-hire-sect ul li:before {
    content: "";
    background: url('../images/icons/check.svg') no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 5px;
    background-size: contain;
}

/* Dark Mode Styles */
.active-dark .why-hire-sect .bg-light-blue {
    background-color: #1d1d3c;
}

.active-dark .why-hire-sect .bg-light-pink {
    background-color: #1d1d3c;
}

.active-dark .why-hire-sect .title-h4 {
    color: #ffffff;
}

.active-dark .why-hire-sect .desc,
.active-dark .why-hire-sect ul li {
    color: #a2a2a2;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .why-hire-sect .title-h4 {
        font-size: 24px;
        line-height: 34px;
    }
    
    .why-hire-sect .desc {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .why-hire-sect {
        padding-bottom: 40px;
    }
    
    .why-hire-sect .title-h4 {
        font-size: 22px;
        line-height: 32px;
    }
    
    .why-hire-sect ul li {
        font-size: 15px;
        line-height: 28px;
        padding-left: 30px;
    }
    
    .why-hire-sect ul li:before {
        width: 20px;
        height: 20px;
    }
}

/* Stats Showcase Section */
.stats-showcase {
    background-color: var(--white-color);
    padding: 80px 0;
}

.active-dark .stats-showcase {
    background-color: var(--dark-bg2);
}

.stats-showcase .title-h4 {
    font-size: 32px;
    line-height: 1.3;
    color: var(--black-color);
    margin-bottom: 20px;
}

.active-dark .stats-showcase .title-h4 {
    color: var(--white-color);
}

.stats-showcase .desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 40px;
}

.active-dark .stats-showcase .desc {
    color: var(--light-gray);
}

.stats-grid {
    margin: 0 -15px;
}

.stats-card {
    background: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.active-dark .stats-card {
    background: var(--dark-bg);
    border-color: var(--dark-border);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-content img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.stats-info {
    flex: 1;
}

.stats-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px;
}

.active-dark .stats-info h3 {
    color: var(--white-color);
}

.stats-info p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

.active-dark .stats-info p {
    color: var(--light-gray);
}

@media (max-width: 1200px) {
    .stats-showcase .title-h4 {
        font-size: 28px;
    }
    
    .stats-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .stats-showcase {
        padding: 60px 0;
    }
    
    .stats-showcase .title-h4 {
        font-size: 24px;
    }
    
    .stats-showcase .desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .stats-showcase {
        padding: 40px 0;
    }
    
    .stats-card {
        padding: 20px;
    }
    
    .stats-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stats-info h3 {
        font-size: 22px;
    }
    
    .stats-info p {
        font-size: 14px;
    }
}

/* Contact Header Styles */
.contact-header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99999;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-header.hide {
    transform: translateY(-100%);
}

/* Adjust main header position */
.main-header {
    top: 45px !important;
    transition: all 0.3s ease;
}

.main-header.header-scroll {
    top: 0 !important;
}

/* Dark mode styles for contact header */
.active-dark .contact-header {
    background-color: #101010;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.active-dark .contact-header a {
    color: #e6e6e6;
}

.active-dark .contact-header a:hover {
    color: #4a47a3;
}

/* Responsive adjustments for mobile */
@media (max-width: 991px) {
    .contact-header {
        display: none !important;
    }
    .main-header {
        top: 0 !important;
    }
}

