/* Service Pages Styling */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(0, 86, 179, 0.9) 100%), url('../images/banners/default-banner.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 150px 0 100px;
    margin-top: 0;
    position: relative;
}

.page-header.services-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/banners/services-banner.jpg');
    background-size: cover;
    background-position: center center;
}

.page-header.industries-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/banners/industries-banner.jpg');
    background-size: cover;
    background-position: center center;
}

.page-header.company-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/banners/company-banner.jpg');
    background-size: cover;
    background-position: center center;
}

.page-header.portfolio-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/banners/portfolio-banner.jpg');
    background-size: cover;
    background-position: center center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #00bcd4;
}

.breadcrumb-item.active {
    color: #00bcd4;
}

/* Service Details Section */
.service-details-section {
    padding: 80px 0;
}

.service-hero {
    margin-bottom: 50px;
}

.service-hero h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.service-hero .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Service Features */
.service-features {
    margin-bottom: 50px;
}

.service-features h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Technology Stack */
.technology-stack {
    margin-bottom: 50px;
}

.technology-stack h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.tech-categories {
    display: grid;
    gap: 30px;
}

.tech-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: white;
    color: #007bff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #007bff;
    color: white;
}

/* Development Process */
.development-process h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.process-steps {
    display: grid;
    gap: 25px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.sidebar-widget p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
}

.service-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-links li {
    border-bottom: 1px solid #e9ecef;
}

.service-links li:last-child {
    border-bottom: none;
}

