* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1E40AF;
    --secondary: #F97316;
    --dark: #111827;
    --light: #F9FAFB;
    --grey: #6B7280;
    --border: #E5E7EB;
    --success: #16A34A;
    --danger: #DC2626;
    --light-back: #3B82F6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}


/* hero section style starts here  */

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 span {
    color: var(--secondary);
}

.hero-text .lead {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.key-points {
    list-style: none;
    padding-left: 0;
    margin: 35px 0;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.key-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.key-points li::before {
    content: '✓';
    background: var(--success);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-primary:hover {
    background: #EA580C;
    border-color: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-outline-light {
    color: white;
    border-color: white;
    border-width: 2px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 1s ease-out 0.4s backwards;
}

.hero-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    border: 2px solid var(--border);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey);
    margin-top: 5px;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    border: none;
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text .lead {
        font-size: 1.1rem;
    }

    .hero-card {
        padding: 15px;
        text-align: center;
    }

    .hero-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0px;
    }

    .hero-card h3~.row {
        margin-top: 10px;
    }

    .hero-card h3~.row .col-6 {
        margin: 7px auto;
    }

    .hero-card h3~.row .col-6 .stat-item {
        padding: 10px;
        height: 100%;
        align-content: center;
    }

    .hero-card h3~.row .col-6 .stat-item .stat-number {
        font-size: 1.3rem;
    }
}




/* about section style starts here   */

.about-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(30, 64, 175, 0.03) 100%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 20px;
}

.stats-grid {
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

.stat-card {
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    border-color: var(--primary);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--grey);
    font-weight: 500;
}

.checkmark-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.checkmark-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark);
    animation: fadeInLeft 0.6s ease-out backwards;
}

.checkmark-list li:nth-child(1) {
    animation-delay: 0.6s;
}

.checkmark-list li:nth-child(2) {
    animation-delay: 0.7s;
}

.checkmark-list li:nth-child(3) {
    animation-delay: 0.8s;
}

.checkmark-list li:nth-child(4) {
    animation-delay: 0.9s;
}

.checkmark-list li::before {
    content: '✓';
    background: var(--success);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.image-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section~.about-section {
        padding-bottom: 0 !important;
    }

    .stats-grid .row .col-6 {
        margin: 7px auto;
    }

    .stat-card {
        margin: 7px 0;
        padding: 15px 10px 10px;
    }

    .stat-card .stat-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
    }

    .stat-card .stat-number {
        font-size: 1.4rem
    }
}


/* service section style starts here  */

