:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --dark-color: #0f172a;
    --light-color: #e2e8f0;
    --accent-color: #3b82f6;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
}

/* Navbar Styles */
.logistics-navbar {
    font-family: 'Poppins', sans-serif;
    /* padding: 15px 0; */
    background:white;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(245, 158, 11, 0.2);
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logistics-navbar.scrolled {
    padding: 10px 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--secondary-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-color);
}

.navbar-brand .logo-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(15deg);
}

.nav-link {
    color:black !important;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 8px 15px !important;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link.active::before {
    width: 100%;
}

.dropdown-menu {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInDropdown 0.3s ease-out;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--text-color);
    padding: 8px 20px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-color);
    padding-left: 30px;
}

.dropdown-item:hover::before {
    opacity: 1;
    left: 15px;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
    /* border: none; */
    padding: 0.5rem;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    /* background-image: none; */
    width: 30px;
    height: 30px;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 14px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 14px;
}

.nav-contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white !important;
    border-radius: 6px;
    padding: 10px 25px !important;
    font-weight: 600;
    margin-left: 15px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.nav-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.nav-contact-btn:hover::before {
    left: 100%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link {
        padding: 10px 15px !important;
        margin: 0;
    }

    .nav-contact-btn {
        margin: 15px 0 0 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        background: rgba(30, 41, 59, 0.95);
        margin-left: 15px;
        border: none;
        box-shadow: none;
    }
    .nav-link {
    color:white !important;
    }
}

/* Hero section for demo purposes */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.home_slider_carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
}

.home_slider_carousel .carousel-inner {
    height: 100%;
}

.home_slider_carousel_item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.home_slider_carousel_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.home_slider_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.home_slider_tagline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #facc15, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: slideInText 1.2s ease-out forwards;
    opacity: 0;
}

