.navbar-logistics {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-logistics.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar-logistics.scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    padding: 8px 12px !important;
}

.nav-link:hover {
    color: #e74c3c !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #e74c3c;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active {
    color: #e74c3c !important;
}

.nav-link.active:after {
    width: 100%;
}

.button_nav_link:hover::after {
  width: 0%!important;
}
.contact-btn {
    background-color: #e74c3c;
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 10px;
    border: 2px solid #e74c3c;
}

.contact-btn:hover {
    background-color: transparent;
    color: #e74c3c !important;
}

.login-btn {
    background-color: transparent;
    color: #2c3e50 !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    margin-left: 10px;
}

.login-btn:hover {
    background-color: #2c3e50;
    color: white !important;
}

.phone-link {
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.phone-link i {
    color: #e74c3c;
    margin-right: 8px;
    font-size: 1.1rem;
}

.phone-link:hover {
    color: #e74c3c;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 20px;
    }

    .contact-btn,
    .login-btn {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
        width: auto;
    }

    .phone-link {
        margin-bottom: 15px;
        display: inline-block;
    }
}

.hero-carousel {
    height: 100vh;
    min-height: 600px;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
    padding-bottom: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: #e74c3c;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.service_section .section_header {
    text-align: center;
    margin-bottom: 60px;
}

.service_section .section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.service_section .section_title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service_section .section_subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.service_card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 0;
    /* Changed from 30px to 0 since we have row gap now */
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service_card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #e74c3c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.service_card:hover:before {
    transform: scaleX(1);
}

.service_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #e74c3c;
    transition: all 0.4s ease;
}

.service_card:hover .service_icon {
    background: #e74c3c;
    color: white;
    transform: rotateY(180deg);
}

.service_title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service_card:hover .service_title {
    color: #e74c3c;
}

.service_description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    /* Added to make cards equal height */
    margin-bottom: 20px;
}

.service_cta {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: auto;
    /* Pushes CTA to bottom */
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service_card:hover .service_cta {
    opacity: 1;
    transform: translateY(0);
}

.service_cta i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service_cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 767.98px) {
    .service_section {
        padding: 60px 0;
    }

    .service_section .section_title {
        font-size: 2rem;
    }

    .service_card {
        padding: 30px 20px;
    }

    .row.g-4 {
        gap: 20px !important;
        /* Ensure gap on mobile */
    }
}

.why_choose_section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.why_choose_section .section_header {
    text-align: center;
    margin-bottom: 60px;
}

.why_choose_section .section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.why_choose_section .section_title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.why_choose_section .section_subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.why_choose_content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.why_choose_left {
    flex: 1;
    min-width: 300px;
}

.why_choose_right {
    flex: 1;
    min-width: 300px;
}

.why_choose_feature {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.why_choose_icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e74c3c;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why_choose_feature:hover .why_choose_icon {
    background-color: #e74c3c;
    color: white;
    transform: rotate(15deg);
}

.why_choose_feature_content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.why_choose_feature_content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.why_choose_stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.why_choose_stat_item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why_choose_stat_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e74c3c;
    color: white;
}

.why_choose_stat_item:hover .why_choose_stat_number,
.why_choose_stat_item:hover .why_choose_stat_label {
    color: white;
}

.why_choose_stat_number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 5px;
    line-height: 1;
}

.why_choose_stat_label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.why_choose_clients {
    text-align: center;
}

.why_choose_clients h4 {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-weight: 500;
}

.why_choose_client_logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.why_choose_client_logo {
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.why_choose_client_logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 767.98px) {
    .why_choose_section {
        padding: 60px 0;
    }

    .why_choose_section .section_title {
        font-size: 2rem;
    }

    .why_choose_content {
        flex-direction: column;
    }

    .why_choose_stat_item {
        min-width: calc(50% - 10px);
    }
}

.testimonial_slider_section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonial_slider_section .section_header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial_slider_section .section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonial_slider_section .section_title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial_slider_section .section_subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial_slider_container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial_slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial_slide {
    display: none;
    padding: 60px;
    background: white;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    opacity: 0;
    transform: scale(0.9);
}

