/* Fullscreen Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Preloader Content */
.preloader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circle Loader Wrapper */
.preloader-circles {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Rotating Circle */
.preloader-circle {
    width: 60px;
    height: 60px;
    border-bottom: 4px solid rgba(255, 53, 59, 0.6);
    border-top: 4px solid rgba(220, 53, 69, 0.6);
    border-radius: 50%;
    position: absolute;
    animation: spin 1.5s linear infinite;
}

/* Second Circle with Delay */
.preloader-circle-delay {
    width: 45px;
    height: 45px;
    border-top-color: rgba(255, 53, 69, 0.5);
    animation-delay: 0.3s;
}
.preloader-circle-delay2 {
    width: 25px;
    height: 25px;
    border-bottom-color: rgba(255, 53, 69, 0.5);
    animation-delay: 0.1s;
}

/* Loading Text */
.preloader-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-top: 5px;
}

/* Keyframes for Rotating Circles */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc3545;
}

::-webkit-scrollbar-thumb:hover {
    background: #8e3740;
}


header .navbar-custom {
    /* background: transparent; */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header .navbar-brand {
    padding-left: 50px;

    img {
        width: 140px;
        height: 65px;
        filter: invert(1);
    }
}

header .navbar-nav .nav-item {
    padding-right: 25px;
}

header .navbar-nav .nav-item .nav-link.active {
    color: #dc3545 !important;
    font-weight: bold;
}

header .navbar-custom.scrolled {
    background: rgba(88, 88, 88, 0.98);

    .dropdown-menu {
        background: rgba(88, 88, 88, 0.98);
        border-radius: 0;
        border: none;
    }

    .overlay-bg {
        background: none;
    }
    .navbar-brand {
        img {
            filter: invert(0);
        }
    }
}

header .navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: #ffffff !important;
    font-weight: 500;
    position: relative;
}

header .navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dc3545;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

header .navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

header .navbar-toggler {
    border-color: #ffffff;
}

header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

header .dropdown-menu {
    background: rgba(3, 3, 3, 0.95);

    .dropdown-item {
        color: #fff;
    }

    .dropdown-item:hover {
        background-color: #dc3545;
    }
}

header .dropdown-toggle i::before {
    margin-left: 5px;
    transition: transform 0.7s ease;
}

header .dropdown:hover i::before {
    transform: rotate(540deg);
}

header .dropdown-toggle::after {
    border: 0px;
}


header .overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.95);
    z-index: -1;
}

.test-section {
    height: 1000px;
    background-color: #f4f4f4;
}

.navbar-toggler {
    width: 50px;
    height: 25px;
    position: relative;
    cursor: pointer;
    border: none;
    background: transparent;
}

.navbar-toggler span {
    display: block;
    height: 3px;
    background-color: #ffffff;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* -----------------------HERO SECTION------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-section .hero-content {
    position: absolute;
    top: 18%;
    left: 10%;
    color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section .hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px #000;
    pointer-events: none;
}

.hero-section .hero-content span {
    font-size: 4rem;
    color: #dc3545;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.hero-section .hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 3px #000;
}

.btn-main {
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0 0 25px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-main:hover {
    background-color: #dc3545;
    color: #000;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #dc3545;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 350px;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content span {
        font-size: 1.6rem !important;
    }

    .hero-content p {
        font-size: 0.9rem !important;
    }

    .btn-main {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }

    .navbar-nav {
        padding-left: 30px;
        position: fixed;
        top: 0;
        left: 0px;
        height: 100%;
        width: 250px;
        background-color: #000;
        padding-top: 20px;
        transition: left 0.5s ease-in-out;
    }

    .navbar-nav.show {
        left: 0;
    }

    header .dropdown .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .logistics-services h2 {
        font-size: 28px;
    }

    .service-image {
        height: 200px;
    }

    .service-title {
        font-size: 14px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        padding: 170px !important;
    }
}


.about-section {
    display: flex;
    padding: 80px 10%;
    background-color: #f7f7f7;
    position: relative;
}

.about-image {
    flex: 1;
    padding: 40px;
    background-image: url('/assets/images/ship-bg-dark.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.about-content {
    flex: 1.2;
    padding: 20px 40px;
}

.about-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-section .btn-main {
    color: #000;
    border: 1px solid #000;
}

/* -----------------------------------------SERVICES-------------------- */
.logistics-services {
    text-align: center;
    padding: 10px 20px 80px;
    position: relative;
}

.logistics-services h2 {
    font-size: 40px;
    font-weight: 700;
    color: #dc3545;
    position: relative;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    width: 300px;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-link:hover .service-image img {
    transform: scale(1.2);
}

.service-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 20px;
    letter-spacing: 1px;
    z-index: 2;
    font-weight: bold;
}

.service-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease;
}