.home_slider_subtext {
    font-size: 1.3rem;
    font-weight: 300;
    color: #e2e8f0;
    animation: slideInText 1.5s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes slideInText {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home_slider_cta {
    margin-top: 2rem;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0f172a;
    background: #facc15;
    border: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInText 1.8s ease-out 0.6s forwards;
    opacity: 0;
}

.home_slider_cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

.home_slider_floating_icon {
    position: absolute;
    z-index: 2;
    opacity: 0.25;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    animation: floatIcon 6s infinite ease-in-out;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.icon_truck {
    left: 10%;
    top: 20%;
    width: 50px;
}

.icon_ship {
    right: 15%;
    top: 30%;
    width: 45px;
}

.icon_plane {
    left: 20%;
    bottom: 25%;
    width: 50px;
}

.icon_warehouse {
    right: 25%;
    bottom: 20%;
    width: 55px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #facc15;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Parallax effect */
.home_slider_carousel_item.active {
    animation: zoomParallax 10s infinite ease-in-out;
}

@keyframes zoomParallax {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.home_about_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa, #e0e7ff);
    position: relative;
    overflow: hidden;
}

.home_about_container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.home_about_content {
    flex: 1;
    padding: 40px;
}

.home_about_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.home_about_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #f97316;
}

.home_about_intro {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.home_about_stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.home_about_stat_item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 1.4s ease-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.home_about_stat_item:hover {
    transform: translateY(-10px);
}

.home_about_stat_number {
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 10px;
}

.home_about_stat_label {
    font-size: 1rem;
    color: #64748b;
}

.home_about_image_wrapper {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.home_about_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1.2s ease-out;
}

.home_about_image_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.3), transparent);
    border-radius: 15px;
    z-index: 1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.home_about_decorative_icon {
    position: absolute;
    opacity: 0.1;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.icon_decor_1 {
    top: 10%;
    left: 5%;
    width: 60px;
}

.icon_decor_2 {
    bottom: 15%;
    right: 10%;
    width: 50px;
}

.home_ser_section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a, #1e3a8a);
    color: #ffffff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.home_ser_title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #facc15, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-out;
}

.home_ser_subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    color: #d1d5db;
    margin-bottom: 60px;
    animation: fadeIn 1.2s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.home_ser_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.home_ser_card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
}

.home_ser_card:nth-child(1) {
    animation-delay: 0.2s;
}

.home_ser_card:nth-child(2) {
    animation-delay: 0.4s;
}

.home_ser_card:nth-child(3) {
    animation-delay: 0.6s;
}

.home_ser_card:nth-child(4) {
    animation-delay: 0.8s;
}

.home_ser_card:nth-child(5) {
    animation-delay: 1s;
}

.home_ser_card:nth-child(6) {
    animation-delay: 1.2s;
}

.home_ser_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.home_ser_icon {
    /* width: 60px; */
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.home_ser_card:hover .home_ser_icon {
    transform: scale(1.2) rotate(5deg);
}

.home_ser_card_title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.home_ser_card_desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.home_ser_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.home_ser_card:hover::before {
    opacity: 1;
}

.home_ser_card_content {
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.home_ser_decorative_shape {
    position: absolute;
    opacity: 0.05;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.shape_decor_1 {
    top: 5%;
    left: 10%;
    width: 80px;
}

.shape_decor_2 {
    bottom: 10%;
    right: 15%;
    width: 70px;
}

.h_why_choose_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.h_why_choose_title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.h_why_choose_subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    color: #64748b;
    margin-bottom: 60px;
    animation: fadeIn 1.2s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.h_why_choose_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.h_why_choose_card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
}

.h_why_choose_card:nth-child(1) {
    animation-delay: 0.2s;
}

.h_why_choose_card:nth-child(2) {
    animation-delay: 0.4s;
}

.h_why_choose_card:nth-child(3) {
    animation-delay: 0.6s;
}

.h_why_choose_card:nth-child(4) {
    animation-delay: 0.8s;
}

.h_why_choose_card:nth-child(5) {
    animation-delay: 1s;
}

.h_why_choose_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.h_why_choose_icon {
    width: 50px;
    /* height: 50px; */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.h_why_choose_card:hover .h_why_choose_icon {
    transform: scale(1.15) rotate(3deg);
}

.h_why_choose_card_title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.h_why_choose_card_desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.h_why_choose_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.h_why_choose_card:hover::before {
    opacity: 1;
}

.h_why_choose_card_content {
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.h_why_choose_decorative_shape {
    position: absolute;
    opacity: 0.08;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
    animation: float 12s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.shape_decor_1 {
    top: 10%;
    left: 5%;
    width: 60px;
}

.shape_decor_2 {
    bottom: 15%;
    right: 10%;
    width: 50px;
}

.h_cl_test_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.h_cl_test_title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #facc15, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}

.h_cl_test_subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    color: #d1d5db;
    margin-bottom: 50px;
    animation: fadeIn 1.2s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.h_cl_test_carousel {
    max-width: 900px;
    margin: 0 auto;
}

.h_cl_test_carousel_item {
    padding: 20px;
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.h_cl_test_card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
}

.h_cl_test_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
}

.h_cl_test_quote {
    font-size: 1.1rem;
    font-weight: 300;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.h_cl_test_quote::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 3rem;
    color: #f97316;
    opacity: 0.3;
}

.h_cl_test_quote::after {
    content: '”';
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 3rem;
    color: #f97316;
    opacity: 0.3;
}

.h_cl_test_client_name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 5px;
}

.h_cl_test_client_company {
    font-size: 0.95rem;
    color: #64748b;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #facc15;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

.h_cl_test_decorative_icon {
    position: absolute;
    opacity: 0.1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.icon_decor_1 {
    top: 10%;
    left: 5%;
    width: 60px;
}

.icon_decor_2 {
    bottom: 15%;
    right: 10%;
    width: 50px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.h_cta_section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    overflow: hidden;
}

.h_cta_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.05), rgba(250, 204, 21, 0.05));
    z-index: 1;
    animation: gradientShift 10s infinite ease-in-out;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.h_cta_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.h_cta_title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.h_cta_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #f97316;
    border-radius: 2px;
}

.h_cta_subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #475569;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.h_cta_button {
    display: inline-block;
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(90deg, #facc15, #f97316);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.4s ease-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.h_cta_button::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: left 0.5s ease;
}

.h_cta_button:hover::before {
    left: 100%;
}

.h_cta_button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.h_cta_decorative_icon {
    position: absolute;
    color: #f97316;
    opacity: 0.1;
    font-size: 50px;
    z-index: 1;
    animation: floatRotate 10s infinite ease-in-out;
}

.icon_decor_1 {
    top: 15%;
    left: 10%;
}

.icon_decor_2 {
    bottom: 20%;
    right: 15%;
}

.icon_decor_3 {
    top: 25%;
    right: 20%;
    font-size: 45px;
}

@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --dark-color: #0f172a;
    --light-color: #e2e8f0;
    --accent-color: #3b82f6;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
}

.h_footer_section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 100px 0 40px;
    overflow: hidden;
    border-top: 4px solid var(--secondary-color);
}

.h_footer_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1601050690597-df0568f70950?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.h_footer_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    z-index: 2;
}

