body {
    background-color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--bs-primary);
}

/* Make sections full-width */
.section-full-width {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .section-full-width {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* Ensure all sections have white background */
#features, #video, #pricing, #contact, .hero-section {
    background-color: #ffffff;
}

/* Remove the hero arc as it's no longer needed */

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary);
}

@media (max-width: 767px) {
    .swiper-slide {
        height: auto;
        width: 100%;
    }

    .swiper-slide .row {
        flex-direction: column-reverse;
    }

    .hero-content,
    .hero-image {
        padding: 2rem;
    }

    .hero-image {
        height: 300px; /* Adjust this value for mobile */
    }
}

#pricing {
    background-color: #f8f9fa;
}

#pricing .card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

#pricing .card-title {
    color: var(--bs-primary);
}

#pricing .list-unstyled li {
    padding: 0.5rem 0;
}

#pricing .btn-lg {
    padding: 0.75rem 2rem;
}

#contact {
    background-color: #f8f9fa;
}

.section-title {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.section-py {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 2rem;
    padding: 1rem 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--bs-primary);
}

/* Navbar styles */
.navbar-nav .btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    margin-left: 1rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    transition: color 0.15s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .btn-primary {
        margin: 0.5rem 0;
        display: inline-block;
    }
}

/* Swiper navigation styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary);
    width: 44px;
    height: 44px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 44px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
}

/* Navbar logo styles */
.navbar-logo {
    height: 65px; /* Adjust this value to control the logo size */
    width: auto;
    object-fit: contain;
}

/* Responsive logo adjustments */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 55px; /* Slightly smaller on mobile */
    }
}