.service-link:hover::after {
    background: rgba(220, 53, 69, 0.6);

}

.service-link:hover .service-title {
    color: #000;
}

/* WHY US */

.why-phoenix {
    background-color: #f8f9fa;
}

.why-phoenix h2 {
    font-size: 32px;
    color: #dc3545;
}

.strength {
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 20px;

}

.strength:hover {
    background-color: #e9f5ff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 40px;
    color: #dc3545;
    background-color: #eaf3ff;
    padding: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.strength:hover .icon-box {
    animation: rotateIcon 0.8s ease-in-out infinite;
    background-color: #dc3545;
    color: #ffffff;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.strength h3 {
    font-size: 18px;
    color: #343a40;
    transition: color 0.5s;
}

.strength:hover h3 {
    color: #dc3545;
}

.strength p {
    font-size: 14px;
    color: #6c757d;
    transition: color 0.5s;
}

.strength:hover p {
    color: #343a40;
}

@media (max-width: 768px) {
    .strength {
        margin-bottom: 20px;
    }
    .custom-footer .contact-column{
        justify-content: center;
        align-items: center;
    }
}

/* Our Process Section */
.our-process {
    background-image: url('/assets/images/process-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* overflow: hidden; */
}

.our-process .overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
}

.our-process h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.our-process p {
    font-size: 16px;
    color: #e0e0e0;
}

/* Process Step */
.our-process .process-step {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.our-process .process-bg {
    position: absolute;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    top: 20px;
    left: 20px;
}

.our-process .process-step:hover {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.our-process .icon-box {
    font-size: 50px;
    margin-bottom: 20px;
    position: relative;
    width: 80px;
    height: 80px;
    perspective: 1000px;
    margin: auto;
}

.our-process .front-icon,
.our-process .back-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.8s;
}

.our-process .front-icon {
    color: #007bff;
    background-color: #ffffff;
    /* padding: 20px; */
    padding-top: 5px;
    border-radius: 50%;
}

.our-process .back-icon {
    transform: rotateY(180deg);
    background-color: #ffffff;
    /* padding: 20px; */
    padding-top: 5px;
    border-radius: 50%;
    color: #dc3545;
}

.our-process .process-step:hover .front-icon {
    transform: rotateY(180deg);
}

.our-process .process-step:hover .back-icon {
    transform: rotateY(0deg);
}

.our-process .process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.our-process .process-step p {
    font-size: 14px;
    color: #cfcfcf;
}

/* Arrow Styling */
.arrow-icon {
    font-size: 60px;
    color: #ffffff;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .our-process {
        height: auto;
    }

    .our-process .process-step {
        min-height: 250px;
        padding: 20px;
    }

    .our-process .icon-box {
        font-size: 40px;
    }

    .our-process h2 {
        font-size: 28px;
    }

    .our-process p {
        font-size: 14px;
    }

    .arrow-icon {
        display: none;
    }
}


/* -----------------------------------FOOTER----------------------------------- */
/* Footer Main */
.custom-footer {
    background: #000000;
    /* Matching the header */
    color: #dc3545;
    padding: 50px 0 0 0;
    font-size: 15px;
}
.logo-part img{
    filter: invert(1);
}
/* Footer Titles */
.custom-footer .footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #007bff;
    /* Highlight color */
    display: inline-block;
    padding-bottom: 5px;
}

/* Footer Contact Section */
.custom-footer .contact-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-footer .contact-column h5 {
    font-size: 14px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.custom-footer .contact-column h5 a {
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
}

.custom-footer .contact-column h5 a:hover {
    color: #dc3545;
    text-decoration: underline;
}

.custom-footer .contact-column i {
    color: #dc3545;
    font-size: 18px;
}

/* Footer Links */
.custom-footer .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer .footer-list li {
    margin-bottom: 8px;
}

.custom-footer .footer-list a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.custom-footer .footer-list a:hover {
    color: #dc3545;
    text-decoration: underline;
}

/* Footer Bottom */
.custom-footer .footer-bottom {
    margin-top: 40px;
    background: #181818;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #bbb;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .custom-footer .footer-col {
        margin-bottom: 30px;
        text-align: center;
    }
}

/* Parent Class Scoped Styles */
.quote-section {
    background-image: url('/assets/images/get-quote-bg.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    height: 500px;
    margin-bottom: 200px;
    position: relative;
}

.quote-section .quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 111, 146, 0.8);
}

