.section-title {
    font-size: 1rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 600;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.main-heading strong {
    font-weight: 700;
    color: #000;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-item i {
    color: #FFA500;
}


.rating-box {
    background-color: #f8f9fa;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 160px;
}

.rating-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    background: url('https://images.unsplash.com/photo-1581093588401-12f7f3fcd7a3') cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.btn-contact {
    border: 2px solid #FFA500;
    border-radius: 10px;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-contact:hover {
    background-color: #FFA500;
    color: #fff;
}

.animated-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.animated-btn:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: #ff5e14;
    left: 0;
    top: 0;
    transition: width 0.3s ease;
    z-index: -1;
}

.animated-btn:hover:after {
    width: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.who-we-are {
    padding: 80px 0;
    background: #fff;
}

.value-item {
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.value-button {
    padding: 15px 25px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item.active .value-button {
    background: #ff5e14;
    color: white;
}

.value-content-item {
    display: none;
    transition: all 0.3s ease;
}

.value-content-item.active {
    display: block;
}

.feature-point {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-point i {
    color: #ff5e14;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 40px 0;
    }

    .value-button {
        padding: 12px 20px;
    }

    .top-bar {
        display: none !important;
    }
}

.approach-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('images/k-1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Header Styles */
.approach-header {
    text-align: left;
    margin-bottom: 3rem;
}

.approach-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 140, 0, 0.2);
    color: #FF8C00;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: #FF8C00;
}

.section-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
    max-width: 600px;
}

/* Approach Card */
.approach-card {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    background: rgba(248, 249, 250, 0.9);
    border-radius: 20px 20px 0 0;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 30px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    border-radius: 0;
}

.tab-btn:first-child {
    border-radius: 20px 0 0 0;
}

.tab-btn:last-child {
    border-radius: 0 20px 0 0;
}

.tab-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.05);
}

.tab-btn.active {
    background: #FF8C00;
    color: white;
    position: relative;
}

.tab-btn.active,
img {
    color: white;
}



.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #FF8C00;
}

