/*============================================================
  MODERN CUSTOM CSS - Responsive Design for Stake Website
  Modern, clean, and fully responsive across all device platforms
============================================================*/

/* ===== CSS Custom Properties (Variables) ===== */
:root {
    --primary-color: #06C755;
    --primary-hover: #05a148;
    --secondary-color: #f5b400;
    --accent-pink: #FF324D;
    --dark-text: #292b2c;
    --light-text: #687188;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ===== Modern Section Styling ===== */
.section {
    padding: 60px 0;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.02) 0%, rgba(245, 180, 0, 0.02) 100%);
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* ===== Modern Heading Styles ===== */
.modern-heading {
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.modern-heading::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 50px; height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.text-center .modern-heading::after { left: 50%; transform: translateX(-50%); }
.text-start .modern-heading::after,
.text-left .modern-heading::after { left: 0; transform: none; }

/* ===== Carousel / Banner Styles ===== */
.banner_section { position: relative; overflow: hidden; }
.carousel-item { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-fade .carousel-item { transition: opacity 0.8s ease-in-out; }
.carousel-caption { padding: 20px; text-shadow: none; }

.banner-content .badge {
    font-weight: 600; padding: 8px 18px; border-radius: var(--radius-full);
    letter-spacing: 0.5px; text-transform: uppercase; font-size: 13px;
}

.banner-content h2 {
    font-weight: 700; line-height: 1.1; letter-spacing: -0.5px;
    margin-bottom: 1rem; text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.banner-content .lead {
    font-weight: 300; font-size: 1.1rem; line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.15);
}

.banner-content .btn-primary {
    background: var(--primary-color); border-color: var(--primary-color);
    padding: 12px 32px; border-radius: var(--radius-full);
    font-weight: 600; text-transform: uppercase; font-size: 15px;
    letter-spacing: 1px; transition: var(--transition);
}

.banner-content .btn-primary:hover {
    background: var(--primary-hover); border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.9); border: none;
    box-shadow: var(--shadow-md); transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #fff; transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.carousel-control-prev { left: 15px; }
.carousel-control-next { right: 15px; }

.carousel-indicators { bottom: 15px; }
.carousel-indicators li {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}
.carousel-indicators li.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
        transform: scale(1.2);
}

/* ===== Category Card Styles ===== */
.category_card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-img-wrapper {
    width: 100%; height: 120px;
    display: flex; align-items: center; justify-content: center;
    background: #f8f9fa; padding: 15px; overflow: hidden;
}

.category-img-wrapper img {
    max-height: 80px; max-width: 80px; width: auto;
    transition: var(--transition);
}

.category_card:hover .category-img-wrapper img {
    transform: scale(1.1);
}

.category-body { padding: 15px 20px; text-align: center; }
.category-name { font-size: 16px; font-weight: 600; color: var(--dark-text); margin-bottom: 5px; line-height: 1.3; }
.category-count { font-size: 13px; color: var(--light-text); background: #e9ecef; display: inline-block; padding: 2px 10px; border-radius: var(--radius-full); }

/* ===== Service Card Styles ===== */
.service_card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-img { position: relative; overflow: hidden; }
.service-img img {
    width: 100%; height: 180px; object-fit: cover; transition: var(--transition);
}
.service_card:hover .service-img img { transform: scale(1.08); }

.service-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 199, 85, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
    backdrop-filter: blur(2px);
}
.service_card:hover .service-overlay { opacity: 1; }
.service-text { color: #fff; text-align: center; padding: 0 10px; }
.service-text h5 { font-weight: 600; font-size: 16px; margin: 0; }

/* ===== Product Card Styles ===== */
.product_card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%; display: flex; flex-direction: column;
}

.product_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-img,
.product-card-img {
    width: 100%; height: 200px; object-fit: cover; transition: var(--transition);
}
.product_card:hover .product-img { transform: scale(1.05); }

.product_card .card-body {
    flex: 1; display: flex; flex-direction: column;
    padding: 15px 20px;
}

.product_card .card-title {
    font-size: 16px; font-weight: 600; color: var(--dark-text);
    margin-bottom: 10px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}

.product_card .card-text { font-size: 15px; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }

.product_card .btn-primary {
    background: var(--primary-color); border-color: var(--primary-color);
    padding: 8px 20px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px; transition: var(--transition); width: 100%;
}
.product_card .btn-primary:hover {
    background: var(--primary-hover); border-color: var(--primary-hover);
    transform: translateY(-1px);
}

.product_card .badge.bg-danger {
    background: var(--accent-pink) !important;
    font-size: 11px; padding: 4px 8px;
    border-radius: var(--radius-sm); font-weight: 600;
}

/* ===== Product Action Buttons (LINE + Detail) ===== */
.product-btns { gap: 8px; }

/* LINE button — official LINE green (#06C755) */
.product-card .btn-line,
.btn-line {
    background: #06C755; border: 1px solid #06C755;
    color: #fff !important; font-weight: 600;
    padding: 8px 10px; border-radius: var(--radius-sm);
    text-transform: none; font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}
.product-card .btn-line:hover,
.btn-line:hover {
    background: #00B84C; border-color: #00B84C; color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
}

/* Detail button — blue */
.product-card .btn-detail,
.btn-detail {
    background: #1a73e8; border: 1px solid #1a73e8;
    color: #fff !important; font-weight: 600;
    padding: 8px 10px; border-radius: var(--radius-sm);
    text-transform: none; font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}
.product-card .btn-detail:hover,
.btn-detail:hover {
    background: #1557b0; border-color: #1557b0; color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* ===== Icon Box Styles ===== */
.icon_box {
    text-align: center; padding: 25px 20px;
    border-radius: var(--radius-md); background: #fff;
    box-shadow: var(--shadow-sm); height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex; flex-direction: column; align-items: center;
}

.icon_box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.icon_box .icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--primary-color); display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 18px; color: #fff; font-size: 30px;
    transition: var(--transition); flex-shrink: 0;
}

