/* =========================
   GLOBAL STYLES
========================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}


/* =========================
   NAVBAR
========================= */

/***************************************************
    MAIN HEADER WRAPPER
****************************************************/
#mainHeader {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

/***************************************************
    LOGO
****************************************************/
#mainHeader .brand img {
    height: 70px;
    width: auto;
}

/***************************************************
    DESKTOP MENU
****************************************************/
#mainHeader nav a {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

#mainHeader nav a:hover {
    color: #f39c12 !important; /* Gold hover effect */
}

/***************************************************
    MORE DROPDOWN (Desktop)
****************************************************/
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu-custom {
    position: absolute;
    top: 35px;
    right: 0;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    display: none;
    min-width: 180px;
    border: 1px solid #eee;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
}

.dropdown-menu-custom li {
    padding: 8px 18px;
}

.dropdown-menu-custom li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    display: block;
}

.dropdown-menu-custom li:hover {
    background: #f8f8f8;
}

.dropdown:hover .dropdown-menu-custom {
    display: block;
}

/***************************************************
    MOBILE MENU
****************************************************/
#mobileMenuBtn {
    border-radius: 6px;
}

#mobileMenu {
    background: #ffffff;
    border-top: 1px solid #ddd;
}

#mobileMenu nav a {
    font-size: 17px;
    color: #111;
    font-weight: 500;
    text-decoration: none;
}

#mobileMenu nav a:hover {
    color: #f39c12 !important;
}

/***************************************************
    OPTIONAL: MOBILE MENU ANIMATION
****************************************************/
#mobileMenu {
    animation: slideDown .3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}


/* =========================
   HERO SECTION
========================= */

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-img {
    height: 75vh;
    object-fit: cover;
    object-position: center;
}

/* Text Overlay */
.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.hero-overlay-content h1,
.hero-overlay-content p {
    text-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Smooth Slide */
.carousel-item {
    transition: transform 1.2s ease-in-out;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .hero-img {
        height: 55vh;
    }
    .hero-overlay-content h1 {
        font-size: 30px;
    }
    .hero-overlay-content p {
        font-size: 16px;
    }
}

/* ---- FIX POSITION & SIZE COMPLETELY ---- Fade Animation*/
.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    z-index: 20 !important;
}

/* Left and Right positioning */
.carousel-control-prev {
    left: 20px !important;
}
.carousel-control-next {
    right: 20px !important;
}

/* ---- GLASS BUTTON DESIGN ---- */
.glass-btn {
    background: rgba(255, 255, 255, 0.18) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hover */
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    transform: translateY(-50%) scale(1.07) !important;
}

/* ---- MAKE ARROWS WHITE & SMALL ---- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1) !important;
    width: 20px !important;
    height: 20px !important;
    background-size: 20px 20px !important;
}

/* Remove huge default hitbox shadow */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent !important;
}


/* =========================
   TOUR CARDS
========================= */

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.card h5 {
    font-weight: 700;
}

.card p {
    color: #777;
}