.quote-section .quote-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    /* background-color: rgba(255, 255, 255, 0.9); */
    padding: 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-section .quote-box {
    background-color: #0d47a1;
    color: #ffffff;
    padding: 40px 30px;
    max-width: 350px;
    margin-right: 30px;
    position: absolute;
    z-index: 2;
    bottom: 40px;
    clip-path: polygon(0 0, 86% 0, 120% 100%, 0% 100%);
}

.quote-section .quote-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quote-section .quote-button {
    background-color: #ffffff;
    color: #0d47a1;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.quote-section .quote-button:hover {
    background-color: #e0e0e0;
    color: #0d47a1;
}

.quote-section .quote-content {
    flex: 1;
    margin-left: 40px;
}

.quote-section .quote-text {
    margin-bottom: 30px;
}

.quote-section .quote-text h2 {
    font-size: 50px;
    font-weight: 700;
    /* color: #ffffff; */
    line-height: 1.2;
}

.quote-section .quote-text p {
    font-size: 16px;
    color: #000;
    /* font-weight: 400; */
}

.quote-section .quote-form {
    background: #ffffff;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.quote-section .quote-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.quote-section .form-control,
.quote-section .form-select {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0;
}

.quote-section textarea {
    resize: none;
}

.quote-section .btn-main {
    background-color: transparent;
    color: #000;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    width: 100%;
    border: 1px solid #0b8c8a;
    box-shadow: none;
}

.quote-section .btn-main:hover {
    background-color: #0b8c8a;
}

@media (max-width: 768px) {
    .quote-section .quote-container {
        flex-direction: column;
    }

    .quote-section .quote-box {
        margin-right: 0;
        margin-bottom: 20px;
        bottom: -220px;
    }
    .quote-section{
        margin-bottom: 750px;
    }
    .quote-section .quote-content{
        margin-left: 0;
    }
}

/* -------------------------------------------------------ABOUT US PAGE------------------------------------------------------ */
.about-hero-section {
    position: relative;
    height: 100vh;
    background-image: url('/assets/images/about-us-bg.png');
    /* Replace with actual image */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.about-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.about-hero-section .content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
    animation: fadeIn 1.2s ease-in-out forwards;
}

/* Typography */
.about-hero-section .section-title {
    padding-top: 80px;
    font-size: 3rem;
    font-weight: 1000;
    margin-bottom: 10px;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-section h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #f1f1f1;
}

.about-hero-section .subtext {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
}

/* Highlight Boxes */
.about-hero-section .highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.about-hero-section .highlight-box::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    transition: 0.5s ease;
    z-index: 0;
}

.about-hero-section .highlight-box:hover::before {
    background: rgba(220, 53, 69, 0.3);
}

.about-hero-section .highlight-box:hover {
    transform: translateY(-5px);
}

.about-hero-section .highlight-box i {
    font-size: 30px;
    color: #dc3545;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.4s ease;
    z-index: 2;
    position: relative;
}

.about-hero-section .highlight-box:hover i {
    transform: rotate(360deg);
}

.about-hero-section .highlight-box h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    position: relative;
}

.about-hero-section .highlight-box p {
    font-size: 0.9rem;
    color: #ccc;
    z-index: 2;
    position: relative;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s forwards;
    opacity: 0;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-section h3 {
        font-size: 2rem;
    }

    .about-hero-section .lead {
        font-size: 1rem;
    }

    .about-hero-section .highlight-box {
        text-align: center;
    }
    .about-hero-section{
        height: auto;
        padding-top: 50px;
    }
}

.mission-vision-section {
    background: linear-gradient(135deg, #fff 60%, #f4f4f4 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

.mission-vision-section .section-title {
    font-size: 2.8rem;
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 10px;
}

.mission-vision-section .section-subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}

.mv-card {
    min-height: 400px;
    position: relative;
    padding: 40px 30px;
    border-radius: 16px;
    overflow: hidden;
    /* border: 2px solid transparent; */
    transition: all 0.4s ease;
    z-index: 1;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            rgba(201, 29, 72, 0.1) 20%,
            rgba(201, 29, 72, 0.05) 100%);
    transform: rotate(20deg);
    z-index: 0;
}
.mv-card:hover::before {
    animation: shine 0.5s forwards;
}

@keyframes shine {
    0% {
        top: -100%;
        left: -100%;
    }

    100% {
        top: 0%;
        left: 0%;
    }
}

.mv-title {
    font-size: 1.9rem;
    font-weight: 600;
    color: #222;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.mv-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.mv-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

.mv-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.mv-list li i {
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    color: #dc3545;
    transition: transform 0.5s ease;
}

.mv-card:hover li i {
    transform: rotateY(360deg);
}

.mv-bg-number {
    position: absolute;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.06);
    right: 30px;
    top: 20px;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-card {
        padding: 30px 20px;
    }

    .mission-vision-section .section-title {
        font-size: 2.2rem;
    }

    .mv-title {
        font-size: 1.6rem;
    }
}
.freight-hero-section {
    position: relative;
    height: 100vh;
    background: url('/assets/images/ocean-bg.png') no-repeat center center/cover;
    overflow: hidden;
    padding-top: 100px;
}