.icon_box:hover .icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.icon_box_content h5 { font-size: 17px; font-weight: 600; color: var(--dark-text); margin-bottom: 10px; line-height: 1.4; }
.icon_box_content p { font-size: 14px; color: var(--light-text); line-height: 1.7; margin-bottom: 0; }

/* ===== Tab/Nav Styles ===== */
.tab-style1 .nav-tabs {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0; margin-bottom: 25px;
}

.tab-style1 .nav-item { margin-bottom: -2px; }

.tab-style1 .nav-link {
    border: 1px solid transparent; border-bottom: none;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    padding: 12px 28px; font-weight: 600; font-size: 15px;
    color: var(--dark-text); background: #f8f9fa;
    margin-right: 5px; transition: var(--transition);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.tab-style1 .nav-link:hover { background: var(--primary-color); color: #fff; }
.tab-style1 .nav-link.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* ===== "View All" Button Link ===== */
.view-all-link {
    font-weight: 600; font-size: 14px; color: var(--primary-color);
    text-decoration: none; padding: 6px 16px; border-radius: var(--radius-sm);
    transition: var(--transition); display: inline-flex; align-items: center;
}
.view-all-link:hover { background: var(--primary-color); color: #fff; }
.view-all-link i { margin-left: 5px; }

/* ===== Floating Contact Buttons ===== */
.floating-contact {
    position: fixed; right: 20px; bottom: 30px;
    z-index: 9999; display: flex;
    flex-direction: column; gap: 12px;
}

.contact-item { display: flex; align-items: center; justify-content: flex-end; text-decoration: none; }

.contact-item .label {
    background: var(--dark-text); color: #fff;
    padding: 10px 18px; border-radius: var(--radius-full);
    margin-right: 10px; opacity: 0;
    transform: translateX(100%); transition: var(--transition);
    white-space: nowrap; font-size: 13px; font-weight: 600;
}
.contact-item:hover .label { opacity: 1; transform: translateX(0); }

.contact-item i {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; box-shadow: var(--shadow-md);
    transition: var(--transition); flex-shrink: 0;
}
.contact-item:hover i { transform: scale(1.1); }

.phone i { background: var(--secondary-color); }
.line i { background: var(--primary-color); }
.facebook i { background: #1877f2; }

/* ===== Back to Top Button ===== */
.scrollup {
    position: fixed; bottom: 30px; right: 20px;
    z-index: 9999; width: 48px; height: 48px;
    border-radius: 50%; background: var(--primary-color); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); transition: var(--transition);
    opacity: 0; visibility: hidden;
}
.scrollup.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scrollup i { font-size: 20px; }

/* ===== Newsletter Styles ===== */
.newsletter_form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter_form input {
    flex: 1; min-width: 200px; height: 46px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 0 20px; font-size: 15px; outline: none;
    transition: var(--transition);
}
.newsletter_form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 199, 85, 0.2);
}
.newsletter_form button {
    background: var(--primary-color); border: none; color: #fff;
    padding: 0 28px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 15px; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
}
.newsletter_form button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* ===== Footer Styles (Modern Redesign) ===== */
.site-footer {
    background: linear-gradient(180deg, #202225 0%, #17181a 100%);
    color: #a8b0ba;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* CTA strip */
.footer_cta_strip {
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.14) 0%, rgba(245, 180, 0, 0.07) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 26px 0;
}
.footer_cta_strip h3 {
    color: #fff; font-size: 22px; font-weight: 700;
    margin: 0 0 4px;
}
.footer_cta_strip p { color: #9aa3ad; margin: 0; font-size: 14.5px; }

.btn-call-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff !important; font-weight: 600;
    padding: 10px 22px; border-radius: var(--radius-full);
    transition: var(--transition); white-space: nowrap;
}
.btn-call-light:hover {
    background: var(--secondary-color); border-color: var(--secondary-color);
    transform: translateY(-2px);
}
.footer_cta_strip .btn-line { padding: 10px 26px; }

/* Main columns */
.footer_main { padding: 45px 0 35px; }

.footer_heading {
    color: #fff; font-size: 16.5px; font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 22px; position: relative; padding-bottom: 10px;
}
.footer_heading::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 34px; height: 2.5px;
    background: var(--primary-color); border-radius: 3px;
}

/* Col 1 : About */
.footer_about img { max-height: 52px; margin-bottom: 16px; width: auto; }
.footer_about p { color: #9aa3ad; font-size: 14px; line-height: 1.95; margin-bottom: 0; }

.social_round { display: flex; gap: 10px; margin-top: 18px; }
.social_round a {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #cfd5db; font-size: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}
.social_round a.fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; transform: translateY(-3px); }
.social_round a.line:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: translateY(-3px); }
.social_round a.call:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: #fff; transform: translateY(-3px); }

/* Col 2 : Quick links */
.footer_links { list-style: none; margin: 0; padding: 0; }
.footer_links li { margin-bottom: 11px; }
.footer_links a {
    color: #a8b0ba; font-size: 14px;
    display: inline-flex; align-items: center;
    transition: all 0.25s ease;
}
.footer_links a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900; font-style: normal;
    font-size: 11px; color: var(--primary-color);
    margin-right: 9px;
    transition: margin 0.25s ease;
}
.footer_links a:hover { color: #fff; transform: translateX(4px); }

/* Col 3 : Contact */
.footer_contact { list-style: none; margin: 0; padding: 0; }
.footer_contact li {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 14px; font-size: 13.5px; line-height: 1.7;
    color: #a8b0ba;
}
.footer_contact li i {
    color: var(--primary-color);
    width: 18px; text-align: center; margin-top: 4px;
    flex-shrink: 0;
}
.footer_contact li a { color: #ccd2d9; }
.footer_contact li a:hover { color: #fff; }
.footer_contact li small { color: #7d8590; font-size: 12px; }

/* Col 4 : QR */
.qr_box {
    background: #fff; padding: 10px;
    border-radius: 14px; display: inline-block;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.qr_box img { width: 132px; height: 132px; object-fit: contain; display: block; }
.qr_caption { color: #8b939d; font-size: 13px; line-height: 1.7; margin-top: 12px; margin-bottom: 0; }

/* Bottom bar */
.site-footer .bottom_footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 16px 0; margin-top: 15px;
    position: relative; z-index: 1;
}
.site-footer .bottom_footer p { color: #7d8590; font-size: 13px; margin: 0; }

/* ===== Generic Responsive Helpers ===== */
.d-none-mobile { display: none !important; }
.text-center-mobile { text-align: center !important; }

/* =====================================================
   DESKTOP (min-width: 1200px) — Large Desktop
   ===================================================== */
@media (min-width: 1400px) {
    .container { max-width: 1140px; }
    .banner-content h2 { font-size: 3.5rem; }
    .heading_s1 h2, .heading_s4 h2 { font-size: 2.2rem; }
}

@media (min-width: 1680px) {
    .container, .custom-container { max-width: 1650px; }
}

/* =====================================================
   LAPTOP (min-width: 992px) — Desktop
   ===================================================== */
@media (min-width: 992px) {
    .banner-content h2 { font-size: 2.8rem; }
    .heading_s1 h2, .heading_s4 h2 { font-size: 2rem; }

    /* Navbar hover dropdowns already work on desktop */
    .navbar .navbar-nav li > .dropdown-menu {
        display: block !important;
        opacity: 0; visibility: hidden;
        margin-top: 10px; transition: var(--transition);
    }
    .navbar .navbar-nav li:hover > .dropdown-menu {
        opacity: 1; visibility: visible; margin-top: 0;
    }
}

/* =====================================================
   TABLET (min-width: 768px) and (max-width: 991px)
   ===================================================== */
@media (min-width: 768px) and (max-width: 991px) {
    .section { padding: 50px 0; }
    .banner-content h2 { font-size: 2.2rem; }

    .category-img-wrapper { height: 100px; }
    .category-img-wrapper img { max-height: 65px; max-width: 65px; }

    .service-img img { height: 150px; }
    .product-img, .product-card-img { height: 170px; }

    .tab-style1 .nav-link { padding: 10px 20px; font-size: 14px; margin-right: 3px; }

    .floating-contact { right: 15px; bottom: 80px; }
}

/* =====================================================
   PHABLET (min-width: 576px) and (max-width: 767px)
   ===================================================== */
@media (min-width: 576px) and (max-width: 767px) {
    .section { padding: 45px 0; }
    .banner-content h2 { font-size: 1.8rem; }
    .banner-content .lead { font-size: 1rem; }
    .banner-content .btn-primary { padding: 10px 28px; font-size: 14px; }
    .heading_s1 h2, .heading_s4 h2 { font-size: 1.6rem; }

    .category-img-wrapper { height: 85px; }
    .category-img-wrapper img { max-height: 55px; max-width: 55px; }

    .product-img, .product-card-img { height: 160px; }
    .icon_box { padding: 20px 15px; }
    .icon_box .icon { width: 60px; height: 60px; font-size: 24px; }

    .tab-style1 .nav-link { padding: 8px 15px; font-size: 12px; }
    .floating-contact { right: 10px; bottom: 15px; }
        .contact-item i { width: 48px; height: 48px; font-size: 20px; }
}

/* =====================================================
   MOBILE (max-width: 575px) — Portrait Phone
   ===================================================== */
@media (max-width: 575px) {
    .section { padding: 35px 0; }
    .banner-content h2 { font-size: 1.5rem; line-height: 1.2; }
    .banner-content .lead { font-size: 0.95rem; margin-bottom: 15px; }
    .banner-content .btn-primary { padding: 8px 24px; font-size: 13px; width: 100%; }
    .heading_s1 h2, .heading_s4 h2 { font-size: 1.4rem; }

    .carousel-control-prev, .carousel-control-next { width: 38px; height: 38px; }
    .carousel-indicators li { width: 10px; height: 10px; }

    .category-img-wrapper { height: 75px; }
    .category-img-wrapper img { max-height: 50px; max-width: 50px; }
    .category-name { font-size: 14px; }
    .category-count { font-size: 11px; }

    .service-img img { height: 130px; }
    .product-img, .product-card-img { height: 150px; }
    .product_card .card-title { font-size: 14px; }
    .product_card .card-text { font-size: 14px; }

    /* Tabs on mobile - stack vertically */
    .tab-style1 .nav-tabs { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
    .tab-style1 .nav-item { flex: 1 1 auto; }
    .tab-style1 .nav-link { padding: 8px 12px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .icon_box { padding: 20px 15px; }
    .icon_box .icon { width: 55px; height: 55px; font-size: 22px; margin-bottom: 15px; }
    .icon_box_content h5 { font-size: 15px; }
    .icon_box_content p { font-size: 13px; }

    /* Floating contact */
    .floating-contact { right: 10px; bottom: 10px; gap: 8px; }
    .contact-item i { width: 44px; height: 44px; font-size: 18px; }
    .contact-item .label { display: none; }

    /* Footer */
    .footer_dark { font-size: 14px; }
    .bottom_footer .row { flex-direction: column; gap: 10px; }
    .footer_payment { justify-content: center; }

    /* Newsletter form */
    .newsletter_form { flex-direction: column; }
    .newsletter_form input, .newsletter_form button { width: 100%; }
}

/* =====================================================
   Extra small devices (< 480px)
   ===================================================== */
@media (max-width: 480px) {
    .banner-content h2 { font-size: 1.3rem; }
    .category-img-wrapper { height: 65px; }
    .category-img-wrapper img { max-height: 45px; max-width: 45px; }
    .category-name { font-size: 13px; }
    .product-img, .product-card-img { height: 130px; }
    .contact-item i { width: 40px; height: 40px; font-size: 16px; }
}

/* =====================================================
   Landscape mode adjustments
   ===================================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .section { padding: 25px 0; }
    .banner-content h2 { font-size: 1.4rem; }
    .product-img, .product-card-img { height: 120px; }
    .floating-contact { bottom: 10px; }
}

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

/* ===== Fade-in Animation ===== */
.fade-in-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.animate { opacity: 1; transform: translateY(0); }

/* ===== Staggered Animation for cards ===== */
.stagger-delay-1 { animation-delay: 0.1s; }
.stagger-delay-2 { animation-delay: 0.2s; }
.stagger-delay-3 { animation-delay: 0.3s; }
.stagger-delay-4 { animation-delay: 0.4s; }
.stagger-delay-5 { animation-delay: 0.5s; }
.stagger-delay-6 { animation-delay: 0.6s; }

/* ===== Footer Responsive ===== */
@media (max-width: 991px) {
    .footer_cta_strip { text-align: center; }
    .footer_cta_strip h3 { font-size: 20px; }
}
@media (max-width: 767px) {
    .footer_cta_strip { padding: 22px 0; }
    .footer_cta_strip .d-flex { justify-content: center !important; }
    .footer_main { padding: 35px 0 25px; }
    .footer_heading { margin-bottom: 16px; }
    .footer_col + .footer_col { margin-top: 8px; }
    .qr_box img { width: 112px; height: 112px; }
    .site-footer .bottom_footer { text-align: center; }
}




