/* Custom Styles for Activities and Careers Pages */

/* Page Header */
.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header .ot-heading span {
    color: #689537;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.page-header .main-heading {
    color: #2c3e50;
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
}

.page-header p {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
}

/* Event Meta */
.event-meta {
    margin-top: 15px;
    font-size: 13px;
    color: #6c757d;
}

.event-meta span {
    display: block;
    margin-bottom: 5px;
}

.event-meta i {
    margin-right: 8px;
    color: #689537;
}

/* Activity Cards */
.activity-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

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

.activity-image {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-content {
    padding: 25px;
}

.activity-content h4 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.activity-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #689537;
}

.stat-item .label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
}

/* Innovation Stats */
.innovation-stats {
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.stat-box .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #689537;
}

.stat-box .label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
}

/* Innovation Showcase */
.innovation-showcase {
    position: relative;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
}

.showcase-overlay h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.showcase-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Event Cards */
.event-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

/* Modern Event Cards */
.event-card-modern {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: #689537;
}

/* Event Image Section */
.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.event-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.event-badge {
    background: rgba(255,255,255,0.95);
    color: #689537;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Event Header Mini */
.event-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.event-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #689537 0%, #5a7a2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(104, 149, 55, 0.3);
}

.event-icon span {
    font-size: 22px;
    color: white;
}

.event-date {
    background: #f8f9fa;
    color: #689537;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e9ecef;
}

.event-content {
    padding: 30px;
}

.event-content h5 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-meta-modern {
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6c757d;
}

.meta-item i {
    width: 20px;
    margin-right: 12px;
    color: #689537;
    font-size: 16px;
}

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

.tag {
    background: #f8f9fa;
    color: #689537;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #689537;
    color: white;
    border-color: #689537;
}

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

.event-date {
    background: #689537;
    color: white;
    text-align: center;
    padding: 20px;
}

.event-date .day {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    padding: 25px;
}

.event-details h5 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-details p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-register {
    display: inline-block;
    background: #689537;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-register:hover {
    background: #5a7a2e;
    color: white;
    text-decoration: none;
}

/* Culture Features */
.culture-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    font-size: 20px;
    margin-right: 15px;
    color: #689537;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
}

/* Culture Gallery */
.culture-gallery img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.culture-gallery img:hover {
    transform: scale(1.05);
}

/* Job Cards */
.job-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

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

.job-header {
    background: #f8f9fa;
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
}

.job-header h4 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-type {
    background: #689537;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-details {
    padding: 25px;
}

.job-details p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-requirements h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-requirements ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-requirements li {
    color: #6c757d;
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
    color: #6c757d;
}

.job-meta span {
    display: flex;
    align-items: center;
}

.job-meta i {
    margin-right: 8px;
    color: #689537;
}

.btn-apply {
    display: inline-block;
    background: #689537;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-apply:hover {
    background: #5a7a2e;
    color: white;
    text-decoration: none;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #689537;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h5 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    color: #6c757d;
    line-height: 1.6;
}

/* HR Contact */
.hr-contact {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hr-contact h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hr-contact p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #689537;
    color: white;
}

.btn-primary:hover {
    background: #5a7a2e;
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #689537;
    border: 2px solid #689537;
}

.btn-secondary:hover {
    background: #689537;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header .main-heading {
        font-size: 36px;
    }
    
    .stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header .main-heading {
        font-size: 28px;
    }
    
    .activity-content, .job-details, .event-details {
        padding: 20px;
    }
    
    .hr-contact {
        padding: 30px 20px;
    }
}

/* Hero Activities Section */
.hero-activities {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #689537 0%, #5a7a2e 100%);
    overflow: hidden;
    padding: 120px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/activities/hero-bg.jpg') center center;
    background-size: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(104, 149, 55, 0.9) 0%, rgba(90, 122, 46, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Company Activities Section */
.company-activities-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    background: #689537;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.activity-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: white;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.activity-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    will-change: transform;
}

.activity-item.large .activity-image {
    height: 100%;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    display: block;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
}

.activity-item:hover .activity-image img {
    transform: scale(1.05);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 25px 25px;
}

.activity-category {
    background: #689537;
    color: white;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(104, 149, 55, 0.3);
}

.activity-overlay h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.activity-overlay h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: white;
}

.activity-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.activity-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 15px;
}

