/* ------------------------------------
   GLOBAL STYLES
------------------------------------ */
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: #f4f7fb;
    color: #222;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
}

/* Smooth animation */
* {
    transition: 0.3s ease;
}

/* Color palette */
:root {
    --primary: #ff6f61;
    --secondary: #ff9f43;
    --dark: #1a1a1a;
    --light: #ffffff;
}

/* ------------------------------------
   HEADER
------------------------------------ */
header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

.main-menu li {
    display: inline-block;
    margin-left: 25px;
}

.main-menu a {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #444;
    position: relative;
}

.main-menu a:hover {
    color: var(--primary);
}

.main-menu a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

/* ------------------------------------
   HERO SECTION (Glassmorphism)
------------------------------------ */
.hero {
     /*background: url('http://lukvuk.com/lukvuk1/wp-content/uploads/2025/11/WhatsApp-Image-2025-11-17-at-12.05.05_c70a7baa.jpg') ; */
    padding: 160px 20px;
    /* text-align: center; */
    position: relative;
    color: #fff;
        background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    max-width: 700px;
    /* margin: 0 auto 10px; */
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* App buttons */
/* .download-btns a {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 14px 30px;
    border-radius: 12px;
    color: #fff;
    margin: 8px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
}

.download-btns a:hover {
    background: var(--primary);
} */
/* Fix download button layout */
.download-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Remove old background styles */
.download-btns a {
    display: inline-block;
}

/* Image styles */
.download-btns a img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: .3s ease;
}

/* Hover zoom effect */
.download-btns a:hover img {
    transform: scale(1.08);
}


/* ------------------------------------
   PARTNERS SECTION
------------------------------------ */
/* .partners-section {
    padding: 60px 20px;
    text-align: center;
}

.partners-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}


.partners-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
}

.partner-logo {
    min-width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
} */

/* Partner Slider */
.partners-section {
    padding: 70px 20px;
    text-align: center;
}

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.partners-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px;
}

.partner-logo {
    min-width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    transition: .3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.slide-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }



.coupon-slider-section {
    padding: 70px 20px;
    text-align: center;
}

.coupon-slider-section h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.partners-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px;
}

.coupon-card {
    min-width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px;
    transition: 0.3s ease;
    text-align: center;
}

.coupon-card:hover {
    transform: scale(1.05);
}

.coupon-card .coupon-discount {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 5px;
}

.coupon-card .coupon-code {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.coupon-card .coupon-expiry {
    font-size: 12px;
    color: #999;
}

/* Slider buttons */
.coupon-slider-section .slide-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 18px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.coupon-slider-section .prev-btn { left: -20px; }
.coupon-slider-section .next-btn { right: -20px; }

/* ------------------------------------
   OFFER BANNER
------------------------------------ */
/* .offer-banner {
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.offer-banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.countdown {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
} */
.offer-banner {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    padding: 50px 30px;
    text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px;
    color: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

/* Glow Animation */
.offer-banner::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
    animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(50%,50%); }
}

.offer-banner h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-banner p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Countdown Box */
.countdown-box {
    font-size: 28px;
    font-weight: 700;
    padding: 12px 25px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* ------------------------------------
   PARTNER CTA
------------------------------------ */
.partner-cta {
    background: var(--dark);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.partner-cta h2 {
    font-size: 34px;
}

.partner-cta a {
    display: inline-block;
    background: var(--secondary);
    padding: 16px 35px;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.partner-cta a:hover {
    background: var(--primary);
    color: #fff;
}

/* ------------------------------------
   FOOTER
------------------------------------ */
/* FOOTER */
.site-footer {
    background: #111;
    color: #fff;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-desc {
    max-width: 300px;
    line-height: 1.5;
}

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

.footer-menu {
    list-style: none;
    padding: 0;
}
.footer-menu li {
    margin-bottom: 8px;
}
.footer-menu li a {
    color: #ddd;
    text-decoration: none;
}
.footer-menu li a:hover {
    color: #fff;
}

/* Latest posts */
/* .footer-latest-posts {
    list-style: none;
    padding: 0;
}
.footer-latest-posts li {
    margin-bottom: 8px;
}
.footer-latest-posts a {
    color: #ddd;
    text-decoration: none;
}
.footer-latest-posts a:hover {
    color: #fff;
} */

.footer-latest-posts-wrapper {
    max-height: 400px; /* container height for scroll */
    overflow-y: auto;  /* vertical scroll */
    padding-right: 10px; /* space for scrollbar */
    border: 1px solid #333; /* optional, for visual debugging */
}

.footer-latest-posts {
    display: flex;
    flex-direction: column; /* stack posts vertically */
    gap: 15px;
}

.footer-post-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #222;
    color: #fff;
    border-radius: 12px;
    flex-shrink: 0; /* important for proper flex sizing */
}

.footer-post-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.footer-post-card a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-post-card:hover {
    transform: translateX(5px);
    transition: transform 0.3s;
}


/* Social Icons */
.footer-social a {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary); /* or #ffcc00 if you prefer */
}


.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding: 15px 0;
    background: #111;
    color: #ccc;
    font-size: 14px;
}