/* Tab Content */
.tab-content-wrapper {
    padding: 50px 40px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Text */
.content-text {
    padding-right: 2rem;
}

.mission-description,
.vision-description,
.value-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Mission/Vision/Value Points */
.mission-points,
.vision-points,
.value-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-point,
.vision-point,
.value-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-point:last-child,
.vision-point:last-child,
.value-point:last-child {
    border-bottom: none;
}

.mission-point:hover,
.vision-point:hover,
.value-point:hover {
    padding-left: 10px;
    background: rgba(255, 140, 0, 0.02);
    border-radius: 8px;
}

.mission-point i,
.vision-point i,
.value-point i {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.mission-point span,
.vision-point span,
.value-point span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Content Image */
.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

/* Industrial Section */
.industrial-section {
    position: relative;
    background: linear-gradient(135deg, #002b49 0%, #033457 100%);
    min-height: 100vh;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23333" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

/* Content Wrapper */
.content-column {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.content-wrapper {
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.header-icon {
    color: #FF6B35;
    font-size: 1.2rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #FF6B35;
    text-transform: uppercase;
}

/* Main Heading */
.main-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2rem;
}

.main-heading .highlight {
    color: #FF6B35;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 2rem;
    color: #FF6B35;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Description Text */
.description-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.text-link {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

/* Image Column */
.image-column {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industrial-image {
    width: 100%;
    height: 80%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, transparent 30%),
        url('img/download\ \(2\).jpgs viewBox="0 0 200 200"><defs><linearGradient id="sparks" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23FF6B35;stop-opacity:0.8"/><stop offset="50%" style="stop-color:%23FFA500;stop-opacity:0.6"/><stop offset="100%" style="stop-color:%23FFD700;stop-opacity:0.4"/></linearGradient></defs><g transform="translate(100,100)"><g class="spark-group"><circle r="2" fill="url(%23sparks)" opacity="0.8"><animate attributeName="r" values="1;3;1" dur="1.5s" repeatCount="indefinite"/><animateTransform attributeName="transform" type="rotate" values="0;360" dur="2s" repeatCount="indefinite"/></circle><circle cx="20" cy="-10" r="1.5" fill="%23FF6B35" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="1s" repeatCount="indefinite"/></circle><circle cx="-15" cy="25" r="1" fill="%23FFA500" opacity="0.4"><animate attributeName="r" values="0.5;2;0.5" dur="2s" repeatCount="indefinite"/></circle><circle cx="30" cy="20" r="1.2" fill="%23FFD700" opacity="0.5"><animate attributeName="cy" values="20;10;20" dur="1.8s" repeatCount="indefinite"/></circle></g></g></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.industrial-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 107, 53, 0.2) 100%);
}

/* Floating Button */
.floating-button {
    position: absolute;
    bottom: 15%;
    left: 20%;
    z-index: 3;
}

.action-btn {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.action-btn:hover {
    transform: scale(1.1);
    background: #ff8c5a;
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.action-btn i {
    color: #ffffff;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6);
    }

    100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .content-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .image-wrapper {
        height: 50vh;
        margin-top: 2rem;
    }

    .floating-button {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .content-column {
        padding: 1rem;
    }

    .main-heading {
        font-size: 2rem;
        text-align: center;
    }

    .section-header {
        justify-content: center;
    }

    .service-card {
        padding: 1.25rem;
    }

    .card-icon i {
        font-size: 1.75rem;
    }

    .card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .main-heading {
        font-size: 1.75rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .image-wrapper {
        height: 40vh;
    }

    .action-btn {
        width: 50px;
        height: 50px;
    }

    .action-btn i {
        font-size: 1rem;
    }
}

/* Loading Animation */
.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects for Different Services */
.service-card[data-service="automation"]:hover {
    border-color: rgba(108, 117, 125, 0.3);
}

.service-card[data-service="quality"]:hover {
    border-color: rgba(40, 167, 69, 0.3);
}

.service-card[data-service="process"]:hover {
    border-color: rgba(255, 193, 7, 0.3);
}

.service-card[data-service="development"]:hover {
    border-color: rgba(220, 53, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .approach-section {
        padding: 40px 0;
        background-attachment: scroll;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
        margin: 0 auto;
    }

    .approach-header {
        text-align: center;
    }

    .tab-navigation {
        flex-direction: column;
        border-radius: 20px 20px 0 0;
    }

    .tab-btn {
        border-radius: 0 !important;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .tab-btn:first-child {
        border-radius: 20px 20px 0 0 !important;
    }

    .tab-btn:last-child {
        border-bottom: none;
    }

    .tab-content-wrapper {
        padding: 30px 20px;
    }

    .content-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .content-image img {
        height: 300px;
    }

    .mission-point,
    .vision-point,
    .value-point {
        padding: 12px 0;
    }



    .mission-point span,
    .vision-point span,
    .value-point span {
        font-size: 0.95rem;
    }
}

.testimonial-section {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Left Side - Image Container */
.testimonial-image-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.testimonial-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Right Side - Content Container */
.testimonial-content-container {
    padding: 80px 60px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

/* Header Section */
.testimonial-header {
    margin-bottom: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #666;
    margin-bottom: 0;
}

.testimonial-title .text-dark {
    font-weight: 600;
    color: #333;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 4px;
}

.star-rating i {
    color: #ffc107;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Testimonial Quote */
.testimonial-quote {
    margin: 30px 0;
    border: none;
    padding: 0;
}

.testimonial-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff9800;
    transition: all 0.3s ease;
}

.client-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.client-title {
    font-size: 1rem;
    color: #888;
    margin: 0;
}

/* Navigation Controls */
.testimonial-navigation {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #ff9800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.nav-btn:active {
    transform: translateY(0);
}

.nav-btn:disabled {
    background: #ddd;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Testimonial Indicators */
.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #ff9800;
    transform: scale(1.2);
}

/* Animations */
.testimonial-content {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-fade-out {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .testimonial-image-container {
        height: 50vh;
    }

    .testimonial-content-container {
        height: auto;
        padding: 40px 30px;
    }

    .testimonial-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .testimonial-content-container {
        padding: 30px 20px;
    }

    .testimonial-title {
        font-size: 1.8rem;
    }

    .testimonial-quote p {
        font-size: 1.1rem;
    }

    .client-info {
        gap: 15px;
    }

    .client-avatar {
        width: 50px;
        height: 50px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-image-container {
        height: 40vh;
    }

    .testimonial-content-container {
        padding: 25px 15px;
    }

    .testimonial-title {
        font-size: 1.6rem;
    }

    .testimonial-navigation {
        justify-content: center;
    }

    .testimonial-indicators {
        justify-content: center;
    }
}

/* Touch Support */
@media (hover: none) and (pointer: coarse) {
    .nav-btn:hover {
        background: #ff9800;
        transform: none;
        box-shadow: none;
    }

    .client-avatar:hover {
        transform: none;
        box-shadow: none;
    }
}

/* faq */


.container-fluid {
    background-color: var(--light-bg);
    min-height: 100vh;
}

/* FAQ Header Styles */
.faq-header {
    margin-bottom: 1rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-header h2 {
    color: var(--dark-text);
    font-size: 2.5rem;
    line-height: 1.2;
}

.btn-all-faqs {
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-all-faqs:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Industrial Image Container */
.industrial-image-container {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.industrial-background {
    width: 100%;
    height: 100%;
    background:
        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-text);
    font-weight: 500;
    font-size: 1rem;
}

.contact-item i {
    background-color: var(--accent-color);
    padding: 0.5rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.faq-question span {
    flex: 1;
    text-align: left;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item:not(.active) .faq-question:hover {
    background-color: #ff6b35;
    color: white;
}

.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: inherit;
}

.faq-item.active .faq-answer {
    color: var(--light-text);
}

.faq-item:not(.active) .faq-answer {
    color: var(--dark-text);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .faq-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .industrial-image-container {
        height: 350px;
        margin-bottom: 2rem;
    }

    .contact-overlay {
        bottom: 1rem;
        left: 1rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .faq-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-all-faqs {
        align-self: center;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .industrial-image-container {
        height: 300px;
    }

    .contact-overlay {
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .contact-item i {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.faq-question:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.btn-all-faqs:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .tab-btn {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .approach-card {
        border-radius: 15px;
        margin: 0 10px;
    }

    .tab-navigation {
        border-radius: 15px 15px 0 0;
    }

    .tab-btn:first-child {
        border-radius: 15px 15px 0 0 !important;
    }
}

/* Focus States for Accessibility */
.tab-btn:focus {
    outline: 2px solid #FF8C00;
    outline-offset: 2px;
}

/* Loading Animation */
.tab-content {
    transition: all 0.3s ease;
}

/* History Section Styles */
.history-section {
    padding: 40px 0;
    background: white;
    position: relative;
}

/* Header Styles */
.history-header {
    text-align: left;
    margin-bottom: 3rem;
}

.history-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.section-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: #FF8C00;
}

.section-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.7;
    max-width: 600px;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FF8C00, rgba(255, 140, 0, 0.3));
    border-radius: 2px;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 15px;
    width: 14px;
    height: 14px;
    background: #e9ecef;
    border: 3px solid #FF8C00;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-item.active::before {
    background: #FF8C00;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
    transform: scale(1.2);
}

.timeline-button {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #495057;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.timeline-item.active .timeline-button {
    background: #FF8C00;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
    transform: translateX(5px);
}

.timeline-item:hover .timeline-button {
    border-color: #FF8C00;
    transform: translateX(3px);
}

.timeline-item.active:hover .timeline-button {
    transform: translateX(5px) scale(1.02);
}

/* History Content */
.history-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.history-content-item {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.history-content-item.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Text */
.content-text {
    padding-right: 2rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-title .highlight {
    color: #FF8C00;
}

.content-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Achievement Points */
.achievement-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.achievement-point:hover {
    padding-left: 10px;
    background: rgba(255, 140, 0, 0.02);
    border-radius: 8px;
}

.achievement-point i {
    width: 24px;
    height: 24px;
    color: #FF8C00;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.achievement-point span {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
}

/* Content Image */
.content-image {
    position: relative;
    margin-left: 2rem;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-container {
        margin-bottom: 3rem;
    }

    .content-image {
        margin-left: 0;
        margin-top: 2rem;
    }

    .content-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
        margin: 0 auto;
    }

    .history-header {
        text-align: center;
    }

    .timeline-container::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 9px;
    }

    .timeline-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .history-content {
        padding: 30px 20px;
    }

    .content-title {
        font-size: 2rem;
        text-align: center;
    }

    .content-description {
        text-align: center;
    }

    .content-image img {
        height: 300px;
    }

    .achievement-point {
        padding: 10px 0;
    }

    .achievement-point span {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .timeline-button {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .history-content {
        border-radius: 15px;
        margin: 0 10px;
    }
}

/* Focus States for Accessibility */
.timeline-item:focus {
    outline: 2px solid #FF8C00;
    outline-offset: 2px;
    border-radius: 5px;
}

/* Print Styles */
@media print {
    .history-section {
        background: white;
        color: black;
    }

    .section-title,
    .content-title {
        color: black;
    }

    .timeline-container::before {
        background: #ccc;
    }

    .timeline-item::before {
        border-color: #ccc;
    }

    .history-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}



@media (max-width:768px) {
    .myimg {
        display: none;
    }
}











.our-team {
    padding: 54px 0 70px;
}

.team-member-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.team-image a {
    display: block;
    cursor: none;
}

.team-image figure {
    position: relative;
}

.team-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.93%, rgba(0, 0, 0, 0.8) 95.83%);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.team-member-item:hover .team-image figure::before {
    opacity: 1;
    visibility: visible;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transform: translateY(100%);
    text-align: center;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon {
    bottom: 20px;
    transform: translateY(0);
}

.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-icon ul li {
    display: inline-block;
    text-align: center;
    margin-right: 20px;
}

.team-social-icon ul li:last-child {
    margin-right: 0;
}

.team-social-icon ul li a {
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i {
    font-size: 20px;
    color: inherit;
}

.team-social-icon ul li a:hover {
    color: var(--accent-color);
}

.team-content {
    text-align: center;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.team-content h3:hover {
    color: var(--accent-color);
}

.team-content h3 a {
    color: inherit;
}

.team-content p {
    text-transform: capitalize;
    margin: 0;
}



















.our-history {
    padding: 43px 0;
}

.our-history-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.our-history-nav {
    width: calc(30% - 25px);
}

.our-history-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background-color: var(--white-color);
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border-radius: 20px;
    overflow: hidden;
}

.our-history-nav ul li {
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}

.our-history-nav ul li:last-child {
    border: none;
}

.our-history-nav ul li .nav-link {
    display: block;
    width: 100%;
    background: transparent;
    border-radius: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
    transition: all 0.3s ease-in-out;
}

.our-history-nav ul li .nav-link.active,
.our-history-nav ul li .nav-link:hover {
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 0;
}

.our-history-item {
    width: calc(70% - 25px);
}

.our-history-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.our-history-list ul li {
    position: relative;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 40px;
    margin-bottom: 20px;
}

.our-history-list ul li:last-child {
    margin-bottom: 0;
}

.our-history-list ul li:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.our-history-image figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.our-history-image img {
    width: 100%;
    aspect-ratio: 1 / 0.96;
    object-fit: cover;
    border-radius: 40px;
}

.our-features {
    padding: 100px 0;
}

.section-row {
    position: relative;
    margin-bottom: 1px;
    z-index: 1;
}

.section-row .section-title {
    /* margin-bottom: 0; */
}

.section-title-content {
    margin-left: 90px;
}

.section-title-content p {
    margin: 0;
}

.section-btn {
    text-align: right;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-left: 26px;
    margin-bottom: 15px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.section-title h1 {
    font-size: 70px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    margin-bottom: 0;
    cursor: none;
}


.section-title h1 span,
.section-title h2 span {
    font-weight: 700;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
    color: black;
}

.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3 {
    color: var(--white-color);
}

.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    margin-bottom: 0;
    cursor: none;
}

.our-history-list ul li:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

.career-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.dealer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 40px;
    animation: slideUp 1s ease;
}

.dealer-card h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
    color: #0072ff;
}

.form-control,
.form-select {
    border-radius: 10px;
    height: 45px;
}

textarea.form-control {
    height: 100px;
}

.btn-submit {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    border: none;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .dealer-card {
        padding: 25px;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px;
    transition: opacity 0.4s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: bold;
}

.hero-content h5 {
    font-size: 22px;
}

.highlight {
    color: orange;
    font-weight: bold;
}

.btn-quote {
    background: #f9a825;
    color: #fff;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}

.btn-quote:hover {
    background: #ff8f00;
    color: white;
}

.hero-img {
    position: relative;
    z-index: 2;
}

/* Yellow LEEYD line style */
.highlight-line {
    display: inline-block;
    color: #ffc107;
    /* yellow */
    font-weight: 600;
    padding-left: 10px;
    border-left: 4px solid #ffc107;
}

.highlight {
    color: #ff5722;
    font-weight: 700;
}

.hero-img img {
    max-width: 100%;
}

.overlay h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
}

.kk {

    background: linear-gradient(135deg, #00c6ff, #0072ff);
    min-height: 100vh;
    display: flex;
    padding: 50px 0px;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease;

}

.left-image {
    flex: 1;
    background: url('images/Career-Growth-vs-Career-Development-The-Key-Differences\ \(1\).jpg') center center/cover no-repeat;
    animation: fadeInLeft 1s ease;
}

.right-form {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

.form-box {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.form-box h2 {
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.form-control,
.form-select {
    border-radius: 8px;
    height: 45px;
}

textarea.form-control {
    height: 100px;
}

.btn-primary {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .career-container {
        flex-direction: column;
    }

    .left-image {
        height: 250px;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}