body {
            font-family: 'Poppins', sans-serif;
        }

        /* Navbar */
        .navbar {
            padding: 15px 0;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: #000;
            margin: 0 12px;
            transition: 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: #0d6efd;
        }

        .download-btn {
            background: #c62828;
            color: #fff;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 600;
            transition: 0.3s;
        }

        .download-btn:hover {
            background: #a71d1d;
            color: #fff;
        }


.hero-section {
    height: 100vh;
    position: relative;
}

.heroSwiper,
.swiper-slide {
    height: 100%;
}

.slide-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons a {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s;
}


.navbar-download-btn {
    background: #c21f26;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar-download-btn:hover {
    background: #a81920;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280,0,0,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.btn-primary-custom {
    background: #d62828;
    color: #fff;
}

.btn-primary-custom:hover {
    background: #b91c1c;
}

.btn-outline-custom {
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #000;
}

/* Swiper Navigation Styling */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #d62828;
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons a {
        display: block;
        margin-bottom: 15px;
    }
}

/* Section Background */
.about-section {
    background: #f8f9fb;
    padding: 60px 0;
}

/* Title */
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #d62828;
    border-radius: 10px;
    margin-bottom: 25px;
}

.about-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Image Styling */
.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-img {
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Yellow Accent Shape */
.yellow-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #eab308;
    bottom: -20px;
    right: -20px;
    border-radius: 20px;
    z-index: 1;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card .icon-box {
    width: 55px;
    height: 55px;
    background: rgba(214, 40, 40, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-card .icon-box i {
    color: #d62828;
    font-size: 20px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 70px 0;
    }

    .about-image-wrapper {
        margin-top: 40px;
    }
}

/* Section Background */
.why-section {
    background: #fff;
    padding: 60px 0;
}

/* Section Title */
.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #eab308;
    margin: 0 auto 70px auto;
    border-radius: 10px;
}

/* Card */
.why-card {
    padding: 20px 30px;
    transition: 0.3s ease;
}

.why-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.why-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* Icon Box */
.why-card .icon-box {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.why-card .icon-box i {
    color: #fff;
    font-size: 28px;
}

/* Colors */
.icon-box.red {
    background: #c81e1e;
}

.icon-box.gold {
    background: #d4a017;
}

.icon-box.navy {
    background: #0f172a;
}

/* Hover Effect */
.why-card:hover .icon-box {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 991px) {
    .why-section {
        padding: 70px 0;
    }

    .title-underline {
        margin-bottom: 50px;
    }

    .why-card {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 32px;
    }
}

/* Section Base */
.workflow-section-wrapper {
    background-color: #c21f26;
    padding: 60px 0;
}

/* Header */
.workflow-header-block {
    margin-bottom: 80px;
}

.workflow-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.workflow-sub-title {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

/* Steps Row */
.workflow-steps-row {
    row-gap: 50px;
}

/* Step Card */
.workflow-step-card {
    padding: 10px 25px;
}

/* Icon Box */
.workflow-icon-container {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

.workflow-icon-style {
    font-size: 40px;
    color: #c21f26;
}

/* Step Number */
.workflow-step-number {
    font-size: 34px;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    margin-bottom: 12px;
}

/* Step Title */
.workflow-step-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Description */
.workflow-step-description {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .workflow-section-wrapper {
        padding: 80px 0;
    }

    .workflow-header-block {
        margin-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .workflow-main-title {
        font-size: 32px;
    }

    .workflow-icon-container {
        width: 100px;
        height: 100px;
    }

    .workflow-icon-style {
        font-size: 32px;
    }
}
/* Section */
.varieties-section-wrapper {
    background: #f8f9fb;
    padding: 60px 0;
}

/* Header */
.varieties-header-block {
    margin-bottom: 70px;
}

.varieties-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.varieties-title-underline {
    width: 70px;
    height: 4px;
    background: #c21f26;
    margin: 0 auto;
    border-radius: 8px;
}

/* Cards Row */
.varieties-card-row {
    row-gap: 35px;
}

/* Card */
.varieties-card-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.varieties-card-item:hover {
    transform: translateY(-6px);
}

/* Image */
.varieties-image-container {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.varieties-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Label */
.varieties-card-label {
    padding: 18px 0;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #0f172a;
    background: #f3f4f6;
}

/* CTA Button */
.varieties-button-wrapper {
    margin-top: 70px;
}

.varieties-outline-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    border: 2px solid #c21f26;
    border-radius: 50px;
    font-weight: 600;
    color: #c21f26;
    text-decoration: none;
    transition: 0.3s ease;
}

.varieties-outline-button:hover {
    background: #c21f26;
    color: #ffffff;
}

.varieties-button-arrow {
    display: inline-flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .varieties-image-container {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .varieties-main-title {
        font-size: 32px;
    }

    .varieties-image-container {
        height: 160px;
    }
}

/* Section */
.appshowcase-section-wrapper {
    padding: 60px 0;
    background: #f8f9fb;
}

/* Left Content */
.appshowcase-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.appshowcase-description {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Store Buttons */
.appshowcase-buttons-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.appshowcase-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.appshowcase-store-btn i {
    font-size: 22px;
}

.appshowcase-store-btn small {
    display: block;
    font-size: 11px;
    opacity: 0.7;
}

.appshowcase-store-btn strong {
    font-size: 14px;
}

.appshowcase-store-btn:hover {
    transform: translateY(-4px);
}

/* Slider */
.appshowcase-slider-wrapper {
    position: relative;
}

.appshowcaseSwiper {
    padding-bottom: 40px;
}

/* Phone Frame */
.appshowcase-phone-frame {
    border-radius: 35px;
    padding: 25px;
    border: 6px solid #0f172a;
    overflow: hidden;
}

.appshowcase-phone-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

/* Background Variations */
.beige-bg { background: #e8dfd4; }
.peach-bg { background: #f2c4b2; }
.grey-bg  { background: #d8dee5; }

/* Scrollbar */
.appshowcase-scrollbar {
    background: rgba(0,0,0,0.1);
    height: 6px;
    border-radius: 10px;
}

.swiper-scrollbar-drag {
    background: #888;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .appshowcase-section-wrapper {
        padding: 80px 0;
    }

    .appshowcase-phone-frame img {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .appshowcase-title {
        font-size: 32px;
    }

    .appshowcase-phone-frame img {
        height: 380px;
    }
}

/* Section */
.downloadcta-section-wrapper {
    padding: 80px 0;
    background: linear-gradient(135deg, #c21f26 0%, #b61c23 50%, #a8181f 100%);
    color: #ffffff;
}

/* Inner */
.downloadcta-inner {
    max-width: 850px;
    margin: 0 auto;
}

/* Badge */
.downloadcta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

/* Title */
.downloadcta-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Description */
.downloadcta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 45px;
}

/* Buttons Group */
.downloadcta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Store Card */
.downloadcta-store-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 18px 30px;
    border-radius: 18px;
    text-decoration: none;
    color: #0f172a;
    min-width: 260px;
    transition: 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.downloadcta-store-card:hover {
    transform: translateY(-6px);
}

/* Icon */
.downloadcta-store-icon i {
    font-size: 28px;
}

/* Text */
.downloadcta-store-text small {
    display: block;
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.downloadcta-store-text strong {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .downloadcta-title {
        font-size: 42px;
    }

    .downloadcta-section-wrapper {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {
    .downloadcta-title {
        font-size: 32px;
    }

    .downloadcta-store-card {
        width: 100%;
        justify-content: center;
    }
}

/* Section */
.contact-section-wrapper {
    padding: 60px 0;
    background: #f8f9fb;
}

/* LEFT SIDE */
.contact-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.contact-sub-description {
    font-size: 17px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Contact Item */
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    background: #f3e6e7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-box i {
    color: #c21f26;
    font-size: 18px;
}

.contact-detail-text h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.contact-detail-text p {
    margin: 0;
    font-size: 15px;
    color: #475569;
}

/* RIGHT FORM CARD */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Labels */
.contact-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
    letter-spacing: 0.5px;
}

/* Inputs */
.contact-form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-form-input:focus {
    outline: none;
    border-color: #c21f26;
}

/* Textarea */
.contact-form-textarea {
    width: 100%;
    height: 140px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    resize: none;
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-form-textarea:focus {
    outline: none;
    border-color: #c21f26;
}

/* Submit Button */
.contact-submit-button {
    width: 100%;
    padding: 16px;
    background: #c21f26;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit-button:hover {
    background: #a81920;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section-wrapper {
        padding: 80px 0;
    }

    .contact-main-title {
        font-size: 34px;
    }

    .contact-form-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 25px;
    }
}

/* Section */
.footer-section-wrapper {
    background: #0b1a33;
    color: #cbd5e1;
    padding: 90px 0 40px;
}

/* Top Row */
.footer-top-row {
    margin-bottom: 60px;
}

/* Brand */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 35px;
}

.footer-brand-name {
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.footer-brand-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 260px;
}

/* Social */
.footer-social-group {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: #132544;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: #c21f26;
    color: #ffffff;
}

/* Column Titles */
.footer-column-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Links */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-link-list a:hover {
    color: #ffffff;
}

/* Danger Link */
.footer-danger-link {
    color: #ff4d4d !important;
}

/* Office */
.footer-office-location {
    margin-top: 25px;
}

.footer-office-location h6 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-office-location p {
    font-size: 14px;
    margin: 0;
}

/* Divider */
.footer-divider-line {
    height: 1px;
    background: #1e2d4d;
    margin: 40px 0 25px;
}

/* Bottom */
.footer-bottom-text {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top-row {
        row-gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-section-wrapper {
        padding: 60px 0 30px;
    }
}

.policy-page-wrapper {
    padding: 120px 0;
    background: #f8f9fb;
}

.policy-header {
    margin-bottom: 60px;
}

.policy-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.policy-sub-title {
    font-size: 16px;
    color: #64748b;
}

.policy-content {
    max-width: 850px;
    margin: 0 auto;
}

.policy-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #0f172a;
}

.policy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

/* Legal Page Wrapper */
.legal-page-wrapper {
    padding: 60px 0 120px;
    background: #f8f9fb;
}

/* Header */
.legal-header {
    margin-bottom: 60px;
}

.legal-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.legal-sub-title {
    font-size: 16px;
    color: #64748b;
}

/* Content */
.legal-content-block {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #0f172a;
}

.legal-content-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}