.testimonial_slide.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.testimonial_content_wrap {
    display: flex;
    align-items: center;
}

.testimonial_author_img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 40px;
    border: 5px solid rgba(231, 76, 60, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.testimonial_text {
    position: relative;
}

.testimonial_text:before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 5rem;
    color: rgba(231, 76, 60, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial_content {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial_author_info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.testimonial_author_info p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.testimonial_rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.slider_nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider_btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

.slider_dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.3);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider_dot.active {
    background: #e74c3c;
    transform: scale(1.2);
}

.platform_badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.platform_badge {
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.platform_badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platform_logo {
    height: 40px;
    margin-right: 15px;
}

.platform_info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.platform_info .rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.platform_info .rating_count {
    font-size: 0.8rem;
    color: #7f8c8d;
}

@media (max-width: 991.98px) {
    .testimonial_content_wrap {
        flex-direction: column;
        text-align: center;
    }

    .testimonial_author_img {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .testimonial_text:before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .testimonial_slider_section {
        padding: 60px 0;
    }

    .testimonial_slider_section .section_title {
        font-size: 2rem;
    }

    .testimonial_slider_container {
        padding: 0 20px;
    }

    .testimonial_slide {
        padding: 40px 30px;
    }

    .slider_btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.industry_coverage_section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.industry_coverage_section .section_header {
    text-align: center;
    margin-bottom: 60px;
}

.industry_coverage_section .section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.industry_coverage_section .section_title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.industry_coverage_section .section_subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.industry_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry_card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.industry_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.industry_card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.industry_card:hover:before {
    transform: scaleX(1);
}

.industry_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #e74c3c;
    transition: all 0.4s ease;
}

.industry_card:hover .industry_icon {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    transform: rotateY(180deg);
}

.industry_name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.industry_card:hover .industry_name {
    color: #e74c3c;
}

.industry_description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry_stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat_item {
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e74c3c;
    transition: all 0.3s ease;
}

.industry_card:hover .stat_item {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.industry_cta {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.industry_card:hover .industry_cta {
    opacity: 1;
    transform: translateY(0);
}

.industry_cta i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.industry_cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 767.98px) {
    .industry_coverage_section {
        padding: 60px 0;
    }

    .industry_coverage_section .section_title {
        font-size: 2rem;
    }

    .industry_grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #1a252f;
}

.footer-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-logo img {
    height: 60px;
    transition: all 0.3s ease;
    background-color: white;
  padding: 10px 20px;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-about {
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -8px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    padding-left: 20px;
}

.footer-links li:hover::before {
    opacity: 1;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.contact-info li:hover i {
    transform: scale(1.2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 7px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #c0392b;
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

@media (max-width: 991.98px) {
    .footer-section {
        padding: 60px 0 0;
    }

    .footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.logistics_hero_section {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #0a2e52 0%, #1a5a8a 100%);
    color: white;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.logistics_hero_container {
    position: relative;
    z-index: 2;
}

.logistics_hero_content {
    padding-top: 60px;
}

.logistics_hero_title {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logistics_hero_title span {
    color: #ffc107;
    position: relative;
    display: inline-block;
}

.logistics_hero_title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffc107;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.logistics_hero_title:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logistics_hero_subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.logistics_hero_btn {
    background: #ffc107;
    color: #0a2e52;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.logistics_hero_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.logistics_hero_image {
    position: relative;
    height: 100%;
}

.logistics_hero_truck {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 800px;
    animation: logistics_truck_move 8s infinite alternate;
}

.logistics_hero_world_map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    width: 100%;
    max-width: 1200px;
}

.logistics_hero_circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.logistics_circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.logistics_circle-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    animation: logistics_pulse 8s infinite;
}

.logistics_circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation: logistics_pulse 10s infinite 2s;
}

@keyframes logistics_truck_move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50px);
    }
}

@keyframes logistics_pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logistics_hero_title {
        font-size: 2.8rem;
    }

    .logistics_hero_truck {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .logistics_hero_section {
        height: auto;
        min-height: auto;
        padding-bottom: 100px;
        padding-top: 120px;
    }

    .logistics_hero_content {
        padding-top: 40px;
        padding-bottom: 400px;
    }

    .logistics_hero_title {
        font-size: 2.2rem;
    }
}


/* Company Overview Styles */
.logistics_company_overview {
    background-color: #f8f9fa;
    position: relative;
}

.logistics_overview_card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(10, 46, 82, 0.1);
    border-top: 4px solid #ffc107;
}

.logistics_section_title {
    font-weight: 700;
    color: #0a2e52;
    position: relative;
    padding-bottom: 15px;
}

.logistics_section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffc107;
}

.logistics_overview_item {
    height: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border-left: 3px solid #0a2e52;
    transition: all 0.3s ease;
}

.logistics_overview_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(10, 46, 82, 0.1);
}

.logistics_overview_icon {
    color: #ffc107;
}

.logistics_overview_item_title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a2e52;
    margin-bottom: 15px;
}

.logistics_overview_item_text {
    color: #555;
    margin-bottom: 15px;
}

.logistics_overview_link {
    color: #0a2e52;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.logistics_overview_link:hover {
    color: #ffc107;
}

.logistics_badge_group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.logistics_badge {
    background: rgba(10, 46, 82, 0.1);
    color: #0a2e52;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .logistics_overview_item {
        padding: 20px;
    }
}

/* Mission & Vision Section Styling */
.about_page_mv_wrapper {
    background-color: #f9fafc;
    padding: 80px 0;
}

.about_page_mv_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about_page_mv_content {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.about_page_mv_block {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about_page_mv_block:hover {
    transform: translateY(-5px);
}

.about_page_mv_subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #2a3a7b;
    margin-bottom: 15px;
    position: relative;
}

.about_page_mv_subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #ff6b00;
    /* Accent color */
}

.about_page_mv_text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Core Values - Premium Styling */
.about_page_cv_wrapper {
    background: radial-gradient(circle at 10% 20%, rgba(248, 249, 252, 0.9) 0%, rgba(240, 243, 250, 0.9) 90%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about_page_cv_wrapper::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(74, 109, 255, 0.05);
    border-radius: 50%;
    filter: blur(40px);
}

.about_page_cv_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about_page_cv_header {
    text-align: center;
    margin-bottom: 80px;
}

.about_page_cv_heading {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, #2a3a7b 0%, #4a6dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.about_page_cv_intro {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about_page_cv_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.about_page_cv_card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(42, 58, 123, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(234, 239, 253, 0.8);
}

.about_page_cv_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 58, 123, 0.15);
}