.footer-bottom a {
    color: #ff6f61;
    text-decoration: none;
    margin: 0 5px;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}


/* ------------------------------------
   RESPONSIVE DESIGN
------------------------------------ */

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
/*         flex-direction: column; */
        gap: 10px;
    }

    .main-menu li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .partner-logo {
        min-width: 110px;
        height: 110px;
    }

    .offer-banner h2 {
        font-size: 28px;
    }

    .partner-cta h2 {
        font-size: 26px;
    }
}
.about-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: auto;
    color: #333;
}

/* Brand Story */
.about-story h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
	line-height:1.5;
}

.about-boxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-box {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: .3s;
}

.about-box:hover {
    transform: translateY(-5px);
}

/* Stats Section */
.about-stats {
    margin: 60px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 15px;
}

.stat-item .counter {
    font-size: 50px;
    font-weight: 700;
    color: #ff6a88;
    display: block;
}

.stat-item p {
    font-size: 18px;
    margin-top: 5px;
}

/* Team Section */
.team-section {
    margin-top: 70px;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.team-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    width: 260px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: .3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}


/* HERO */
.partner-hero {
    background: linear-gradient(135deg, #ff6f61, #ff9f43);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}
.partner-hero h1 { font-size: 48px; margin-bottom: 15px; }

/* BENEFITS */
.partner-benefits {
    padding: 70px 20px;
    text-align: center;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    margin-top: 40px;
}
.benefit-box {
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.benefit-box img { width: 70px; margin-bottom: 15px; }

/* ONBOARDING */
.onboarding-section {
    background: #fafafa;
    padding: 70px 20px;
    text-align: center;
}
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    margin-top: 40px;
}
.step-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}
.step-box span {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #ff6f61;
    color: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
}

/* TESTIMONIALS */
/* Main section */
.partner-testimonials {
    padding: 70px 20px;
    text-align: center;
}

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
}

