/**
* Template Name: Bootslander - v4.9.0
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --kpt-blue: #01438f;
    --kpt-sky: #09A1ED;
    --kpt-bg: #f3f5fb;
    --kpt-radius-lg: 22px;
    --kpt-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background: radial-gradient(circle at top left, #e0f2fe 0, #f3f4f6 100%);
}

a {
    color: #09A1ED;
    text-decoration: none;
}

a:hover {
    color: #01438f;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #09A1ED;
    border-top-color: #d2f9eb;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #01438f;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #01438f;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-grad {
    background: #09A1ED;
    margin: 10px;
    margin-left: 50%;
    padding: 5px 40px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    border: none;
}

.btn-grad:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.sinup { color: #0fa5e4; }
.sinup:hover { color: #01438f; }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 8px 1px 12px 1px #dfdedecc;
    background: white;
}

#header.header-scrolled {
    
    height: 90px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li { position: relative; }

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: black;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 30px;
    background-color: #ed093e;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #df3737;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li { min-width: 200px; }

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #0fa5e4;
}

.navbar .dropdown ul a i { font-size: 12px; }

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #01438f;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: black;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle { display: block; }
    .navbar ul { display: none; }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #01438f;
    transition: 0.3s;
    z-index: 999;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    position: relative;
    padding: 120px 0 0 0;
    background: linear-gradient(rgba(27, 47, 69, 0.5), rgba(27, 47, 69, 0.1)), url(../../img/login/bg-new1.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#hero h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(255, 255, 255, 0.8);
    background: none;
}

#hero h1 span {
    color: #fff;
    border-bottom: 4px solid #09A1ED;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #09A1ED;
}

#hero .btn-get-started:hover {
    background: #01438f;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 70px 0;
    overflow: hidden;
}

.section-bg { background-color: #f5f5ff; }

.section-title {
    padding-bottom: 40px;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 12px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 10px 0;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9ca3af;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #09A1ED;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #1679ac;
 }

/*--------------------------------------------------------------
# Counts / Hero Section
--------------------------------------------------------------*/
.counts {
    position: relative;
    padding: 120px 0 90px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    color: #fff;
}

.counts::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 0%, transparent 40%),
            radial-gradient(circle at 80% 80%, rgba(255,255,255,0.2) 0%, transparent 40%),
            linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%),
            radial-gradient(circle at top left, rgba(9,161,237,0.25) 0, transparent 55%),
            linear-gradient(135deg, rgba(5,15,35,0.8), rgba(1,67,143,0.75));
}


.counts .container {
    position: relative;
    z-index: 1;
}

.counts .row.justify-content-center {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem 1.5rem;
}

.counts .row.justify-content-center > .col-md-12 {
    order: -1;
    text-align: center;
}

.counts .row.justify-content-center > .col-md-3 {
    order: 0;
    flex: 0 0 23%;
    max-width: 23%;
    min-width: 220px;
    opacity: 0;
    animation: kpt-fade-up .7s ease forwards;
}

.counts .col-md-12 h1 {
    margin-top: 0;
    font-size: 34px;
    line-height: 1.4;
    font-weight: 800;
    color: #f9fafb !important;
    background: none !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.counts .col-md-12 h1 span {
    border-bottom: none !important;
    background: linear-gradient(90deg, #f9fafb, #bae6fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.counts .card-index {
    background: rgba(15,23,42,0.55);
    border-radius: var(--kpt-radius-lg);
    border: 1px solid rgba(148,163,184,0.55);
    padding: 16px;
    backdrop-filter: blur(22px);
    transform: translateY(0);
    box-shadow: var(--kpt-shadow-soft);
    transition: all .25s ease;
}

.counts .card-index .cimg img {
    height: 240px !important;
    width: 100%;
    object-fit: cover !important;
    border-radius: 16px;
    transition: transform .35s ease;
}

.counts .card-index .c-body {
    padding: 14px 8px 6px;
    text-align: center;
}

.counts .card-index .c-body h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #e5f3ff !important;
    margin-bottom: 4px;
}

.counts .card-index .c-body h3::after {
    content: "View details";
    display: block;
    font-size: 11px;
    margin-top: 3px;
    color: #bae6fd;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.counts .card-index:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 60px rgba(15,23,42,0.85);
    border-color: rgba(248,250,252,0.95);
}

.counts .card-index:hover .cimg img {
    transform: scale(1.06);
}

@keyframes kpt-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Features / Deals Section
--------------------------------------------------------------*/
#features {
    padding: 70px 0 80px;
    background: transparent;
}