.service-links a {
    display: block;
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.service-links a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-links a:hover {
    color: #007bff;
    padding-left: 25px;
}

.service-links a:hover:before {
    opacity: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
}

.feature-list i {
    color: #28a745;
    margin-right: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info i {
    color: #007bff;
    margin-right: 10px;
    width: 20px;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    color: white;
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.cta-section .btn-light {
    background: white;
    border: none;
    color: #007bff;
    font-weight: 600;
    padding: 12px 30px;
}

.cta-section .btn-light:hover {
    background: #f8f9fa;
    color: #0056b3;
}

/* Journey Page Styles */
.journey-section {
    padding: 80px 0;
}

.journey-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Timeline Styles */
.timeline-container {
    margin: 60px 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #007bff, #00bcd4);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: #007bff;
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 3px #007bff;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.timeline-year {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    color: #555;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.timeline-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Achievements Section */
.achievements-section {
    margin: 80px 0;
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 20px;
}

.achievements-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.achievement-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.achievement-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.achievement-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Vision Mission Section */
.vision-mission-section {
    margin: 60px 0;
}

/* Portfolio Page Styles */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-filter {
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 10px 20px;
    margin: 0 10px 10px 0;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #007bff;
    color: white;
}

.portfolio-grid {
    margin-top: 30px;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f8f9fa;
    color: #007bff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
}

.success-story {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.15);
}

.story-metric {
    margin-bottom: 20px;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-story h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.success-story p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Technologies Section */
.technologies-section {
    padding: 80px 0;
}

.tech-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.15);
}

.tech-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
}

.tech-item span {
    display: block;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Healthcare Page Specific */
.healthcare-benefits {
    margin: 50px 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 8px 0;
    color: #666;
}

.benefit-list i {
    color: #28a745;
    margin-right: 10px;
}

.healthcare-stats {
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.compliance-badge i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
}

.compliance-badge span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.vision-mission-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vision-mission-item:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
}

.vision-mission-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.vision-mission-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Product Hero Banners */
.hero-banner.product-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-banner.product-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-banner.product-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner.healthcare-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/healthcare-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-banner.hotel-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/hotel-booking-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-banner.education-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/education-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-banner.food-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/food-delivery-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-banner.ecommerce-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/ecommerce-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-banner.taxi-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/taxi-booking-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-banner.grocery-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/grocery-delivery-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-banner.ott-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/products/ott-app-hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: #007bff;
    border: 2px solid #007bff;
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.hero-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Fix Hero Banner Height Issues */
.hero-banner {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.min-vh-70 {
    min-height: 70vh;
}

/* Product Page Specific Styles */
.product-overview {
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    margin-bottom: 20px;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.features-section {
    padding: 80px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-item .feature-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefit-item {
    text-align: center;
    padding: 30px 15px;
}

.benefit-item .benefit-icon {
    margin-bottom: 20px;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.case-studies-section {
    padding: 80px 0;
}

.case-study-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.case-study-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.case-study-header h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.case-study-tag {
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.case-study-content {
    padding: 25px;
}

.case-study-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-study-metrics {
    display: flex;
    justify-content: space-around;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .breadcrumb-item {
        font-size: 1rem;
    }
    
    .service-details-section {
        padding: 60px 0;
    }
    
    .service-hero h2 {
        font-size: 1.6rem;
    }
    
    .tech-items {
        gap: 8px;
    }
    
    .tech-item {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .cta-section .text-right {
        text-align: center !important;
        margin-top: 20px;
    }
    
    /* Journey Page Responsive */
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item.right {
        left: 0%;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .vision-mission-item {
        margin-bottom: 30px;
    }

    .hero-banner.product-banner {
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .case-study-metrics {
        flex-direction: column;
        gap: 15px;
    }
} 

/* Hire Developer Pages Styles */
.hero-banner.ios-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/hire/ios-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.android-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/hire/android-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.react-native-banner {
    background: linear-gradient(135deg, rgba(97, 218, 251, 0.8) 0%, rgba(0, 172, 193, 0.8) 100%), url('../images/hire/react-native-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.php-banner {
    background: linear-gradient(135deg, rgba(120, 113, 208, 0.8) 0%, rgba(98, 84, 190, 0.8) 100%), url('../images/hire/php-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.fullstack-banner {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.8) 0%, rgba(244, 67, 54, 0.8) 100%), url('../images/hire/fullstack-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.ionic-banner {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.8) 0%, rgba(48, 63, 159, 0.8) 100%), url('../images/hire/ionic-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.flutter-banner {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(21, 101, 192, 0.8) 100%), url('../images/hire/flutter-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.angular-banner {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.8) 0%, rgba(211, 47, 47, 0.8) 100%), url('../images/hire/angular-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.reactjs-banner {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(21, 101, 192, 0.8) 100%), url('../images/hire/reactjs-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.html5-banner {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.8) 0%, rgba(245, 124, 0, 0.8) 100%), url('../images/hire/html5-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.vuejs-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/hire/vuejs-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.nodejs-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/hire/nodejs-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.laravel-banner {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.8) 0%, rgba(211, 47, 47, 0.8) 100%), url('../images/hire/laravel-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.dotnet-banner {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.8) 0%, rgba(81, 45, 168, 0.8) 100%), url('../images/hire/dotnet-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.python-banner {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.8) 0%, rgba(255, 160, 0, 0.8) 100%), url('../images/hire/python-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.wordpress-banner {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(21, 101, 192, 0.8) 100%), url('../images/hire/wordpress-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.magento-banner {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.8) 0%, rgba(244, 67, 54, 0.8) 100%), url('../images/hire/magento-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.oscommerce-banner {
    background: linear-gradient(135deg, rgba(96, 125, 139, 0.8) 0%, rgba(69, 90, 100, 0.8) 100%), url('../images/hire/oscommerce-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.sharepoint-banner {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(21, 101, 192, 0.8) 100%), url('../images/hire/sharepoint-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.mean-stack-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/hire/mean-stack-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.mern-stack-banner {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(21, 101, 192, 0.8) 100%), url('../images/hire/mern-stack-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.ai-banner {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.8) 0%, rgba(123, 31, 162, 0.8) 100%), url('../images/hire/ai-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.ml-banner {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.8) 0%, rgba(81, 45, 168, 0.8) 100%), url('../images/hire/ml-developers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.devops-banner {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.8) 0%, rgba(244, 67, 54, 0.8) 100%), url('../images/hire/devops-engineers-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.developer-overview {
    padding: 80px 0;
}

.skill-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.skill-item .skill-icon {
    text-align: center;
    margin-bottom: 20px;
}

.skill-item h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.skill-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-item ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.skill-item ul li:last-child {
    border-bottom: none;
}

.skill-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.hiring-models-section {
    padding: 80px 0;
}

.hiring-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.hiring-card.featured {
    border: 3px solid #007bff;
    transform: scale(1.05);
}

.hiring-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.hiring-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.hiring-card.featured .hiring-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.hiring-header h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
}

.pricing {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(10deg);
}

.hiring-content {
    padding: 30px;
}

.hiring-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hiring-content ul li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.hiring-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.hiring-content .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Developer specific colors */
.ios-banner .hero-content h1,
.android-banner .hero-content h1,
.react-native-banner .hero-content h1,
.php-banner .hero-content h1,
.fullstack-banner .hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Hire Pages */
@media (max-width: 768px) {
    .hiring-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
    
    .hiring-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .popular-badge {
        top: -5px;
        right: 10px;
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .pricing {
        font-size: 1.5rem;
    }
    
    .hiring-header h4 {
        font-size: 1.25rem;
    }
    
    .skill-item {
        margin-bottom: 20px;
    }
} 

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
        background-attachment: scroll !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
} 

/* Client Pages Styles */
.hero-banner.clients-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/clients/our-clients-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.industries-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/clients/industries-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.reviews-banner {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.8) 0%, rgba(123, 31, 162, 0.8) 100%), url('../images/clients/client-reviews-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

/* Client Stats Styles */
.client-stats {
    background: #f8f9fa;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Client Category Cards */
.client-category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.client-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.client-category-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.client-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.client-list li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.client-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author h5 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 15px;
}

/* Success Story Cards */
.success-story-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.story-header h4 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.industry-tag {
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.story-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
}

/* Industry Cards */
.industry-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.industry-solutions {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.industry-solutions li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.industry-solutions li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

/* Review Cards */
.review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-date {
    color: #666;
    font-size: 0.85rem;
}

.review-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author h5 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

.author-location {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
}

.author-location i {
    margin-right: 5px;
}

/* Category Review Cards */
.category-review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.category-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-header h4 {
    color: #333;
    margin: 0;
    font-weight: 600;
}

.category-rating {
    text-align: right;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    margin-right: 10px;
}

.review-count {
    color: #666;
    font-size: 0.85rem;
    margin-top: 10px;
    display: block;
}

/* Expertise Items */
.expertise-item {
    padding: 20px;
}

.expertise-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness for Client Pages */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .story-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-rating {
        text-align: left;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 30px 15px;
    }
    
    .client-category-card,
    .testimonial-card,
    .success-story-card,
    .industry-card,
    .review-card,
    .category-review-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
} 

/* Company Pages Styles */
.hero-banner.company-journey-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/company/our-journey-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.corporate-overview-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/company/corporate-overview-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.life-techchampp-banner {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.8) 0%, rgba(244, 67, 54, 0.8) 100%), url('../images/company/life-at-techchampp-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.our-expertise-banner {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.8) 0%, rgba(123, 31, 162, 0.8) 100%), url('../images/company/our-expertise-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.our-team-banner {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.8) 0%, rgba(255, 160, 0, 0.8) 100%), url('../images/company/our-team-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.awards-banner {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.8) 0%, rgba(81, 45, 168, 0.8) 100%), url('../images/company/awards-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.why-choose-banner {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.8) 0%, rgba(0, 121, 107, 0.8) 100%), url('../images/company/why-choose-us-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.work-ethics-banner {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.8) 0%, rgba(48, 63, 159, 0.8) 100%), url('../images/company/work-ethics-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.talent-network-banner {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(194, 24, 91, 0.8) 100%), url('../images/company/join-talent-network-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.work-with-us-banner {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.8) 0%, rgba(245, 124, 0, 0.8) 100%), url('../images/company/work-with-us-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.become-intern-banner {
    background: linear-gradient(135deg, rgba(96, 125, 139, 0.8) 0%, rgba(69, 90, 100, 0.8) 100%), url('../images/company/become-intern-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.success-stories-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/company/success-stories-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.employees-speak-banner {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.8) 0%, rgba(21, 101, 192, 0.8) 100%), url('../images/company/employees-speak-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.ceo-message-banner {
    background: linear-gradient(135deg, rgba(121, 85, 72, 0.8) 0%, rgba(93, 64, 55, 0.8) 100%), url('../images/company/ceo-message-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.board-directors-banner {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.8) 0%, rgba(117, 117, 117, 0.8) 100%), url('../images/company/board-directors-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.company-registration-banner {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%), url('../images/company/company-registration-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.become-partner-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%), url('../images/company/become-partner-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-banner.blog-banner {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.8) 0%, rgba(244, 67, 54, 0.8) 100%), url('../images/company/blog-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

/* Journey Timeline Styles */
.journey-timeline {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #007bff, #28a745);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: #007bff;
    border: 4px solid white;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-year {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content ul li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.timeline-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Achievement Cards */
.achievement-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Vision & Mission Cards */
.vision-card,
.mission-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.vision-card {
    border-top: 4px solid #007bff;
}

.mission-card {
    border-top: 4px solid #28a745;
}

.vision-card h3,
.mission-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.vision-card p,
.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Main Content Section */
.main-content {
    padding: 80px 0;
}

/* Benefits Section */
.benefit-item {
    padding: 20px;
    text-align: center;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness for Company Pages */
@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
        left: 0 !important;
    }
    
    .timeline-item::after {
        left: 10px !important;
    }
    
    .timeline-year {
        left: 60px;
        top: 20px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .vision-card,
    .mission-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-year {
        left: 50px;
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .timeline-content {
        padding: 20px;
        margin-left: 10px;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-card {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
} 