.about_page_cv_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a6dff 0%, #2a3a7b 100%);
    color: white;
    border-radius: 50%;
    font-size: 32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(74, 109, 255, 0.2);
}

.about_page_cv_content {
    position: relative;
    z-index: 2;
}

.about_page_cv_title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
}

.about_page_cv_desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.about_page_cv_shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about_page_cv_card:hover .about_page_cv_shine {
    transform: translateX(100%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about_page_cv_heading {
        font-size: 36px;
    }

    .about_page_cv_grid {
        grid-template-columns: 1fr;
    }
}

.why_choose {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why_choose_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.why_choose_title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.why_choose_title span {
    color: #3498db;
    position: relative;
}

.why_choose_title span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(52, 152, 219, 0.3);
    z-index: -1;
}

.why_choose_subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.why_choose_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.why_choose_card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why_choose_card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #3498db;
    transition: all 0.3s ease;
}

.why_choose_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why_choose_card:hover:before {
    height: 10px;
}

.why_choose_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why_choose_card:hover .why_choose_icon {
    background: #3498db;
    color: white;
    transform: rotateY(180deg);
}

.why_choose_icon svg {
    width: 30px;
    height: 30px;
}

.why_choose_card_title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.why_choose_card_text {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Hero Section Styles */
.contact_page_hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contact_page_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact_page_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact_page_hero_title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    overflow: hidden;
}