.activity-meta span {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.activity-meta i {
    margin-right: 10px;
    color: #689537;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .activity-item.large .activity-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Development Page Styles */

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: #689537;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

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

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

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #689537 0%, #4a6b2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tech-icon i {
    font-size: 36px;
    color: white;
}

.tech-item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tech-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Feature Boxes */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #689537 0%, #4a6b2a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Footer Services */
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 10px;
}

.footer-services a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services a:hover {
    color: #689537;
}

/* Missing CSS Classes */
.padding-half {
    padding: 80px 0;
}

.space-40 {
    height: 40px;
}

.space-20 {
    height: 20px;
}

.space-5 {
    height: 5px;
}

.ot-heading {
    margin-bottom: 40px;
}

.ot-heading span {
    color: #689537;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.ot-heading h2.main-heading {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ot-heading p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.icon-box-s2 {
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.icon-box-s2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-box-s2 .icon-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #689537 0%, #4a6b2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box-s2 .icon-main span {
    font-size: 36px;
    color: white;
}

.icon-box-s2 .content-box h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.icon-box-s2 .content-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-height: 110px;
    overflow: hidden;
}

/* Counter Section */
.counter-v5 {
    background: #f8f9fa;
    padding: 80px 0;
}

.ot-counter2 {
    padding: 40px;
    text-align: center;
}

.ot-counter2 .s-num {
    font-size: 48px;
    font-weight: 700;
    color: #689537;
    margin-bottom: 15px;
}

.ot-counter2 h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.ot-counter2 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.btn-details {
    display: inline-block;
    padding: 12px 25px;
    background: #689537;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: #4a6b2a;
    color: white;
    text-decoration: none;
}

/* App Offer Section */
.app-offer {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.app-offer .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.05);
}

.app-offer .right-about-v4 h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.app-offer .right-about-v4 p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

/* Projects Section */
.app-projects {
    padding: 80px 0;
}

.project-item {
    margin-bottom: 30px;
}

.projects-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.projects-thumbnail {
    position: relative;
    overflow: hidden;
}

.projects-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.projects-box:hover .projects-thumbnail img {
    transform: scale(1.1);
}

.projects-thumbnail .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(104, 149, 55, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projects-box:hover .overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-info h6 a {
    color: #333;
    text-decoration: none;
}

.portfolio-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Design for Mobile Development Page */
@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .tech-item {
        margin-bottom: 30px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .ot-heading h2.main-heading {
        font-size: 28px;
    }
    
    .padding-half {
        padding: 60px 0;
    }
}

/* New Mobile Development Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #689537;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(104, 149, 55, 0.3);
}

.cta-button:hover {
    background: #4a6b2a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(104, 149, 55, 0.4);
}

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

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
}

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

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.overview-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #689537 0%, #4a6b2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.overview-card .card-icon i {
    font-size: 36px;
    color: white;
}

.overview-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.overview-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #689537;
    margin-bottom: 20px;
    text-align: center;
}

.overview-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 25px;
    text-align: center;
}

.overview-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overview-card ul li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.overview-card ul li:before {
    content: ".";
    position: absolute;
    left: 0;
    color: #689537;
    font-weight: bold;
    font-size: 16px;
}

/* Technology Stack */
.tech-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
}

.tech-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

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

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.tech-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

/* Process Steps */
.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #689537 0%, #4a6b2a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Portfolio Cards */
.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

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

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

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

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

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

.portfolio-stats {
    text-align: center;
    color: white;
}

