/* main hero section css */
.new_hero_section {
    background: linear-gradient(135deg, #f4f9fd 0%, #e1f0fa 100%);
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
}

.new_hero_section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%233bb2ed" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.header_logo {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero_left_content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.hero_left_content .hero-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero_image_wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero_image_wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary {
    background-color: #3bb2ed;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-hero-primary:hover {
    background-color: #299ecc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 178, 237, 0.3);
}

.btn-hero-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background-color: #f8f9fa;
    color: #111;
    border-color: #ccc;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .hero_left_content h1 {
        font-size: 2.5rem;
    }

    .hero_left_content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .new_hero_section {
        padding: 60px 0 90px;
    }
}


/* ==============================
    get by id DYNAMIC FLEET SECTION
================================= */

.dynamicfleet-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Card */
.dynamicfleet-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(36, 90, 168, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card Hover */
.dynamicfleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(36, 90, 168, 0.14) !important;
    border-color: rgba(56, 199, 210, 0.35);
}

/* Image Container */
.dynamicfleet-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    height: 180px;
}

/* Image */
.dynamicfleet-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Image Zoom */
.dynamicfleet-card:hover .dynamicfleet-card-img {
    transform: scale(1.1);
}

/* Content */
.dynamicfleet-card-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title */
.dynamicfleet-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #245aa8;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

/* Description */
.dynamicfleet-card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #6c757d;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dynamicfleet-card:hover .dynamicfleet-title {
    color: #38c7d2;
}

/* Footer */
.dynamicfleet-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eef3f6;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* View Details */
.dynamicfleet-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #245aa8;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dynamicfleet-more:hover {
    color: #38c7d2;
    gap: 0.8rem;
}

/* WhatsApp */
.dynamicfleet-whatsapp {
    width: 45px;
    height: 45px;
    background: #25D366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    font-size: 1.25rem;
    text-decoration: none;

    transition: all 0.3s ease;
}

.dynamicfleet-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
}

/* Booking Button */
.dynamicfleet-inquiry {
    width: 45px;
    height: 45px;

    background: #eef7fa;
    color: #245aa8;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    font-size: 1.25rem;
    text-decoration: none;
    cursor: pointer;

    transition: all 0.35s ease;
}

/* Modern Hover */
.dynamicfleet-inquiry:hover {
    background: linear-gradient(135deg, #245aa8, #38c7d2);
    color: #fff;

    transform: translateY(-3px) rotate(8deg);

    box-shadow: 0 8px 18px rgba(36, 90, 168, 0.25);
}

/* Price Badge - Top Right */
.dynamicfleet-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;

    background: linear-gradient(135deg, #245aa8, #38c7d2);
    color: #fff;

    padding: 7px 13px;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    line-height: 1.2;

    box-shadow: 0 6px 18px rgba(36, 90, 168, 0.25);
    transition: all 0.3s ease;
}

.dynamicfleet-price-badge span {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dynamicfleet-price-badge strong {
    font-size: 15px;
    font-weight: 700;
}

.dynamicfleet-card:hover .dynamicfleet-price-badge {
    transform: translateY(3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(36, 90, 168, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    .dynamicfleet-image-link {
        height: 180px;
    }
}

/* main section p2 pages css */
.card {
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card-img-top {
    transition: 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.04);
}

.btn-info-modern {
    width: 52px;
    height: 52px;
    background: #eaf4f8;
    color: #245aa8;
    border: 1px solid rgba(36, 90, 168, 0.12);
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(36, 90, 168, 0.08);
}

.btn-info-modern:hover {
    background: linear-gradient(135deg, #245aa8, #38c7d2);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 22px rgba(36, 90, 168, 0.28);
}

.btn-info-modern i {
    transition: transform 0.35s ease;
}

.btn-info-modern:hover i {
    transform: rotate(12deg) scale(1.1);
}