.contact_page_hero_title_line {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: titleReveal 1s forwards;
}

.contact_page_hero_title_line:nth-child(1) {
    animation-delay: 0.3s;
}

.contact_page_hero_title_line:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes titleReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact_page_hero_subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.9s;
}

.contact_page_hero_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 1.2s;
}

.contact_page_hero_button {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
}

.contact_page_hero_button_primary {
    background: #fff;
    color: #1a2a6c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact_page_hero_button_primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact_page_hero_button_secondary {
    color: white;
    border: 2px solid white;
    background: transparent;
}

.contact_page_hero_button_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact_page_hero_scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.contact_page_hero_scroll_text {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.contact_page_hero_scroll_icon {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.contact_page_hero_scroll_icon:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Animated Background Elements */
.contact_page_hero_circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite linear;
}

.contact_page_hero_circle_1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.contact_page_hero_circle_2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 100px;
    animation-delay: 2s;
}

.contact_page_hero_circle_3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.contact_page_hero_shape {
    position: absolute;
    animation: float 20s infinite linear;
}

.contact_page_hero_shape_1 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.05);
    animation-delay: 1s;
}

.contact_page_hero_shape_2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 20%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: rgba(255, 255, 255, 0.03);
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }

    50% {
        transform: translate(0, 40px) rotate(0deg);
    }

    75% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact_page_hero_title {
        font-size: 3rem;
    }

    .contact_page_hero_subtitle {
        font-size: 1.2rem;
    }

    .contact_page_hero_buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact_page_hero_button {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .contact_page_hero_title {
        font-size: 2.2rem;
    }

    .contact_page_hero_subtitle {
        font-size: 1rem;
    }
}

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    transition: transform 0.4s ease, color 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    color: #f97316;
}