.h_footer_content {
    position: relative;
    z-index: 3;
}

.h_footer_logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease-out;
    display: inline-block;
}

.h_footer_logo:hover {
    color: var(--text-color);
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.h_footer_description {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 350px;
    margin-bottom: 30px;
    color: var(--text-muted);
    animation: fadeIn 1s ease-out 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.h_footer_title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    animation: fadeIn 0.8s ease-out;
}

.h_footer_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 3px;
}

.h_footer_links_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.h_footer_link_item {
    margin-bottom: 12px;
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
    position: relative;
    padding-left: 15px;
}

.h_footer_link_item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.h_footer_link_item:hover::before {
    opacity: 1;
    transform: translateX(5px);
}

.h_footer_link_item:nth-child(1) {
    animation-delay: 0.1s;
}

.h_footer_link_item:nth-child(2) {
    animation-delay: 0.2s;
}

.h_footer_link_item:nth-child(3) {
    animation-delay: 0.3s;
}

.h_footer_link_item:nth-child(4) {
    animation-delay: 0.4s;
}

.h_footer_link_item:nth-child(5) {
    animation-delay: 0.5s;
}

.h_footer_link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.h_footer_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.h_footer_link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.h_footer_link:hover::after {
    width: 100%;
}

.h_footer_contact_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

.h_footer_contact_item:hover {
    transform: translateX(5px);
}

.h_footer_contact_item:nth-child(1) {
    animation-delay: 0.1s;
}

.h_footer_contact_item:nth-child(2) {
    animation-delay: 0.2s;
}

.h_footer_contact_item:nth-child(3) {
    animation-delay: 0.3s;
}

.h_footer_contact_item:nth-child(4) {
    animation-delay: 0.4s;
}

.h_footer_contact_icon {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.h_footer_contact_text {
    flex: 1;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.h_footer_contact_item:hover .h_footer_contact_icon {
    color: var(--text-color);
    transform: scale(1.1);
}

.h_footer_contact_item:hover .h_footer_contact_text {
    color: var(--text-color);
}

.h_footer_social_icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    animation: fadeIn 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.h_footer_social_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.h_footer_social_icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.h_footer_social_icon:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.h_footer_social_icon:hover::before {
    opacity: 1;
}

.h_footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 60px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    animation: fadeIn 1s ease-out;
    position: relative;
}

.h_footer_bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.h_footer_decorative_icon {
    position: absolute;
    color: var(--secondary-color);
    opacity: 0.08;
    font-size: 80px;
    z-index: 2;
    animation: floatRotate 15s infinite ease-in-out;
    pointer-events: none;
}

.icon_decor_1 {
    top: 15%;
    left: 8%;
}

.icon_decor_2 {
    bottom: 20%;
    right: 8%;
    font-size: 70px;
}

.icon_decor_3 {
    top: 30%;
    right: 10%;
    font-size: 60px;
    animation-delay: 2s;
}

.icon_decor_4 {
    bottom: 30%;
    left: 10%;
    font-size: 50px;
    animation-delay: 3s;
}

.h_footer_newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.h_footer_newsletter_title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.h_footer_newsletter_form {
    display: flex;
    gap: 10px;
}

.h_footer_newsletter_input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    padding: 12px 15px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.h_footer_newsletter_input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.h_footer_newsletter_btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.h_footer_newsletter_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Animations */
@keyframes floatRotate {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-20px) rotate(10deg) scale(1.05);
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .h_footer_section {
        padding: 70px 0 30px;
    }

    .h_footer_logo {
        font-size: 2rem;
    }

    .h_footer_decorative_icon {
        font-size: 50px;
    }
}

@media (max-width: 767.98px) {
    .h_footer_section {
        padding: 50px 0 20px;
    }

    .h_footer_title {
        font-size: 1.3rem;
    }

    .h_footer_newsletter_form {
        flex-direction: column;
    }

    .h_footer_decorative_icon {
        display: none;
    }
}