.services-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.services-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.services-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    border: 2px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.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;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary) 0%, #EA580C 100%);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-title::before {
    content: '✓';
    background: var(--success);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.service-description {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.service-tag {
    background: var(--light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

.cta-container {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #EA580C;
    border-color: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .service-card {
        margin: 7px auto;
        text-align: center;
        padding: 20px 15px 15px;
    }

    .service-card .service-title::before {
        display: none;
    }

    .service-card .service-title {
        font-size: 1.3rem;
    }

    .service-card .service-icon {
        margin: 0 auto 10px;
    }
}


/* expertise section style starts here   */

.industries-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.industries-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.industries-content {
    position: relative;
    z-index: 1;
}

.industry-card {
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.industry-card:nth-child(1) {
    animation-delay: 0.1s;
}

.industry-card:nth-child(2) {
    animation-delay: 0.15s;
}

.industry-card:nth-child(3) {
    animation-delay: 0.2s;
}

.industry-card:nth-child(4) {
    animation-delay: 0.25s;
}

.industry-card:nth-child(5) {
    animation-delay: 0.3s;
}

.industry-card:nth-child(6) {
    animation-delay: 0.35s;
}

.industry-card:nth-child(7) {
    animation-delay: 0.4s;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.12);
    border-color: var(--primary);
    border-top: 0;
    background: white;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15);
}

.industry-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.25);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #EA580C;
    border-color: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-outline-light {
    color: white;
    border-color: white;
    border-width: 2px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .services-section~.industries-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .industries-section .section-header {
        margin-bottom: 30px !important;
    }

    .industries-content .row .col-6 {
        margin: 7px auto;
    }

    .industry-card {
        margin: 7px auto;
        padding: 10px;
    }

    .industry-card h3 {
        font-size: 16px;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }
}

/* why chhose us section style starts here   */

.why-choose-section {
    background: linear-gradient(135deg, var(--light) 0%, #e8eef5 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.features-grid {
    animation: fadeInLeft 0.8s ease-out 0.2s backwards;
}

.feature-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(7) {
    animation-delay: 0.7s;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.15);
    border-color: var(--primary);
    border-left: 0
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon::after {
    content: '✓';
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary) 0%, #EA580C 100%);
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.image-section {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, #1E3A8A 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10px, -10px) scale(1.05);
    }
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.highlight-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-mini {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-mini-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-mini-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-light-custom {
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    background: var(--light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .industries-section~.why-choose-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .why-choose-section .section-header {
        margin-bottom: 30px !important;
    }

    .why-choose-section .content-wrapper .row .col-6 {
        margin-top: 20px;
    }

    .features-grid .feature-item {
        padding: 15px;
    }


    .features-grid .feature-item h3 {
        font-size: 16px;
        margin: 0;
    }

    .feature-content {
        gap: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .highlight-box {
        padding: 40px 30px;
    }

    .highlight-box h3 {
        font-size: 1.6rem;
    }

    .stats-mini {
        grid-template-columns: 1fr;
    }
}




/* about page style starts here  */


/* what we do section style starts here   */

.about-wrapper .about-section {
    padding: 60px 0;
    background-color: white;
}

.about-wrapper .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-wrapper .section-title::before {
    content: '✓';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: var(--success);
    color: white;
    border-radius: 4px;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-size: 16px;
}

.about-wrapper .company-name {
    color: var(--primary);
    font-weight: 700;
}

.about-wrapper .highlight {
    color: var(--dark);
    font-weight: 600;
}

.about-wrapper .description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-wrapper .location-badge {
    display: inline-block;
    background-color: var(--light);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
    margin: 10px 0;
}

.about-wrapper .location-badge i {
    color: var(--secondary);
    margin-right: 8px;
}

.about-wrapper .feature-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.about-wrapper .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.about-wrapper .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--light-back));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-wrapper .feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-wrapper .feature-icon::after {
    content: "";
}


.about-wrapper .feature-text {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-wrapper .stats-section {
    background: linear-gradient(135deg, var(--primary), var(--light-back));
    border-radius: 12px;
    padding: 0 0 10px 0px;
    margin-top: 40px;
    color: white;
}

.about-wrapper .stats-section .row .stat-item {
    background-color: unset;
    border-color: transparent;
    color: white;
}

.about-wrapper .stat-item {
    text-align: center;
}

.about-wrapper .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--light);
}

.about-wrapper .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--light);

}


/* what we do section style starts here  */


.what-we-do-section {
    padding: 60px 0;
    background-color: var(--dark);
}

/* Section Title */
.what-we-do-section .section-title-dark {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.what-we-do-section .section-title-dark::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--success);
    color: #ffffff;
    border-radius: 4px;
    margin-right: 12px;
    font-size: 16px;
}


/* Description Text */
.what-we-do-section .description-text-dark {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #D1D5DB;
    margin-bottom: 20px;
}

.what-we-do-section .highlight-dark {
    color: #ffffff;
    font-weight: 600;
}


/* Services List */
.what-we-do-section .services-list {
    margin-top: 30px;
}

.what-we-do-section .service-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.what-we-do-section .service-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.what-we-do-section .service-item i {
    font-size: 24px;
    color: var(--secondary);
    min-width: 30px;
}

.what-we-do-section .service-item svg {
    color: var(--secondary);
}

.what-we-do-section .service-item span {
    color: #E5E7EB;
    font-size: 1rem;
    line-height: 1.5;
}


/* Call To Action Box */
.what-we-do-section .cta-box {
    background: linear-gradient(135deg, var(--secondary), #FB923C);
    border-radius: 12px;
    padding: 30px 40px;
    text-align: center;
}

.what-we-do-section .cta-text {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.8;
}

.what-we-do-section .cta-highlight {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}


/* our mission and vision section style starts here    */


.vision-mission-wrapper {
    padding: 60px 0;
    background-color: white;
}

.vision-mission-wrapper .section-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* .vision-mission-wrapper .section-header::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: var(--success);
    color: white;
    border-radius: 4px;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-size: 16px;
} */

.vision-mission-wrapper .vision-box {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.vision-mission-wrapper .vision-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.vision-mission-wrapper .vision-box .vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin: 0;
}

.vision-mission-wrapper .vision-box .vision-text .highlight {
    font-weight: 600;
    color: var(--primary);
}