.contact-link {
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover {
    color: #f97316;
    transform: translateX(4px);
}

.contact-section {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><path fill="rgba(0,0,0,0.05)" d="M20 10h40l10 30H50L30 10z"/></svg>') repeat;
    opacity: 0.1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

.services_page_hero {
    min-height: 95vh;
    background: linear-gradient(rgba(0, 32, 91, 0.85), rgba(0, 20, 60, 0.7)),
        url('images/service_banner.jpg');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.services_page_hero_container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services_page_hero_badge {
    display: inline-block;
    background: rgba(255, 136, 0, 0.95);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 136, 0, 0.3);
}

.services_page_hero_title {
    font-size: 4.2rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.services_page_hero_title span {
    color: #ff8800;
}

.services_page_hero_subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.services_page_hero_cta {
    display: inline-flex;
    align-items: center;
    background: #ff8800;
    color: white;
    padding: 1.1rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 25px rgba(255, 136, 0, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
}

.services_page_hero_cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 136, 0, 0.5);
    color: #00205b;
}

.services_page_hero_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.services_page_hero_cta:hover::before {
    left: 100%;
}

.services_page_hero_scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
}

.services_page_hero_scroll_arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.services_page_hero_scroll:hover .services_page_hero_scroll_arrow {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(5px);
}

/* ===== ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .services_page_hero_title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .services_page_hero {
        min-height: 85vh;
        background-position: 65% center;
    }

    .services_page_hero_title {
        font-size: 2.8rem;
    }

    .services_page_hero_subtitle {
        font-size: 1.2rem;
    }

    .services_page_hero_cta {
        padding: 1rem 2.5rem;
    }
}

.services_page_services {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.services_page_services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0,32,91,0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 L0,100 Z"/></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.8;
    z-index: 0;
}

.services_page_section_header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services_page_section_title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00205b;
    margin-bottom: 1rem;
}

.services_page_section_subtitle {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.services_page_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.services_page_service_card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 32, 91, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 32, 91, 0.1);
    position: relative;
    overflow: hidden;
}

.services_page_service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 32, 91, 0.1);
    border-color: rgba(0, 32, 91, 0.2);
}

.services_page_service_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff8800, #ff6b00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services_page_service_card:hover::after {
    transform: scaleX(1);
}

.services_page_service_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.1), rgba(0, 32, 91, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #00205b;
    font-size: 1.8rem;
}

.services_page_service_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00205b;
    margin-bottom: 1rem;
}

.services_page_service_desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services_page_service_link {
    display: inline-flex;
    align-items: center;
    color: #ff8800;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services_page_service_link:hover {
    color: #ff6b00;
    transform: translateX(5px);
}

.services_page_service_link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.services_page_service_link:hover i {
    transform: translateX(3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .services_page_section_title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .services_page_services {
        padding: 4rem 0;
    }

    .services_page_section_title {
        font-size: 2rem;
    }

    .services_page_service_card {
        padding: 2rem;
    }
}

.industries-section {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80"><path fill="rgba(0,0,0,0.05)" d="M20 10h40l10 30H50L30 10z"/></svg>') repeat;
    opacity: 0.1;
}

.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.industry-icon {
    transition: transform 0.4s ease, color 0.4s ease;
    color: #003087;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    color: #f97316;
}

.industry-link {
    color: #003087;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.industry-link:hover {
    color: #f97316;
    transform: translateX(4px);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact_page_body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background-color: #f8fafc;
      color: #1e293b;
      overflow-x: hidden;
    }
    
    /* Hero Section */
    .contact_page_hero {
      background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
      min-height: 60vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 4rem 0;
    }
    
    .contact_page_hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="rgba(255,255,255,0.05)" d="M40,-40C50.5,-27.1,56.7,-13.6,56.2,-0.4C55.7,12.8,48.5,25.6,38,38.4C27.6,51.2,13.8,64.1,-1.1,65.2C-16,66.3,-32,55.6,-43.8,42.8C-55.6,30,-63.2,15,-63.1,0.1C-63,-14.8,-55.2,-29.6,-43.4,-42.4C-31.6,-55.2,-15.8,-66.1,-0.7,-65.4C14.4,-64.7,28.7,-52.5,40,-40Z"/></svg>');
      background-size: cover;
      opacity: 0.3;
    }
    
    .contact_page_hero_title {
      font-size: 3.5rem;
      font-weight: 800;
      color: white;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
      margin-bottom: 1.5rem;
    }
    
    .contact_page_hero_subtitle {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.9);
      max-width: 600px;
      margin: 0 auto 2rem;
    }
    
    /* Contact Cards */
    .contact_page_card {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      background: rgba(255, 255, 255, 0.95);
      border: none;
      border-radius: 1.25rem;
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
      padding: 2.5rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .contact_page_card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #f97316 0%, #f59e0b 100%);
    }
    
    .contact_page_card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
    }
    
    .contact_page_card_icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    }
    
    .contact_page_card_icon svg {
      width: 36px;
      height: 36px;
      stroke-width: 2;
      color: white;
    }
    
    .contact_page_card_title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 0.75rem;
    }
    
    .contact_page_card_text {
      color: #64748b;
      margin-bottom: 1.5rem;
      min-height: 60px;
    }
    
    .contact_page_card_link {
      display: inline-block;
      color: #2563eb;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .contact_page_card_link:hover {
      color: #f97316;
      transform: translateX(5px);
    }
    
    .contact_page_card_link::after {
      content: '→';
      margin-left: 5px;
      transition: all 0.3s ease;
    }
    
    .contact_page_card_link:hover::after {
      margin-left: 10px;
    }
    
    .contact_page_card_meta {
      display: block;
      font-size: 0.875rem;
      color: #94a3b8;
      margin-top: 0.5rem;
    }
    
    /* Animated Background */
    .contact_page_animated_bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.1;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .contact_page_hero_title {
        font-size: 2.5rem;
      }
      
      .contact_page_card {
        padding: 2rem;
      }
      
      .contact_page_card_icon {
        width: 70px;
        height: 70px;
      }
    }

       .message-icon-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }
        
        .message-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d4242a, #ff0008);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .message-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .message-icon i {
            color: white;
            font-size: 24px;
        }
        
        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .popup-container {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .popup-container.active {
            transform: translateY(0);
            opacity: 1;
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 22px;
            cursor: pointer;
            color: #888;
            transition: color 0.2s;
        }
        
        .close-btn:hover {
            color: #333;
        }
        
        /* Form Styles */
        .popup-form h2 {
            margin-bottom: 20px;
            color: #333;
            text-align: center;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 6px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #6e8efb;
            box-shadow: 0 0 0 3px rgba(110, 142, 251, 0.2);
            outline: none;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            width: 100%;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
        }
        
        /* Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(110, 142, 251, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(110, 142, 251, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(110, 142, 251, 0);
            }
        }
        
        /* Responsive */
        @media (max-width: 480px) {
            .message-icon {
                width: 50px;
                height: 50px;
            }
            
            .popup-container {
                padding: 20px;
            }
        }

          .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(30, 30, 60, 0.9), rgba(100, 50, 150, 0.8));
    z-index: 9998;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    animation: slideIn 0.5s ease-out;
  }

  /* Container with bold, creative design */
  .popup-container {
    background: linear-gradient(135deg, #1e1e3c, #2a2a5a);
    border-radius: 25px;
    width: 90%;
    max-width: 480px;
    padding: 40px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(110, 142, 251, 0.3);
    border: 2px solid rgba(110, 142, 251, 0.5);
    position: relative;
    transform: translateY(50px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow: hidden;
  }

  .popup-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 142, 251, 0.2) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
    z-index: -1;
  }

  .popup-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  /* Close button with neon effect */
  .popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #420404, #f00);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  }

  .popup-close-btn:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.7);
  }

  /* Form title with glowing text */
  .popup-form .popup-title {
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #6e8efb, #a777e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(110, 142, 251, 0.5);
  }

  /* Form group styling */
  .popup-form-group {
    margin-bottom: 12px;
    position: relative;
  }

  .popup-form-group label {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  /* Input and textarea styling */
  .popup_input_text,
  .popup_input_tel,
  .popup_input_email,
  .popup_input_textarea {
    width: 100%;
    padding: 6px 18px;
    border: 2px solid rgba(110, 142, 251, 0.3);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e1e3c;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .popup_input_text::placeholder,
  .popup_input_tel::placeholder,
  .popup_input_email::placeholder,
  .popup_input_textarea::placeholder {
    color: #666;
    font-style: italic;
    opacity: 0.7;
  }

  .popup_input_text:focus,
  .popup_input_tel:focus,
  .popup_input_email:focus,
  .popup_input_textarea:focus {
    border-color: #6e8efb;
    box-shadow: 0 0 12px rgba(110, 142, 251, 0.5);
    background: #fff;
    outline: none;
  }

  .popup_input_textarea {
    resize: vertical;
  }

  /* Submit button with dynamic effect */
  .popup-submit-btn {
    background: linear-gradient(135deg, #420404, #f00);
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  }

  .popup-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.6), 0 0 25px rgba(167, 119, 227, 0.5);
    animation: pulseGlow 1.2s infinite;
  }

  .popup-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
  }

  .popup-submit-btn:hover::after {
    left: 100%;
  }

  /* Animations */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
      box-shadow: 0 0 0 12px rgba(255, 107, 107, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
  }

  @keyframes rotateGlow {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Responsive */
  @media (max-width: 480px) {
    .popup-container {
      padding: 25px;
      max-width: 95%;
    }

    .popup-form .popup-title {
      font-size: 26px;
    }

    .popup-form-group label {
      font-size: 13px;
    }

    .popup_input_text,
    .popup_input_tel,
    .popup_input_email,
    .popup_input_textarea {
      padding: 12px 15px;
      font-size: 14px;
    }

    .popup-submit-btn {
      padding: 12px 15px;
      font-size: 15px;
    }

    .popup-close-btn {
      width: 30px;
      height: 30px;
      font-size: 22px;
    }
  }

  @media (min-width: 991px) {
  .navbar_tabs_left_space{
    padding-left: 45px;
  }
}
  @media (max-width: 990px) {
  .number_two_btn{
    flex-direction: column;
    gap: 15px;
    align-items: flex-start!important;
  }
  .num_none_md{
    display: none;
  }
}