#features .row { row-gap: 2rem; }

.item-card {
    border-radius: 20px !important;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 35px rgba(15,23,42,0.07);
    padding: 10px;
    transform: translateY(0);
    transition: all .25s ease !important;
}

.item-card img {
    border-radius: 16px !important;
    height: 230px !important;
    width: 100%;
    object-fit: cover;
}

.item-card .card-title {
    font-size: 18px !important;
    font-weight: 700;
    margin-top: 14px;
    text-align: center;
    color: #01438f !important;
}

.item-card .card-text {
    min-height: auto !important;
    font-size: 14px;
    color: #4b5563;
    text-align: center;
    margin-bottom: 12px;
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15,23,42,0.18);
    border-color: #09A1ED;
}

/*--------------------------------------------------------------
# Filter System
--------------------------------------------------------------*/
/*#filterBtn {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 12px;*/
/*    padding: 10px 20px;*/
/*    border-radius: 7px;*/
/*    background: linear-gradient(135deg, #09A1ED, #01438f);*/
/*    background-color: rgba(0, 0, 0, 0);*/
/*    border: 2px solid transparent;*/
/*    font-size: 10px;*/
/*    font-weight: 600;*/
/*    letter-spacing: 0.05em;*/
/*    text-transform: uppercase;*/
/*    color: #ffffff;*/
/*    cursor: pointer;*/
/*    box-shadow: 0 8px 25px rgba(1, 67, 143, 0.3);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*#filterBtn:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 12px 35px rgba(1, 67, 143, 0.4);*/
/*    background: linear-gradient(135deg, #01438f, #09A1ED);*/
/*}*/

/*#filterWrap {*/
/*    display: none !important;*/
/*    border-radius: 18px;*/
/*    border: 1px solid #e1e8ff;*/
/*    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);*/
/*    box-shadow: 0 20px 60px rgba(1, 67, 143, 0.15);*/
/*    margin-top: 15px;*/
/*    padding: 25px !important;*/
/*    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*#filterWrap[style*="display: block"],*/
/*#filterWrap.show {*/
/*    display: block !important;*/
/*    animation: slideDown 0.3s ease-out;*/
/*}*/

/** Filter – New Modern UI **/

#filterBtn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
}

#filterBtn:hover {
    background: #f8fafc;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    transform: translateY(-1px);
}

#filterBtn #filterIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #0ea5e9;
    color: #fff;
    transition: background .2s ease, transform .25s ease;
}

#filterBtn.open #filterIcon {
    background: #ef4444;
    transform: rotate(180deg);
}

/* Filter box as a card */
#filterWrap {
    display: none;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.12);
}

/* Thoda spacing aur modern feel */
#filterWrap .fw-bold {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #64748b;
}

#filterWrap select.form-control {
    font-size: 13px;
    border-radius: 10px !important;
}

/* Top blue strip ko thoda premium bana dein */
.counts > .container-fluid {
    background: linear-gradient(135deg, #155eac, #1d98e5);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 76, 129, 0.4);
}

.counts .n-link {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .85;
}

/*.counts .n-link:hover,*/
/*.counts .n-link.active {*/
/*    opacity: 1;*/
/*    color: #facc15 !important;*/
/*}*/




@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Airline Cards & Tables
--------------------------------------------------------------*/
.container.bg-white.p-1.mt-1.shadow-sm {
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%) !important;
    border: 1px solid #e1e8ff;
    box-shadow: 0 25px 70px rgba(1, 67, 143, 0.15) !important;
    overflow: hidden;
    margin-bottom: 20px;
}

.table-responsive {
    border-radius: 18px;
    overflow: hidden;
    margin: 8px 0;
    border: 1px solid #e1e8ff;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(1, 67, 143, 0.1);
}