.testimonial-card {
    min-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 6px 18px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.testi-prev { left: -20px; }
.testi-next { right: -20px; }
/* Hide scrollbar */
.testimonial-slider {
    -ms-overflow-style: none;  /* IE & Edge */
    scrollbar-width: none;     /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;  /* Chrome, Safari */
}



/* CTA */
.partner-cta {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.partner-cta .cta-btn {
    background: #ff9f43;
    padding: 16px 40px;
    font-size: 20px;
    border-radius: 10px;
    display: inline-block;
    color: #111;
    text-decoration: none;
    font-weight: 600;
}
.partner-cta .cta-btn:hover {
    background: #ff6f61;
    color: #fff;
}
/* ------------------------------------------------
   COUPON PAGE STYLES
-------------------------------------------------- */
.coupon-page {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.coupon-page h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Filters */
.coupon-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.coupon-filters select {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
}

/* Grid */
.coupon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.coupon-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    position: relative;
    transition: .3s;
}

.coupon-card:hover {
    transform: translateY(-6px);
}

.coupon-discount {
    font-size: 32px;
    font-weight: 700;
    color: #ff6f61;
}

.coupon-code {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    background: #ffe9e7;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

.coupon-city {
    margin-top: 12px;
    font-size: 15px;
    color: #555;
}

.coupon-expiry {
    margin-top: 10px;
    font-size: 15px;
    color: #ff4747;
    font-weight: 600;
}

.apply-btn {
    margin-top: 15px;
    display: inline-block;
    background: #ff6f61;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.apply-btn:hover {
    background: #e4574f;
}

/* Terms link */
.terms-link {
    margin-top: 10px;
    display: block;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    color: #333;
}

/* -------------------------------------------
   MODAL
-------------------------------------------*/
.coupon-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.coupon-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.coupon-modal-content h3 {
    margin-bottom: 15px;
}

.modal-close {
    padding: 10px 20px;
    margin-top: 20px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.careers-page {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

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

.section-subtitle {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

/* Filter Bar */
.filter-bar {
    text-align: center;
    margin: 30px 0;
}
.filter-bar select {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Job Cards */
.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.job-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: .3s ease;
}
.job-card:hover {
    transform: translateY(-5px);
}
.job-btn {
    display: inline-block;
    background: #ff6f61;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    margin-top: 10px;
}

/* Internship Box */
.internship-box {
    background: #f8f8ff;
    padding: 40px;
    border-radius: 16px;
    margin-top: 60px;
    text-align: center;
}
.apply-btn {
    background: #ff6f61;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 15px;
}

/* Job Popup */
.job-popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.job-popup-content {
    background: #fff;
    padding: 40px;
    width: 500px;
    border-radius: 14px;
    position: relative;
}
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
}

/* Apply Form */
.apply-box {
    margin-top: 70px;
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}
.apply-box form input,
.apply-box form select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}
.submit-btn {
    background: #ff6f61;
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.blog-page {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.blog-categories {
    text-align: center;
    margin-bottom: 40px;
}

.cat-btn {
    padding: 10px 18px;
    margin: 5px;
    background: #eee;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
    font-size: 15px;
}

.cat-btn.active,
.cat-btn:hover {
    background: #ff6f61;
    color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 25px;
    justify-content: center;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .content {
    padding: 18px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card p {
    color: #555;
    margin-bottom: 12px;
}

.read-more {
    color: #ff6f61;
    font-weight: bold;
}

.share {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.share a {
    background: #eee;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.single-blog {
    max-width: 850px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Hero Section */
.blog-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.blog-hero .meta {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.hero-img img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* Blog Content */
.blog-content {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Share Buttons */
.share-box {
    text-align: center;
    margin: 40px 0;
}

.share-box a {
    display: inline-block;
    margin: 8px;
    padding: 8px 14px;
    border-radius: 6px;
    background: #eee;
    text-decoration: none;
    font-size: 14px;
}

.share-box a:hover {
    background: #ff6f61;
    color: #fff;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.author-box img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* Navigation */
.post-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.post-nav a {
    color: #ff6f61;
    font-weight: bold;
}

/* Related Posts */
.related-title {
    margin-bottom: 15px;
    font-size: 24px;
}

.related-posts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.related-card {
    width: 250px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    text-decoration: none;
    color: #000;
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 12px;
    font-size: 16px;
}
.refund-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    line-height: 1.7;
    font-family: Arial, sans-serif;
    color: #333;
}
.refund-container h1 {
    color: #ff6f61;
    margin-bottom: 20px;
}
.refund-container h3 {
    color: #ff6f61;
    margin-top: 30px;
}
.refund-container ul {
    margin-left: 20px;
}
.refund-container strong {
    color: #000;
}

.privacy-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    line-height: 1.7;
    color: #333;
    font-family: Arial, sans-serif;
}
.privacy-container h1 {
    color: #ff6f61;
    margin-bottom: 20px;
}
.privacy-container h3 {
    margin-top: 30px;
    color: #ff6f61;
}
.privacy-container strong {
    color: #000;
}
.privacy-container ul {
    margin-left: 20px;
}
.terms-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    line-height: 1.7;
    color: #333;
    font-family: Arial, sans-serif;
}
.terms-container h1 {
    color: #ff6f61;
    margin-bottom: 20px;
}
.terms-container h3 {
    margin-top: 30px;
    color: #ff6f61;
}
.terms-container p {
    margin-bottom: 15px;
}

.contact-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-form, .contact-info {
    flex: 1 1 400px;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input[type="submit"] {
    background: var(--primary);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
    background: #e85a50;
}

.success-msg {
    color: green;
}

.error-msg {
    color: red;
}

.contact-info h3 {
    margin-bottom: 10px;
}

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

.contact-map iframe {
    border-radius: 12px;
    margin-top: 15px;
}