.freight-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.freight-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.freight-hero-heading {
    font-size: 4rem;
    font-weight: bolder;
    letter-spacing: 1px;
    color: #8e3740;
    animation: freight-hero-heading-bounce 4s ease-in-out infinite;
}

@keyframes freight-hero-heading-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.freight-hero-subheading {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #d4ebff;
    animation: freight-hero-section-slideIn 1.5s ease-in-out;
}

.freight-hero-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0f4ff;
    animation: freight-hero-section-textReveal 1.5s ease forwards;
    opacity: 0;
}

.freight-hero-info p:nth-child(1) { animation-delay: 0.3s; }
.freight-hero-info p:nth-child(2) { animation-delay: 0.6s; }

.freight-hero-features {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    text-align: left;
    max-width: 500px;
}

.freight-hero-features li {
    font-size: 1.05rem;
    color: #cdeeff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    animation: freight-hero-section-textReveal 1.5s ease forwards;
    opacity: 0;
}

.freight-hero-features li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #70d4ff;
}

.freight-hero-features li:nth-child(1) { animation-delay: 0.8s; }
.freight-hero-features li:nth-child(2) { animation-delay: 1s; }
.freight-hero-features li:nth-child(3) { animation-delay: 1.2s; }
.freight-hero-features li:nth-child(4) { animation-delay: 1.4s; }
.freight-hero-features li:nth-child(5) { animation-delay: 1.6s; }
.freight-hero-features li:nth-child(6) { animation-delay: 1.8s; }

@keyframes freight-hero-section-slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes freight-hero-section-textReveal {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .freight-hero-section {
        height: auto;
    }

    .freight-hero-heading {
        font-size: 2.2rem;
    }

    .freight-hero-subheading {
        font-size: 1rem;
    }

    .freight-hero-info p,
    .freight-hero-features li {
        font-size: 0.95rem;
    }
}

.faq-section {
    background: #ffffff;
    padding: 150px 0 60px 0;
}

.faq-heading {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #d32f2f;
}

.accordion {
    max-width: 800px;
    margin: auto;
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.accordion-item:hover {
    transform: scale(1.02);
}

.accordion-header {
    background: none;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 500;
    background: #f8f9fa;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 10px;
}

.accordion-button:hover {
    background: #e0e0e0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #d32f2f;
    color: white;
}

.accordion-collapse {
    transition: 0.3s ease-in-out;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 0 0 10px 10px;
}

.accordion-body {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Smooth Open/Close Animation */
.accordion-collapse {
    transition: height 0.4s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
    }
}
/* --------------------------------------------------------------CONTACT US------------------------------------------------------ */
.contact-us-section {
    padding: 150px 0;
    background: #fff;
    color: #333;
}

/* Heading */
.contact-us-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.contact-us-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #dc3545;
    display: block;
    margin: 10px auto;
    transition: width 0.3s ease-in-out;
}

.contact-us-heading:hover::after {
    width: 120px;
}

.contact-us-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Contact Form */
.contact-us-form-wrapper {
    background: #f8f9fa;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-us-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-us-form .form-control {
    background: #fff;
    border: 2px solid transparent;
    padding: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-us-form .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
    outline: none;
}

/* Button */
.contact-us-btn {
    background: #dc3545;
    color: #fff;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.contact-us-btn:hover {
    background: #bb2d3b;
}

.contact-us-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    left: -100%;
    top: 0;
    transition: left 0.3s ease-in-out;
}

.contact-us-btn:hover::before {
    left: 0;
}

/* Contact Info */
.contact-us-info {
    background: #f1f1f1;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-us-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-us-info ul {
    list-style: none;
    padding: 0;
}

.contact-us-info ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-info ul li i {
    font-size: 1.5rem;
    color: #dc3545;
    margin-right: 10px;
}

/* Working Hours */
.contact-us-info h4 {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Social Icons */
.contact-social-icons {
    margin-top: 20px;
}

.contact-social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #dc3545;
    transition: color 0.3s ease-in-out;
}

.contact-social-icons a:hover {
    color: #bb2d3b;
}

/* FAQ Link */
.contact-us-faq-link {
    margin-top: 20px;
}

.contact-us-faq-link a {
    color: #dc3545;
    font-weight: bold;
    text-decoration: none;
}

.contact-us-faq-link a:hover {
    text-decoration: underline;
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-us-heading {
        font-size: 2rem;
    }
}