/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-dark {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-warning {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonial-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 15px;
}


/* -------- FOOTER STYLE -------- */

footer {
    background: #111;
    padding: 50px 0;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #fff;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
}

.social-icons a:hover {
    color: #d4a76a;
}

footer .copyright {
    text-align:center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   FAQ Accordion
========================= */

/* ================= PREMIUM HERO ================= */
/* ITINERARY HERO (simple, mobile-friendly) */
.itinerary-hero {
    display:flex;
    align-items:center;
    color:#fff;
    position:relative;
}
.itinerary-hero::after {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}
.itinerary-title-box {
    position:relative;
    z-index:2;
    text-align:center;
}
.itinerary-breadcrumb {
    font-size:16px;
    color:#eee;
}

.itinerary-breadcrumb a {
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.itinerary-breadcrumb a:hover {
    text-decoration:underline;
}

@media (max-width:767px) {
    .itinerary-breadcrumb {
        font-size:14px;
    }
}
@media (max-width: 767px) {
    .itinerary-hero {
        height:40vh !important;
        text-align:center;
    }
    .itinerary-hero h1 {
        font-size:28px !important;
    }
    .itinerary-hero p {
        font-size:16px;
    }
}

/* ================= HIGHLIGHTS BAR ================= */
.highlights-bar {
    background:#fff; padding:15px 0; border-bottom:1px solid #eee;
}
.highlight { font-size:15px; color:#444; }

/* ================= ITINERARY LAYOUT ================= */
.premium-itinerary-layout {
    display:grid;
    grid-template-columns: 25% 75%;
    gap:30px;
    margin-top:30px;
}

/* Sticky Left Navigation */
.itinerary-nav ul {
    list-style:none;
    padding:0;
    position:sticky;
    top:120px;
}
.itinerary-nav li {
    background:#f8f3eb;
    padding:12px 15px;
    margin-bottom:10px;
    border-radius:6px;
    cursor:pointer;
    font-weight:600;
}
.itinerary-nav li.active {
    background:#e3d2b5;
    border-left:4px solid #b28f5a;
}

/* Right Content */
.day-block {
    padding:30px 0;
    border-bottom:1px dashed #d6c5b0;
}
.day-block h4 {
    font-size:18px; color:#8b6f54; margin:0;
}
.day-block h3 {
    font-size:26px;
    color:#3b2b1e;
    margin:5px 0 12px;
}
.day-block p {
    font-size:16px; line-height:1.8;
}

/* ================= INCLUSIONS LIST ================= */
.list-premium { list-style:none; padding:0; }
.list-premium li {
    background:#fff;
    padding:10px 15px;
    margin-bottom:8px;
    border-radius:6px;
    box-shadow:0 2px 4px rgba(0,0,0,0.05);
}
/* ================= Tour Map Ending ================= */
/* Map Wrapper Fix */
.map-wrapper {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.route-map-image {
    width: 100%;
    display: block;
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .map-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    .route-map-image {
        border-radius: 8px;
    }
}
/* ================= Tour Map Ending ================= */

/* ================= BOOKING FORM ================= */
.booking-card {
    max-width:700px;
}
.booking-card label { font-weight:600; }

/* ================= MOBILE CTA ================= */
.mobile-cta-bar {
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#fff;
    padding:10px;
    box-shadow:0 -2px 10px rgba(0,0,0,0.15);
    z-index:9999;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .premium-itinerary-layout {
        grid-template-columns: 1fr;
    }
    .itinerary-nav ul { 
        display:flex; 
        gap:10px; 
        overflow-x:auto; 
        white-space:nowrap;
    }
    .itinerary-nav li {
        flex:0 0 auto;
        padding:10px 12px;
    }
}

@media (max-width: 767px) {
    .premium-hero { height:45vh; text-align:center; }
    .hero-content h1 { font-size:32px; }
    .hero-meta { flex-direction:column; gap:5px; }
}


/*Reviews CSS*/
.review-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.review-slider::-webkit-scrollbar {
    height: 6px;
}

.review-slider::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.review-card {
    min-width: 350px;
    max-width: 350px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.review-card .quote {
    font-size: 40px;
    color: #2ecc71;
}

.stars {
    font-size: 20px;
    color: #ffc107;
    margin: 10px 0;
}

.review-text {
    color: #555;
    min-height: 80px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.review-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h6 {
    margin: 0;
    font-weight: 600;
}

.review-user small {
    color: gray;
}
/*Reviews CSS End*/

/*tripadvisor-rajasthancab-css*/
.testimonial-section {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-title span {
    color: #008060;
}

.section-subtitle {
    font-size: 15px;
    color: #5a5a5a;
}

.brand-logos .brand-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}

.testimonial-awards .award-img {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.success-wrap {
    padding-right: 20px;
}

/* Bravo box custom correction if needed */
.bravoBox {
    background: #00a680;
    color: #fff;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}

.bravoText {
    font-size: 20px;
    font-weight: bold;
}
/*tripadvisor-rajasthancab-css ends*/

/* Contact Us Page*/
/* PAGE CONTENT WRAPPER */
.page-content {
    padding: 60px 0;
}

/* GENERAL BOX STYLE */
.content-section {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* FORM */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form textarea {
    height: 120px;
}

/* BUTTON */
.contact-form .btn {
    background: #c49b63;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form .btn:hover {
    background: #a9824f;
}

/* CONTACT INFO SECTION */
.contact-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #444;
    font-weight: 600;
}

.contact-info p {
    margin: 0 0 5px;
    color: #555;
}

/* FAQ */
.faq-item {
    padding: 20px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* SOCIAL ICONS */
.social-icons a {
    margin-right: 12px;
    font-size: 22px;
    color: #444;
    text-decoration: none;
}

.social-icons a:hover {
    color: #c49b63;
}

/* GRID 2-COLUMN LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/*home button-top*/
.butn-top {
    margin-top: 6px;
}

/*Luxury Intro Section*/
.luxury-intro-section {
    padding: 90px 0;
    background: #f8f8f8; 
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
}

.luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.luxury-features .feature-box {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-box i {
    font-size: 40px;
    color: #c19d53;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 15px;
    color: #555;
}

.luxury-image-stack {
    position: relative;
    width: 100%;
}

.luxury-image-stack img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.img-main {
    transform: rotate(-3deg);
}

.img-top {
    position: absolute;
    width: 70%;
    bottom: -20px;
    right: -20px;
    transform: rotate(4deg);
}

/* Right Text */
.luxury-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .luxury-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .img-top {
        position: relative;
        width: 80%;
        bottom: 0;
        right: 0;
        margin-top: -60px;
    }
}
/* Arrows inside luxury image */
.lux-arrow {
    position: absolute;
    top: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s ease;
}

.lux-arrow:hover {
    background: rgba(255, 255, 255, 0.30);
}

/* White arrows */
.lux-arrow span {
    filter: brightness(0) invert(1) !important;
    width: 20px;
    height: 20px;
}

/* Arrow Positioning */
.lux-prev {
    left: 20px;
}

.lux-next {
    right: 20px;
}
/*Tour -card-design*/
/* Royal Heading */
.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    color: #7a4a24;
    letter-spacing: 1px;
    position: relative;
    margin-bottom: 40px;
}

.section-heading::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #b88a47, #d9b67a);
    margin: 12px auto 0;
    display: block;
    border-radius: 2px;
}

/* Royal Card */
.royal-card {
    background: #fffdfa;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(136, 100, 36, 0.18);
    transition: all .4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.royal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* Image Section */
.royal-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #e8d8c3; /* divider line fixes mixed-edge issue */
}

.royal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.royal-card:hover .royal-img-wrapper img {
    transform: scale(1.08);
}

/* Gold Overlay on Image */
.royal-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.3));
}

/* Card Body */
.royal-card .card-body {
    padding: 18px 20px;
    background: #fffdfa;
    border-radius: 0 0 16px 16px;
}

/* Title */
.royal-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: #5d3b1f;
    margin-bottom: 10px;
}

/* General Text */
.royal-card p {
    color: #6d6d6d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Duration & Destination */
.royal-info {
    color: #5d3b1f;
    margin-bottom: 14px;
}

.highlight {
    color: #a82727;
    font-weight: 600;
}

/* Price */
.royal-price {
    font-size: 1rem;
    margin: 12px 0;
}

.royal-price span {
    color: #c17c2a;
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- WhatsApp Button --- */
.royal-whatsapp-btn {
    background: #25D366; /* Official WhatsApp green */
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* spacing between icon + text */
    font-size: 0.95rem;
    transition: .3s ease;
    border: none;
}

.royal-whatsapp-btn i {
    font-size: 1rem;
}

.royal-whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff !important;
}


/* --- View More Button --- */
.royal-btn {
    background: #005eff; /* clean premium blue */
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.95rem;
    transition: .3s ease;
    border: none;
}

.royal-btn i {
    font-size: 1rem;
}

.royal-btn:hover {
    background: #004cd4;
}
/* why choose us */
/* Section Heading (reuse your royal heading style) */
.why-section .section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #7a4a24;
    position: relative;
}

.why-section .section-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #c19a6b, #e2c48a);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Why Box */
.why-box {
    background: #fffefa;
    border-radius: 18px;
    padding: 28px 22px;
    border: 1px solid rgba(136, 100, 36, 0.18);
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: .3s ease;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Icon Circle */
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #f5e9d1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #b07a35;
    border: 1px solid rgba(136, 100, 36, 0.2);
}

/* Titles */
.why-box h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #5d3b1f;
}

/* Text */
.why-box p {
    color: #6b6b6b;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* =============================
   Tours Page Styling
============================= */

.tour-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 50px;
    background: #fff;
    transition: all 0.3s ease;
}

.tour-card:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.tour-number {
    font-size: 18px;
    font-weight: 700;
    color: #c06b00;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-title {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

.tour-card img {
    border-radius: 12px;
    width: 100%;
}
/* Responsive fixes */
@media(max-width: 768px) {
    .tour-title { font-size: 22px; }
    .tour-card { padding: 25px; }
}
/* Table of Contents */
.toc-box {
    border-left: 4px solid #ff9800;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.2s;
}

.toc-list li a:hover {
    color: #ff9800;
    padding-left: 3px;
}
@media (min-width: 992px) {
    .toc-box {
        position: sticky;
        top: 110px;
        z-index: 20;
    }
}
/*home blog css */
.home-blog-wrapper {
    background: #fffaf3;
}

/* Cards */
.home-blog-card {
    border: 1px solid #f2e4d1;
    border-radius: 16px;
    background: #fffdf9;
    overflow: hidden;
    transition: .3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    border-color: #e8d3b5;
}

/* Image */
.home-blog-img img {
    border-bottom: 1px solid #f5e7d3;
}

/* Badge + Icon */
.home-blog-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-blog-badge {
    font-size: 12px;
    border-radius: 20px;
}

/* Read More */
.home-blog-readmore {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: none;
    color: var(--peacock-blue);
}

.home-blog-readmore:hover {
    text-decoration: underline;
    color: var(--royal-red);
}

/* Sub-list */
.home-sub-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 15px;
}

.home-sub-list li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