.portfolio-stats .stat {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.portfolio-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

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

.tech-tags .tag {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-content h2 {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #689537;
}

.cta-button.primary:hover {
    background: #f8f9fa;
    color: #4a6b2a;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #689537;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .padding-section {
        padding: 60px 0;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .overview-card {
        padding: 30px 20px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
}

/* Footer Styles */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-widgets {
    margin-bottom: 40px;
}

.widget-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.textwidget p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

.align-self-center {
    align-self: center;
}

.align-self-end {
    align-self: flex-end;
}

.no-padding {
    padding: 0;
}

.img-full {
    width: 100%;
    height: auto;
}

/* Overlay Image */
.overlay-image {
    background: rgba(0,0,0,0.1);
}

/* Button Styles */
.octf-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.octf-btn-primary {
    background: #689537;
    color: white;
}

.octf-btn-primary:hover {
    background: #4a6b2a;
    transform: translateY(-2px);
}

/* Container Fluid */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Row and Column Utilities */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-md-12, .col-lg-4, .col-lg-6, .col-lg-8, .col-md-6, .col-xl-3 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Custom column for 5 cards layout */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Text Colors */
.text-white {
    color: white !important;
}

.text-dark {
    color: #343a40 !important;
}

/* Margin and Padding Utilities */
.mt-65 {
    margin-top: 65px;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

/* Icon Box S2 Variants */
.icon-box-s2.s1 {
    text-align: right;
}

.icon-box-s2.s3 {
    text-align: left;
}

/* App Benefits Specific */
.app-benefits-left {
    margin-right: 0;
}

.app-benefits-right {
    margin-left: 0;
}

.app-benefits-img img {
    max-width: 100%;
    height: auto;
}

/* Industries Slider */
.industries-inner {
    display: flex;
    flex-wrap: wrap;
}

.indus-item {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.item-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.item-inner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(104, 149, 55, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-inner:hover .overlay {
    opacity: 1;
}

.i-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.iinfo {
    padding: 20px;
    text-align: center;
}

.iinfo h6 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.itext {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* S Counter 4 */
.s-counter4 {
    background: linear-gradient(135deg, #689537 0%, #4a6b2a 100%);
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
}

.ot-counter {
    text-align: center;
}

.ot-counter .num {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.ot-counter h6 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Benefit Cards for Careers Page */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #f8f9fa;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #689537, #4CAF50, #2196F3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: #689537;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #689537, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(104, 149, 55, 0.4);
}

.benefit-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1);
}

.benefit-content h5 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-content h5 {
    color: #689537;
}

.benefit-content p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #689537;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.benefit-card:hover .feature-tag {
    background: linear-gradient(135deg, #689537, #4CAF50);
    color: white;
    border-color: #689537;
    transform: translateY(-2px);
}

/* Wide benefit cards for second row */
.benefit-card-wide {
    padding: 35px 25px;
}

.benefit-card-wide .benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.benefit-card-wide .benefit-icon i {
    font-size: 28px;
}

.benefit-card-wide .benefit-content h5 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card-wide .benefit-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefit-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .benefit-icon i {
        font-size: 24px;
    }
    
    .benefit-content h5 {
        font-size: 18px;
    }
    
    .benefit-content p {
        font-size: 14px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 576px) {
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
    
    .benefit-content h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .benefit-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

/* Compact Benefit Cards */
.benefit-card-compact {
    padding: 25px 20px;
    margin-bottom: 15px;
}

.benefit-card-compact .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.benefit-card-compact .benefit-icon i {
    font-size: 24px;
}

.benefit-card-compact .benefit-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-card-compact .benefit-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.benefit-card-compact .benefit-features {
    gap: 6px;
}

.benefit-card-compact .feature-tag {
    font-size: 11px;
    padding: 4px 10px;
}

/* Responsive adjustments for compact cards */
@media (max-width: 768px) {
    .benefit-card-compact {
        padding: 20px 15px;
        margin-bottom: 10px;
    }
    
    .benefit-card-compact .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .benefit-card-compact .benefit-icon i {
        font-size: 20px;
    }
    
    .benefit-card-compact .benefit-content h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .benefit-card-compact .benefit-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* Expired Job Cards */
.job-card-expired {
    opacity: 0.7;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.job-card-expired:hover {
    opacity: 0.8;
    transform: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.job-card-expired .job-header h5 {
    color: #6c757d;
    font-size: 18px;
}

.job-status.expired {
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-card-expired .job-details p {
    color: #6c757d;
    font-style: italic;
}

.job-closed-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-closed-info span {
    color: #6c757d;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-closed-info i {
    color: #dc3545;
    width: 16px;
}

.closed-date {
    color: #dc3545 !important;
    font-weight: 600;
}

.applicants {
    color: #6c757d !important;
}

/* Responsive adjustments for expired jobs */
@media (max-width: 768px) {
    .job-card-expired .job-header h5 {
        font-size: 16px;
    }
    
    .job-status.expired {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .job-closed-info {
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .job-closed-info span {
        font-size: 12px;
    }
}

/* Disabled Apply Button */
.btn-apply:disabled {
    background: #6c757d;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.6;
    border: 1px solid #6c757d;
}

.btn-apply:disabled:hover {
    background: #6c757d;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

/* Equal Height Job Cards */
.job-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card .job-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-card .job-requirements {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-card .job-requirements ul {
    flex: 1;
    overflow: hidden;
}

.job-card .job-requirements li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Truncate long text */
.job-card .job-details p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    max-height: 2.8em;
}

.job-card .job-requirements h6 {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.job-card .job-requirements ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.job-card .job-requirements li {
    margin-bottom: 5px;
    font-size: 14px;
    color: #6c757d;
}

/* Ensure consistent spacing */
.job-card .job-meta {
    margin-top: auto;
    padding-top: 15px;
}

.job-card .btn-apply {
    margin-top: 15px;
    align-self: flex-start;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-card .job-requirements li {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .job-card .job-details p {
        -webkit-line-clamp: 3;
        max-height: 4.2em;
    }
}

/* Job Status with Deadline */
.job-status {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.job-type {
    background: #689537;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.deadline {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deadline.active {
    background: #28a745;
    color: white;
    border: 1px solid #28a745;
}

.deadline.expired {
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

/* Responsive adjustments for job status */
@media (max-width: 768px) {
    .job-status {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .deadline {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .job-type {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Apply button hover effect */
.btn-apply:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(104, 149, 55, 0.3);
}

/* Scroll offset for fixed header */
#how-to-apply {
    scroll-margin-top: 100px;
}

/* Culture Cards */
.culture-card {
    background: white;
    padding: 30px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #689537;
}

.culture-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #689537, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.culture-card:hover .culture-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(104, 149, 55, 0.4);
}

.culture-icon i {
    font-size: 28px;
    color: white;
}

.culture-card h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.culture-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Workplace Features */
.workplace-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.feature-item i {
    width: 20px;
    color: #689537;
    font-size: 16px;
}

.feature-item span {
    color: #6c757d;
    font-size: 15px;
    font-weight: 500;
}

.workplace-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .culture-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .culture-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .culture-icon i {
        font-size: 24px;
    }
    
    .culture-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .culture-card p {
        font-size: 13px;
    }
    
    .feature-item {
        margin-bottom: 12px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
}

/* Contact Form Styling with Brand Colors */
.wpcf7 .main-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #689537;
    box-shadow: 0 10px 30px rgba(104, 149, 55, 0.15);
}

.wpcf7 .main-form h2 {
    color: #689537;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.wpcf7 .main-form .font14 {
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
}

.wpcf7 .main-form p {
    margin-bottom: 20px;
}

.wpcf7 .main-form input[type="text"],
.wpcf7 .main-form input[type="email"],
.wpcf7 .main-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.wpcf7 .main-form input[type="text"]:focus,
.wpcf7 .main-form input[type="email"]:focus,
.wpcf7 .main-form textarea:focus {
    outline: none;
    border-color: #689537;
    box-shadow: 0 0 0 3px rgba(104, 149, 55, 0.1);
    transform: translateY(-2px);
}

.wpcf7 .main-form input[type="text"]::placeholder,
.wpcf7 .main-form input[type="email"]::placeholder,
.wpcf7 .main-form textarea::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.wpcf7 .main-form textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7 .main-form .octf-btn {
    background: linear-gradient(135deg, #689537, #4CAF50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.wpcf7 .main-form .octf-btn:hover {
    background: linear-gradient(135deg, #4CAF50, #689537);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(104, 149, 55, 0.4);
}

.wpcf7 .main-form .error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.wpcf7 .main-form label {
    display: none;
}

/* Success and Error Messages */
#ajaxsuccess {
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    display: none;
}

.wpcf7 .main-form .error#err-form,
.wpcf7 .main-form .error#err-timedout,
.wpcf7 .main-form .error#err-state {
    background: #dc3545;
    color: white;
    padding: 10px 15px;
    border-radius: 3px;
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wpcf7 .main-form {
        padding: 30px 20px;
        margin-top: 20px;
    }
    
    .wpcf7 .main-form h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .wpcf7 .main-form input[type="text"],
    .wpcf7 .main-form input[type="email"],
    .wpcf7 .main-form textarea {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .wpcf7 .main-form .octf-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Business Image Styling */
.business-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.business-image img {
    max-width: 100% !important;
    max-height: 600px !important;
    height: 600px !important;
    width: auto !important;
    border-radius: 3px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    object-fit: contain !important;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .business-image img {
        border-radius: 3px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .business-image img:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
}

/* Contact Form Styling */
.contact-form-section {
    padding: 20px;
}

.contact-form h4 {
    color: #689537;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form p {
    color: #6c757d;
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
}

.contact-form-main {
    background: white;
    padding: 30px;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #f8f9fa;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #689537;
    background: white;
    box-shadow: 0 0 0 3px rgba(104, 149, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #689537, #4CAF50);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #4CAF50, #689537);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(104, 149, 55, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-main {
        padding: 20px;
    }
    
    .contact-form h4 {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Contact Info Cards */
.contact-header {
    margin-bottom: 20px;
}

.contact-info-card {
    background: white;
    padding: 30px 25px;
    text-align: center;
    border-radius: 3px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
    margin-bottom: 20px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #689537;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #689537, #4CAF50);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(104, 149, 55, 0.4);
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-info-card h5 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-info-card h5 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .contact-info-card p {
        font-size: 13px;
    }
}

/* ===== HEADER STYLES FOR ALL PAGES ===== */

/* Giữ nguyên kích thước header khi scroll và không scroll */
.octf-main-header {
    padding: 5px 0 !important;
    transition: none !important;
}

.octf-mainbar {
    min-height: 70px !important;
    height: 70px !important;
    max-height: 70px !important;
    transition: none !important;
}

/* Giữ nguyên kích thước logo */
.site-logo img,
.logo-img {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    transition: none !important;
}

/* Mobile logo */
.mobile_logo .logo-img {
    height: 40px !important;
    max-height: 40px !important;
    transition: none !important;
}

/* Giữ nguyên padding menu */
.main-navigation .menu > li > a {
    padding: 15px 12px !important;
    font-size: 14px !important;
    transition: none !important;
}

/* Căn chỉnh header row */
.octf-mainbar-row {
    align-items: center !important;
    min-height: 70px !important;
    height: 70px !important;
    max-height: 70px !important;
    transition: none !important;
}

/* Đảm bảo header không thay đổi khi scroll */
.site-header.sticky-header,
.site-header.header-static,
.site-header.header-fixed {
    height: auto !important;
    min-height: 80px !important;
    max-height: 80px !important;
    transition: none !important;
}

/* Logo container */
#site-logo {
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    transition: none !important;
}

/* Menu container */
#site-navigation {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    transition: none !important;
}

/* Responsive header adjustments */
@media (max-width: 768px) {
    .octf-main-header {
        padding: 3px 0 !important;
        transition: none !important;
    }
    
    .octf-mainbar {
        min-height: 60px !important;
        height: 60px !important;
        max-height: 60px !important;
        transition: none !important;
    }
    
    .octf-mainbar-row {
        min-height: 60px !important;
        height: 60px !important;
        max-height: 60px !important;
        transition: none !important;
    }
    
    .site-header.sticky-header,
    .site-header.header-static,
    .site-header.header-fixed {
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    .site-logo img,
    .logo-img {
        height: 40px !important;
        max-height: 40px !important;
        transition: none !important;
    }
    
    #site-logo {
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
    }
    
    #site-navigation {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
    
    .main-navigation .menu > li > a {
        padding: 12px 10px !important;
        font-size: 13px !important;
        transition: none !important;
    }
}

@media (max-width: 576px) {
    .octf-main-header {
        padding: 2px 0 !important;
        transition: none !important;
    }
    
    .octf-mainbar {
        min-height: 55px !important;
        height: 55px !important;
        max-height: 55px !important;
        transition: none !important;
    }
    
    .octf-mainbar-row {
        min-height: 55px !important;
        height: 55px !important;
        max-height: 55px !important;
        transition: none !important;
    }
    
    .site-header.sticky-header,
    .site-header.header-static,
    .site-header.header-fixed {
        min-height: 65px !important;
        max-height: 65px !important;
    }
    
    .site-logo img,
    .logo-img {
        height: 35px !important;
        max-height: 35px !important;
        transition: none !important;
    }
    
    #site-logo {
        height: 35px !important;
        min-height: 35px !important;
        max-height: 35px !important;
    }
    
    #site-navigation {
        height: 55px !important;
        min-height: 55px !important;
        max-height: 55px !important;
    }
    
    .main-navigation .menu > li > a {
        padding: 10px 8px !important;
        font-size: 12px !important;
        transition: none !important;
    }
}

/* ===== INDEX.HTML HEADER - LARGER SIZE ===== */










/* Responsive header adjustments */
@media (max-width: 768px) {
    .octf-main-header {
        padding: 3px 0 !important;
        transition: none !important;
    }
    
    .octf-mainbar {
        min-height: 60px !important;
        height: 60px !important;
        max-height: 60px !important;
        transition: none !important;
    }
    
    .octf-mainbar-row {
        min-height: 60px !important;
        height: 60px !important;
        max-height: 60px !important;
        transition: none !important;
    }
    
    .site-header.sticky-header,
    .site-header.header-static,
    .site-header.header-fixed {
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    .site-logo img,
    .logo-img {
        height: 40px !important;
        max-height: 40px !important;
        transition: none !important;
    }
    
    #site-logo {
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
    }
    
    #site-navigation {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
    
    .main-navigation .menu > li > a {
        padding: 12px 10px !important;
        font-size: 13px !important;
        transition: none !important;
    }
    
    /* Index page mobile */
    body.index-page .octf-main-header {
        padding: 10px 0 !important;
    }
    
    body.index-page .octf-mainbar {
        min-height: 70px !important;
        height: 70px !important;
        max-height: 70px !important;
    }
    
    body.index-page .octf-mainbar-row {
        min-height: 70px !important;
        height: 70px !important;
        max-height: 70px !important;
    }
    
    body.index-page .site-header.sticky-header,
    body.index-page .site-header.header-static,
    body.index-page .site-header.header-fixed {
        min-height: 80px !important;
        max-height: 80px !important;
    }
    
    body.index-page .site-logo img,
    body.index-page .logo-img {
        height: 50px !important;
        max-height: 50px !important;
    }
    
    body.index-page #site-logo {
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
    }
    
    body.index-page #site-navigation {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
    
    body.index-page .main-navigation .menu > li > a {
        padding: 15px 12px !important;
        font-size: 14px !important;
    }
    
    /* Force override for index.html mobile with higher specificity */
    body.index-page .site-header .octf-main-header {
        padding: 10px 0 !important;
    }
    
    body.index-page .site-header .octf-mainbar,
    body.index-page .site-header .octf-mainbar-row {
        min-height: 70px !important;
        height: 70px !important;
        max-height: 70px !important;
    }
    
    body.index-page .site-header .site-logo img,
    body.index-page .site-header .logo-img {
        height: 50px !important;
        max-height: 50px !important;
    }
    
    body.index-page .site-header #site-logo {
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
    }
    
    body.index-page .site-header #site-navigation {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
}

@media (max-width: 576px) {
    .octf-main-header {
        padding: 2px 0 !important;
        transition: none !important;
    }
    
    .octf-mainbar {
        min-height: 55px !important;
        height: 55px !important;
        max-height: 55px !important;
        transition: none !important;
    }
    
    .octf-mainbar-row {
        min-height: 55px !important;
        height: 55px !important;
        max-height: 55px !important;
        transition: none !important;
    }
    
    .site-header.sticky-header,
    .site-header.header-static,
    .site-header.header-fixed {
        min-height: 65px !important;
        max-height: 65px !important;
    }
    
    .site-logo img,
    .logo-img {
        height: 35px !important;
        max-height: 35px !important;
        transition: none !important;
    }
    
    #site-logo {
        height: 35px !important;
        min-height: 35px !important;
        max-height: 35px !important;
    }
    
    #site-navigation {
        height: 55px !important;
        min-height: 55px !important;
        max-height: 55px !important;
    }
    
    .main-navigation .menu > li > a {
        padding: 10px 8px !important;
        font-size: 12px !important;
        transition: none !important;
    }
    

}

/* ===== SUB MENU POSITIONING FIX ===== */

/* Fix sub menu positioning for all pages */
.main-navigation .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
    background: white !important;
    min-width: 200px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
    border-radius: 5px !important;
    padding: 10px 0 !important;
    margin-top: 0 !important;
    border: 1px solid #f8f9fa !important;
}

/* Sub menu items */
.main-navigation .sub-menu li {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation .sub-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    color: #2c3e50 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    background: transparent !important;
}

.main-navigation .sub-menu li a:hover {
    background: #689537 !important;
    color: white !important;
    padding-left: 25px !important;
}

/* Nested sub menus */
.main-navigation .sub-menu .sub-menu {
    top: 0 !important;
    left: 100% !important;
    margin-left: 0 !important;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .main-navigation .sub-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding-left: 20px !important;
        margin-top: 0 !important;
    }
    
    .main-navigation .sub-menu li a {
        padding: 8px 15px !important;
        font-size: 13px !important;
    }
    
    .main-navigation .sub-menu .sub-menu {
        position: static !important;
        left: auto !important;
        margin-left: 0 !important;
        padding-left: 20px !important;
    }
}