.vision-mission-wrapper .mission-box {
    background: linear-gradient(135deg, var(--primary), var(--light-back));
    border-radius: 12px;
    padding: 40px;
    color: white;
}

.vision-mission-wrapper .mission-box .section-header {
    color: white;
    margin-bottom: 25px;
}

.vision-mission-wrapper .mission-box .section-header::before {
    background-color: white;
    color: var(--success);
}

.vision-mission-wrapper .mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-mission-wrapper .mission-list .mission-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.vision-mission-wrapper .mission-list .mission-item svg {
    /* color: var(--secondary); */
}

.vision-mission-wrapper .mission-list .mission-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.vision-mission-wrapper .mission-list .mission-item .icon {
    font-size: 20px;
    color: var(--secondary);
    min-width: 25px;
}

.vision-mission-wrapper .mission-list .mission-item .text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: white;
}

.vision-mission-wrapper .mission-list .mission-item .text .bold-text {
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vision-mission-wrapper {
        padding: 40px 0;
    }

    .vision-mission-wrapper .section-header {
        font-size: 1.5rem;
    }

    .vision-mission-wrapper .section-header::before {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 14px;
        margin-right: 8px;
    }

    .vision-mission-wrapper .vision-box {
        padding: 25px;
        margin-bottom: 30px;
    }

    .vision-mission-wrapper .vision-box .vision-text {
        font-size: 1rem;
    }

    .vision-mission-wrapper .mission-box {
        padding: 30px 20px;
    }

    .vision-mission-wrapper .mission-list .mission-item {
        padding: 15px 18px;
        flex-direction: row;
    }

    .vision-mission-wrapper .mission-list .mission-item .icon {
        font-size: 18px;
    }

    .vision-mission-wrapper .mission-list .mission-item .text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .vision-mission-wrapper .section-header {
        font-size: 1.35rem;
    }

    .vision-mission-wrapper .vision-box {
        padding: 20px;
    }

    .vision-mission-wrapper .mission-box {
        padding: 25px 18px;
    }

    .vision-mission-wrapper .mission-list .mission-item {
        padding: 12px 15px;
    }
}

/* industry section style ends here   */


.industries-wrapper {
    padding: 60px 0;
    background-color: white;
}

.industries-wrapper .section-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.industries-wrapper .section-header::before {
    /* content: '✓';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: var(--success);
    color: white;
    border-radius: 4px;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-size: 16px; */
}

.industries-wrapper .intro-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 35px;
    font-weight: 500;
}

.industries-wrapper .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industries-wrapper .industry-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industries-wrapper .industry-card:hover {
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.15);
    transform: translateY(-5px);
}

.industries-wrapper .industry-card .icon-wrapper {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--light-back));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industries-wrapper .industry-card .icon-wrapper svg {
    font-size: 26px;
    color: white;
}

.industries-wrapper .industry-card .industry-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    margin: 0;
}

/* Alternative Layout - List Style */
.industries-wrapper .industries-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.industries-wrapper .industries-list .list-item {
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    border-radius: 6px;
    padding: 18px 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.industries-wrapper .industries-list .list-item:hover {
    background-color: white;
    border-left-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.industries-wrapper .industries-list .list-item .bullet {
    width: 10px;
    height: 10px;
    background-color: var(--dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.industries-wrapper .industries-list .list-item .item-text {
    font-size: 1.05rem;
    color: var(--dark);
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .industries-wrapper {
        padding: 40px 0;
    }

    .industries-wrapper .section-header {
        font-size: 1.5rem;
    }

    .industries-wrapper .section-header::before {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 14px;
        margin-right: 8px;
    }

    .industries-wrapper .intro-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .industries-wrapper .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industries-wrapper .industry-card {
        padding: 20px;
        gap: 15px;
        width : 100%;
    }

    .industries-wrapper .industry-card .icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .industries-wrapper .industry-card .icon-wrapper i {
        font-size: 22px;
    }

    .industries-wrapper .industry-card .industry-name {
        font-size: 1rem;
    }

    .industries-wrapper .industries-list .list-item {
        padding: 15px 20px;
    }

    .industries-wrapper .industries-list .list-item .item-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .industries-wrapper .section-header {
        font-size: 1.35rem;
    }

    .industries-wrapper .intro-text {
        font-size: 0.95rem;
    }

    .industries-wrapper .industry-card {
        padding: 18px;
    }

    .industries-wrapper .industries-list .list-item {
        padding: 12px 18px;
    }
}