/* Ensure the navbar height accommodates the logo */
.layout-navbar {
    min-height: 65px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Swiper adjustments */
.swiper-container {
    padding-bottom: 60px;
}

.swiper-pagination {
    bottom: 100px !important;
}

/* Responsive */
@media (max-width: 768px) {

    .swiper-container {
        padding-bottom: 50px;
    }

    .swiper-pagination {
        bottom: 70px !important;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hero section animations */
.hero-content h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

/* Navbar animation */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Button hover animation */
.btn-primary {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

/* Side Menu Styles */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1089;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background-color: #fff;
    z-index: 1090;
    transition: left 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.side-menu.active {
    left: 0;
}

.side-menu-overlay.active {
    display: block;
    opacity: 1;
}

.side-menu-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.side-menu-logo {
    height: 55px;
    width: auto;
}

.side-menu-close {
    border: none;
    background: none;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
}

.side-menu-nav {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.side-menu-item {
    margin-bottom: 0rem;
}

.side-menu-item-btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.side-menu-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.side-menu-link:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* RTL Support */
html[dir="rtl"] .side-menu {
    left: auto;
    right: -280px;
}

html[dir="rtl"] .side-menu.active {
    left: auto;
    right: 0;
}

/* Language Switcher Styles */
.dropdown-menu {
    min-width: 120px;
}

.dropdown-item.active {
    background-color: var(--bs-primary);
    color: white;
}

/* Mobile Language Toggle */
.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RTL Support for dropdowns */
html[dir="rtl"] .dropdown-menu-end {
    --bs-position: start;
}

html[dir="rtl"] .me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: absolute !important;
        transform: none !important;
        right: 0;
        left: auto;
    }

    html[dir="rtl"] .dropdown-menu {
        right: auto;
        left: 0;
    }
}

/* Pricing Section Styles */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Silver Plan Styles */
.silver-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    border: 1px solid #e0e0e0;
}

.text-silver {
    color: #8e9aab;
}

.btn-silver {
    background: linear-gradient(145deg, #676767 0%, #dcdcdc 100%); /* Light gray to white */
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 0.375rem; /* Rounded corners */
    padding: 0.75rem 1.5rem; /* Padding */
    font-size: 1rem; /* Font size */
    font-weight: 600; /* Font weight */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition effects */
}

.btn-silver:hover {
    background: linear-gradient(145deg, #6c757d 0%, #495057 100%);
    color: white;
}

/* Gold Plan Styles */
.gold-card {
    background: linear-gradient(145deg, #ffffff 0%, #fff8e8 100%);
    border: 1px solid #ffd700;
}

.text-gold {
    color: #ffd700;
}

.btn-gold {
    background: linear-gradient(145deg, #ffd700 0%, #ffc107 100%);
    color: #000; /* Black text */
    border: none;
    border-radius: 0.375rem; /* Rounded corners */
    padding: 0.75rem 1.5rem; /* Padding */
    font-size: 1rem; /* Font size */
    font-weight: 600; /* Font weight */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition effects */
}

.btn-gold:hover {
    background: linear-gradient(145deg, #ffc107 0%, #ffb300 100%);
    color: #000;
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: 0;
    right: 30px;
    padding: 8px 20px;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    z-index: 1;
}

.pricing-badge.silver {
    background: linear-gradient(145deg, #8e9aab 0%, #6c757d 100%);
    color: white;
}

.pricing-badge.gold {
    background: linear-gradient(145deg, #ffd700 0%, #ffc107 100%);
    color: #000;
}

.pricing-badge.platinum {
    background: linear-gradient(145deg, #e5e5e5 0%, #ffffff 100%);
    color: #000;
}

.pricing-price {
    margin: 1rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
}

.pricing-features i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* RTL Support */
html[dir="rtl"] .pricing-badge {
    right: auto;
    left: 30px;
}

html[dir="rtl"] .pricing-features i {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .pricing-badge {
        right: 20px;
    }

    html[dir="rtl"] .pricing-badge {
        right: auto;
        left: 20px;
    }
}

/* Shine Effect on Hover */
.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(45deg);
    transition: all 1.5s;
    opacity: 0.2;
    z-index: 1; /* Set a lower z-index for the pseudo-element */
}

.pricing-card .btn {
    position: relative; /* Ensure the button is positioned relative */
    z-index: 2; /* Set a higher z-index for the button */
}

.pricing-card:hover::after {
    opacity: 1;
    left: 100%;
}

/* Footer Styles */
.footer {
    background-color: #2f3349;
    color: #a3a7b7;
}

.footer-top {
    position: relative;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #a3a7b7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

.footer-contact i {
    margin-top: 4px;
}

.social-links a {
    color: #a3a7b7;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.newsletter-form .input-group {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.375rem;
    overflow: hidden;
}

/* .newsletter-form .form-control {
    background-color: transparent;
    border: none;
    color: #ffffff;
    padding: 0.75rem 1rem;
} */

.newsletter-form .form-control::placeholder {
    color: #a3a7b7;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 0.75rem 1.25rem;
    border: none;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-links-bottom a {
    color: #a3a7b7;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

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

/* RTL Support */
html[dir="rtl"] .footer-links-bottom a {
    margin-left: 0;
    margin-right: 1.5rem;
}

html[dir="rtl"] .me-2 {
    margin-right: 0 !important;
    margin-left: 0.5rem !important;
}

html[dir="rtl"] .me-3 {
    margin-right: 0 !important;
    margin-left: 1rem !important;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .footer-widget {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
    }

    .footer-links-bottom {
        margin-top: 1rem;
    }

    .footer-links-bottom a {
        margin: 0 0.75rem;
    }
}

/* Feature Cards */
.feature-card {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Feature Icons */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Icon Background Colors */
.bg-purple {
    background: linear-gradient(135deg, #845EC2 0%, #7464C7 100%);
}

.bg-blue {
    background: linear-gradient(135deg, #4B7BF5 0%, #2D5CFE 100%);
}

.bg-green {
    background: linear-gradient(135deg, #2EC4B6 0%, #1CA399 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #FF9671 0%, #FF7D5C 100%);
}

.bg-pink {
    background: linear-gradient(135deg, #FF8FAB 0%, #FF6B95 100%);
}

.bg-teal {
    background: linear-gradient(135deg, #00C9A7 0%, #00A589 100%);
}

.bg-red {
    background: linear-gradient(135deg, #FF6F91 0%, #FF4B76 100%);
}

.bg-yellow {
    background: linear-gradient(135deg, #FFC75F 0%, #FFB340 100%);
}

/* Feature Content */
.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2D3748;
}

.feature-text {
    color: #718096;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hover Effects */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
    left: 100%;
}

/* RTL Support */
html[dir="rtl"] .feature-card {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .feature-card {
        text-align: center;
    }

    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tabs Styles */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-primary);
}

.nav-tabs .nav-link:hover {
    color: var(--bs-primary);
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Feature Icons */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Icon Background Colors */
.bg-purple {
    background: linear-gradient(135deg, #845EC2 0%, #7464C7 100%);
}

.bg-blue {
    background: linear-gradient(135deg, #4B7BF5 0%, #2D5CFE 100%);
}

.bg-green {
    background: linear-gradient(135deg, #2EC4B6 0%, #1CA399 100%);
}

.bg-orange {
    background: linear-gradient(135deg, #FF9671 0%, #FF7D5C 100%);
}

.bg-pink {
    background: linear-gradient(135deg, #FF8FAB 0%, #FF6B95 100%);
}

.bg-teal {
    background: linear-gradient(135deg, #00C9A7 0%, #00A589 100%);
}

.bg-red {
    background: linear-gradient(135deg, #FF6F91 0%, #FF4B76 100%);
}

.bg-yellow {
    background: linear-gradient(135deg, #FFC75F 0%, #FFB340 100%);
}

/* Feature Content */
.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2D3748;
    text-align: center;
}

.feature-text {
    color: #718096;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hover Effects */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background-color: #f9f9f900; /* WhatsApp green */
    color: white;
    border: none;
    border-radius: 0.375rem; /* Rounded corners */
    padding: 0.75rem 1.5rem; /* Padding */
    font-size: 1rem; /* Font size */
    font-weight: 600; /* Font weight */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition effects */
    display: flex; /* Flexbox for icon alignment */
    align-items: center; /* Center icon vertically */
    justify-content: center; /* Center text */
}

.btn-whatsapp:hover {
    background-color: #128C7E; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.whatsapp-icon {
    width: 24px; /* Icon size */
    height: 24px; /* Icon size */
    margin-right: 0.5rem; /* Space between icon and text */
}

/* Responsive adjustments */
.hero-content, .hero-image {
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content, .hero-image {
        margin-top: 1rem;
        text-align: center;
    }

    .hero-section .hero-content h1, .hero-section .hero-content p {
        font-size: 1.5rem;
    }

    .hero-content .btn {
        margin-top: 1rem;
    }

    /* Center the logo in mobile view */
    .navbar-brand.app-brand {
        margin: auto;
    }

    .navbar-logo {
        max-width: 150px; /* adjust as needed */
    }
}

/* Make the navbar sticky */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; /* Ensure it stays above other elements */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

/* Adjust content below the navbar */
.content-wrapper {
    padding-top: 65px; /* Adjust based on your navbar's height */
}

/* Mobile-specific padding adjustments */
@media (max-width: 991.98px) {
    .content-wrapper {
        padding-top: 55px; /* Adjust for smaller screens if needed */
    }
}



/* Hero Section Responsive Styling */
.hero-section .hero-content h1 {
    font-size: 2rem;
}

.hero-section .hero-content p {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-section .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-section .hero-image {
        margin-top: 20px;
    }

    .section-full-width {
        height: auto;
        padding: 20px 0;
    }

    .swiper-pagination {
        bottom: 10px;
    }
}
/* Hero Section */

.landing-hero {
    position: relative;
}

.swiper-container {
    width: 100%;
}

.hero-content {
    padding: var(--spacing-xlarge) var(--spacing-medium);
}

.hero-content h1 {
    font-size: var(--hero-heading-size);
    margin-bottom: var(--spacing-medium);
}

.hero-content p {
    font-size: var(--hero-paragraph-size);
    margin-bottom: 1.5rem;
}

.hero-image {
    padding: var(--spacing-small);
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: var(--hero-image-max-height);
    object-fit: contain;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: var(--spacing-small);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding-bottom: 0;
    }

    .hero-content {
        padding: var(--spacing-medium);
        text-align: center;
    }

    .hero-content h1 {
        font-size: var(--hero-tablet-heading-size);
        margin-bottom: var(--spacing-small);
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: var(--spacing-medium);
    }

    .hero-image {
        padding: var(--spacing-small) var(--spacing-medium);
    }

    .hero-image img {
        max-height: 200px;
    }

    .swiper-slide {
        padding: var(--spacing-medium) 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination {
        margin-top: 0;
        margin-bottom: var(--spacing-small);
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .hero-content {
        padding: var(--spacing-small) var(--spacing-medium);
    }

    .hero-content h1 {
        font-size: var(--hero-mobile-heading-size);
    }

    .hero-image {
        padding: var(--spacing-small);
    }

    .hero-image img {
        max-height: 180px;
    }
}


.hero-content {
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
}

/* Swiper Styles */
.swiper-container {
    width: 100%;
    padding-bottom: 10px; /* Default padding */
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary);
    width: 44px; /* Default width */
    height: 44px; /* Default height */
    margin-left: -60px;
    margin-right: -60px;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px; /* Mobile width */
        height: 35px; /* Mobile height */
    }
}

.swiper-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: var(--spacing-small);
}

.swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
}

/* Adjustments for Swiper Content */
.hero-content {
    padding: 0.5rem; /* Further reduced padding to bring text closer to the image */
}

.hero-image {
    margin-bottom: 0.25rem; /* Reduced margin to bring image closer to text */
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: var(--hero-image-max-height);
    object-fit: contain;
}

/* Additional adjustments for responsiveness */
@media (max-width: 768px) {
    .hero-content {
        padding: 0.25rem; /* Further reduce padding on smaller screens */
    }

    .hero-image {
        margin-bottom: 0.25rem; /* Reduce margin for mobile */
    }
}

/* Center Swiper slides */
.hero-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensure slide takes full width on mobile */
}

/* Prevent horizontal overflow */
.hero-swiper {
    overflow: hidden;
}

/* Optional: Adjust pagination style if needed */
.swiper-pagination-bullet {
    background-color: #6e6e6e; /* Customize pagination bullet color */
}

/* Text Styles for Platinum */
.text-platinum {
    color: #6d6d6d; /* Adjust this color as needed for platinum text */
}

/* Button Styles for Platinum */
.btn-platinum {
    background: linear-gradient(145deg, #e5e5e5 0%, #ffffff 100%); /* Light gray to white */
    color: #000; /* Black text */
    border: none;
    border-radius: 0.375rem; /* Rounded corners */
    padding: 0.75rem 1.5rem; /* Padding */
    font-size: 1rem; /* Font size */
    font-weight: 600; /* Font weight */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition effects */
}

.btn-platinum:hover {
    background: linear-gradient(145deg, #5b5d5e 0%, #606061 100%);
    color: white;
}

.text-muted{
    color: rgb(239, 76, 76) !important;
}

.display-6 {
    font-size: 2rem !important;
}