:root {
    --primary-color: #2a5ee8;
    --secondary-color: #ff6b00;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --overlay-color: rgba(26, 26, 46, 0.85);
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Hero Section */
.contact-hero {
    position: relative;
    height: 100vh;
    /* min-height: 600px; */
    background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 94, 232, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e05d00;
    border-color: #e05d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.btn-outline-light:hover {
    color: var(--dark-color);
    background-color: white;
}

/* Hero Card */
.hero-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
    color: var(--dark-color);
}

.hero-card .card-title {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.hero-card .card-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info-list i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 18px;
}

.contact-info-list span {
    flex: 1;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Stats Section */
.hero-stats {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    z-index: 2;
    padding: 30px 0;
    background-color: rgba(255, 255, 255, 0.9);
    /* box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05); */
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

/* Animations */
@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);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-card {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        padding: 100px 0 180px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
        margin-top: 50px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* ===== Ultra-Modern About Hero ===== */
.about_hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
    background: #0a0e17;
    color: #fff;
    display: flex;
    align-items: center;
}

/* Animated Gradient Background */
.about_hero_gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a6c, #0a0e17, #0a0e17);
    opacity: 0.9;
    z-index: 1;
}

/* Floating 3D Elements */
.about_hero_floating {
    position: absolute;
    border-radius: 50%;
    background: rgba(42, 94, 232, 0.1);
    backdrop-filter: blur(5px);
    z-index: 2;
    animation: float 8s infinite ease-in-out;
}
.about_hero_floating_1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}
.about_hero_floating_2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}
.about_hero_floating_3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Container & Layout */
.about_hero_container {
    position: relative;
    z-index: 3;
}
.about_hero_row {
    align-items: center;
}

/* Content Styling */
.about_hero_content_inner {
    max-width: 600px;
    margin-left: auto;
    padding-right: 30px;
}

/* Headline Animation */
.about_hero_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    overflow: hidden;
    margin-top: 40px;
}
.about_hero_title_line {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 1s forwards 0.3s;
}
.about_hero_title_highlight {
    color: #2a5ee8;
    position: relative;
    display: inline-block;
}
.about_hero_title_highlight::after {
   content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(255, 107, 0);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 1s forwards 1s;
}

/* Subtitle */
.about_hero_subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    animation: fadeIn 1s forwards 0.8s;
}
.about_hero_subtitle strong {
    color: #ff6b00;
    font-weight: 600;
}

/* Stats */
.about_hero_stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}
.about_hero_stat {
    text-align: center;
}
.about_hero_stat_number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 5px;
}
.about_hero_stat_number small {
    font-size: 1.5rem;
}
.about_hero_stat_label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Glowing CTA Button */
.about_hero_cta {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(90deg, #2a5ee8, #1d4bc8);
    color: white;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
    box-shadow: 0 10px 30px rgba(42, 94, 232, 0.4);
    transition: all 0.3s ease;
}
.about_hero_cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b00, #e05d00);
    z-index: -1;
    transition: all 0.4s ease;
}
.about_hero_cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(42, 94, 232, 0.6);
}
.about_hero_cta:hover::before {
    left: 0;
}
.about_hero_cta_icon {
    margin-left: 10px;
    transition: all 0.3s ease;
}
.about_hero_cta:hover .about_hero_cta_icon {
    transform: translateX(5px);
}

/* Right Column (Image + Badge) */
.about_hero_media {
    position: relative;
    z-index: 2;
}
.about_hero_image_wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}
.about_hero_image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.about_hero_image_wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.about_hero_image_wrapper:hover .about_hero_image {
    transform: scale(1.05);
}

/* Trust Badge */
.about_hero_badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 1.4s;
}
.about_hero_badge_icon {
    width: 40px;
    height: 40px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}