.table thead.thead-dark {
    background: linear-gradient(135deg, #01438f, #09A1ED) !important;
    border: none;
}

.table thead.thead-dark th {
    border: none;
    padding: 16px 12px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(9, 161, 237, 0.05) !important;
    transform: translateX(4px);
}

.table tbody tr td {
    background: #ffffff !important;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 12px !important;
    font-size: 14px;
    color: #374151 !important;
    transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Booking Buttons
--------------------------------------------------------------*/
.btn-primary.booknow {
    border-radius: 12px !important;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 13px;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.btn-primary.booknow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669, #047857) !important;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: transparent;
    padding: 70px 0 80px;
}

.contact .info,
.contact iframe {
    border-radius: 22px !important;
    box-shadow: 0 20px 45px rgba(15,23,42,0.08);
    border: 1px solid #e5e7eb;
}

.contact .info {
    background: #ffffff;
}

.contact .info h4 {
    font-size: 20px;
    color: #0f172a;
}

.contact .info p {
    color: #4b5563;
}

.contact .info i {

    border-radius: 29px;
    padding: 12px 14px;
    font-size: 26px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #0b1120;
    color: #e5e7eb;
}

#footer .footer-top {
    padding-top: 50px;
}

#footer .footer-top .footer-info {
    border-radius: 22px;
    background: linear-gradient(135deg, #09A1ED, #01438f);
    box-shadow: 0 20px 45px rgba(15,23,42,0.5);
}

#footer .footer-top h4,
#footer .footer-top .footer-links ul li,
#footer .footer-top .footer-links ul a {
    color: #e5e7eb;
}

#footer .footer-top .footer-links ul a:hover {
    color: #bae6fd;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (max-width: 991px) {
    .counts .row.justify-content-center > .col-md-3 {
        flex: 0 0 47%;
        max-width: 47%;
    }

    #hero {
        padding-top: 80px;
        height: 440px;
        background-position: right;
    }

    #hero .animated {
        animation: none;
    }
}

@media (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    .counts .col-md-12 h1 {
        font-size: 24px;
    }

    .counts .col-md-12 h1 br {
        display: block;
    }

    .mob-h3 {
        background: #00000061;
        font-size: 30px;
    }

    .container.bg-white.p-1.mt-1.shadow-sm {
        border-radius: 20px;
        margin: 8px;
        padding: 12px !important;
    }
}

@media (max-width: 576px) {
    .counts {
        padding: 100px 0 70px;
    }

    .counts .row.justify-content-center > .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .counts .card-index .cimg img {
        height: 190px !important;
    }

    #hero .hero-img img {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.mt-sm-3 { margin-top: 2rem; }
.card:hover { scale: 1.05; }
.index-mob-h1 {
    margin: 0 auto;
    width: 75%;
    padding: 5px;
    border-radius: 34px;
}

.mob-h3 {
    font-size: 38px;
    color: white;
    font-weight: 600;
}

@media (min-width: 992px) {
    .index-mob-h1 { width: 36%; }
}

/* Loading States */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loadingText {
    color: white;
    font-size: 24px;
    animation: loadingAnimation 1s infinite;
}

@keyframes loadingAnimation {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Skeleton Loader */
.skeleton-loader {
    position: relative;
    overflow: hidden;
}

.skeleton-cell {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}



/* --- Revamped Deals Section --- */

#features {
    padding: 70px 0 80px;
    background: transparent;
}

.deals-grid {
    row-gap: 2rem;
}

/* Card layout */
.deal-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    border-color: #09A1ED;
}

/* Image + badge */
.deal-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.06);
}

.deal-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #01438f;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

/* Body */
.deal-body {
    padding: 14px 6px 8px;
}

.deal-body .card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
    text-align: left;
}

.deal-body .card-text {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 10px;
    text-align: left;
}

/* Price + CTA */
.deal-footer {
    margin-top: 4px;
}

.deal-price {
    font-size: 13px;
    color: #6b7280;
}

.deal-price span {
    font-size: 16px;
    font-weight: 700;
    color: #059669;
}

/* Make button a bit softer inside card */
.deal-footer .btn.btn-primary.btn-sm {
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .deal-body .card-title {
        font-size: 16px;
    }
    .deal-image img {
        height: 200px;
    }
}
/* === PREMIUM DEAL CARD 2.0 === */

.deal-card-pro {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all .35s ease;
    cursor: pointer;
    position: relative;
}

.deal-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 60px rgba(0,0,0,0.15);
}

/* IMAGE SECTION */
.deal-pro-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.deal-pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
}

.deal-card-pro:hover .deal-pro-img img {
    transform: scale(1.12);
}

/* RIBBON */
.deal-pro-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    letter-spacing: .5px;
}

/* BODY */
.deal-pro-body {
    padding: 18px 20px 22px;
    text-align: left;
}

.deal-pro-title {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.deal-pro-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 18px;
}

/* FOOTER */
.deal-pro-footer {
    display: flex;
    justify-content: flex-end;
}

.deal-pro-btn {
    background: #007bff;
    background: linear-gradient(135deg, #007bff, #00a8ff);
    color: #fff;
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 50px;
    transition: .3s ease;
    font-weight: 600;
    letter-spacing: .3px;
}

.deal-pro-btn:hover {
    background: linear-gradient(135deg, #005fcc, #009fff);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