.about_hero_badge_content span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 1.2;
}
.about_hero_badge_content small {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes slideUp {
    to { transform: translateY(0); opacity: 1; }
}
@keyframes scaleIn {
    to { transform: scaleX(1); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes fadeInUp {
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .about_hero_title {
        font-size: 3.5rem;
    }
}
@media (max-width: 991.98px) {
    .about_hero {
        padding: 100px 0;
    }
    .about_hero_content_inner {
        margin: 0 auto;
        padding-right: 0;
        text-align: center;
    }
    .about_hero_stats {
        justify-content: center;
    }
    .about_hero_image_wrapper {
        margin-top: 50px;
        transform: perspective(1000px) rotateY(0deg);
    }
}
@media (max-width: 767.98px) {
    .about_hero_title {
        font-size: 2.8rem;
    }
    .about_hero_subtitle {
        font-size: 1.1rem;
    }
    .about_hero_stat_number {
        font-size: 2.5rem;
    }
}
@media (max-width: 575.98px) {
    .about_hero_title {
        font-size: 2.2rem;
    }
    .about_hero_stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== Section Styles ===== */
.ab_section {
    padding: 100px 0;
    position: relative;
}

.ab_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.ab_section_title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.ab_section_title_highlight {
    color: var(--primary);
}

.ab_section_divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}



:root {
    --primary: #2a5ee8;
    --secondary: #ff6b00;
    --dark: #0a0e17;
    --light: #f8f9fa;
    --gray: #6c757d;
}

/* ===== Company Overview ===== */
.ab_overview {
    background-color: #f8f9fa;
}

.ab_overview_text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ab_overview_text strong {
    color: var(--primary);
    font-weight: 700;
}

.ab_services_icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ab_service_icon {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(50% - 20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ab_service_icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ab_service_icon i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.ab_service_icon span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

/* ===== Mission & Vision ===== */
.ab_mission {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ab_mission_card_wrapper,
.ab_vision_card_wrapper {
    margin-bottom: 30px;
}

.ab_mission_card,
.ab_vision_card {
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ab_mission_card {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4bc8 100%);
    color: white;
}

.ab_vision_card {
    background: linear-gradient(135deg, var(--secondary) 0%, #e05d00 100%);
    color: white;
}

.ab_mission_card:hover,
.ab_vision_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.ab_mission_icon,
.ab_vision_icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.ab_mission_title,
.ab_vision_title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ab_mission_text,
.ab_vision_text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== Core Services ===== */
.ab_services {
    background-color: white;
}

.ab_service_card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ab_service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.ab_service_card_icon {
    width: 70px;
    height: 70px;
    background-color: rgba(42, 94, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.ab_service_card_title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.ab_service_card_text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== Why Choose Us ===== */
.ab_why {
    background-color: #f8f9fa;
}

.ab_why_image_wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ab_why_image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ab_why_image_wrapper:hover .ab_why_image {
    transform: scale(1.05);
}

.ab_why_points {
    padding-left: 30px;
}

.ab_why_point {
    display: flex;
    margin-bottom: 30px;
}

.ab_why_point_icon {
    width: 60px;
    height: 60px;
    background-color: rgba(42, 94, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    flex-shrink: 0;
}

.ab_why_point_content {
    flex: 1;
}

.ab_why_point_title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.ab_why_point_text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== CTA Section ===== */
.ab_cta {
    padding: 80px 0;
}

.ab_cta_card {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4bc8 100%);
    border-radius: 15px;
    padding: 60px;
    color: white;
    box-shadow: 0 20px 40px rgba(42, 94, 232, 0.3);
}

.ab_cta_title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ab_cta_text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.ab_cta_btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background-color: white;
    color: var(--primary);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ab_cta_btn:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ab_cta_btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.ab_cta_btn:hover i {
    transform: translateX(5px);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1199.98px) {
    .ab_hero_title {
        font-size: 3rem;
    }
    
    .ab_section {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .ab_hero {
        min-height: auto;
        padding: 100px 0;
    }
    
    .ab_hero_content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .ab_hero_image_wrapper {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .ab_services_icons {
        justify-content: center;
    }
    
    .ab_service_icon {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .ab_why_points {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .ab_hero_title {
        font-size: 2.5rem;
    }
    
    .ab_section_title {
        font-size: 2rem;
    }
    
    .ab_cta_card {
        padding: 40px;
    }
    
    .ab_cta_title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .ab_hero_title {
        font-size: 2rem;
    }
    
    .ab_hero_subtitle {
        font-size: 1.1rem;
    }
    
    .ab_service_icon {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .ab_cta_card {
        text-align: center;
    }
    
    .ab_cta_btn {
        margin-top: 20px;
    }
}

.ftl_section {
  padding: 6rem 1rem;
  background-color: #f8fafc;
}

.ftl_container {
  max-width: 1200px;
  margin: 0 auto;
}

.ftl_content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
}

.ftl_text-content {
  flex: 1;
  min-width: 300px;
}

.ftl_pill {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.ftl_heading {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.ftl_accent {
  color: #1d4ed8;
  position: relative;
}

.ftl_accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #93c5fd;
  z-index: -1;
  opacity: 0.7;
}

.ftl_description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 500px;
}

.ftl_benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.ftl_benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #334155;
  font-weight: 500;
}

.ftl_check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #1d4ed8;
}

.ftl_primary-btn {
  background-color: #1d4ed8;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 1rem;
}

.ftl_primary-btn:hover {
  background-color: #1e40af;
  transform: translateY(-1px);
}

.ftl_secondary-btn {
  background-color: white;
  color: #1d4ed8;
  border: 1px solid #1d4ed8;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ftl_secondary-btn:hover {
  background-color: #eff6ff;
}

.ftl_image-wrapper {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.ftl_main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.ftl_stats-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
}

.ftl_stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ftl_stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.ftl_stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .ftl_content-wrapper {
    flex-direction: column;
  }
  
  .ftl_stats-card {
    position: static;
    margin-top: 2rem;
  }
}

/* Base Styles */
.ser_all_hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 8rem 2rem;
  isolation: isolate;
}

.ser_all_container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

/* Particle Background */
.ser_all_particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Glow Effects */
.ser_all_glow-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.ser_all_glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: ser_all_float 15s infinite alternate;
}

.ser_all_glow-1 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.ser_all_glow-2 {
  width: 400px;
  height: 400px;
  background: #8b5cf6;
  bottom: 10%;
  right: 15%;
  animation-delay: 3s;
}

.ser_all_glow-3 {
  width: 250px;
  height: 250px;
  background: #10b981;
  top: 50%;
  right: 25%;
  animation-delay: 6s;
}

@keyframes ser_all_float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
  100% { transform: translate(-30px, -30px); }
}

/* Content Styles */
.ser_all_content {
  flex: 1;
  min-width: 400px;
}

.ser_all_badge-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.ser_all_badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ser_all_badge-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3b82f6;
  border-radius: 50px;
  z-index: 1;
  animation: ser_all_pulse 2s infinite;
  opacity: 0.5;
}

@keyframes ser_all_pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.ser_all_title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.ser_all_title-line {
  display: block;
}

.ser_all_highlight {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.ser_all_highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  border-radius: 4px;
  z-index: -1;
}

.ser_all_subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 500px;
  line-height: 1.6;
}

.ser_all_typing {
  color: #3b82f6;
  font-weight: 600;
  position: relative;
}

.ser_all_typing::after {
  content: '|';
  animation: ser_all_blink 1s infinite;
  position: absolute;
  right: -8px;
}

@keyframes ser_all_blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* CTA Buttons */
.ser_all_cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ser_all_cta {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ser_all_cta-primary {
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.ser_all_cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.ser_all_cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ser_all_cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ser_all_arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.ser_all_cta-primary:hover .ser_all_arrow {
  transform: translateX(5px);
}

.ser_all_halo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ser_all_cta-secondary:hover .ser_all_halo {
  opacity: 1;
}

/* Visual Section */
.ser_all_visual {
  flex: 1;
  position: relative;
  min-width: 400px;
}

.ser_all_truck {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 3;
}

.ser_all_visual:hover .ser_all_truck {
  transform: perspective(1000px) rotateY(0deg);
}

.ser_all_route-animation {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  transform: translateY(-50%);
  z-index: 2;
  animation: ser_all_route 3s infinite linear;
}

@keyframes ser_all_route {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.ser_all_stats {
  position: absolute;
  bottom: -2rem;
  right: 0;
  display: flex;
  gap: 1.5rem;
  z-index: 4;
}

.ser_all_stat-card {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: ser_all_float 6s infinite alternate;
}

.ser_all_stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ser_all_stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .ser_all_container {
    flex-direction: column;
    text-align: center;
  }
  
  .ser_all_content {
    min-width: auto;
  }
  
  .ser_all_subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ser_all_cta-group {
    justify-content: center;
  }
  
  .ser_all_stats {
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .ser_all_visual {
    width: 100%;
    min-width: auto;
    margin-top: 3rem;
  }
}