:root {
    --primary-color: #00413d;
    --secondary-color: #8ffff3;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

@media (max-width: 576px) {
    section, header, footer, .container, .container-fluid, .row, [class*="col-"] {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
}


body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #00332f;
    border-color: #00332f;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, rgba(0, 65, 61, 0.9) 0%, rgba(0, 65, 61, 0.7) 100%), url('assets/images/hero-image.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}
.hero-section .btn {
    font-size: 16px;
}
.hero-section .btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}
.hero-section .btn-secondary:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.hero-section .btn-outline-light {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.hero-section .btn-outline-light:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}
#categories {
    background: var(--secondary-color);
}
.category-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 200px;
}
.category-card h5 {
    font-size: 16px;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.swiper-pagination {
    bottom: 0px !important;
}
.categoriesSwiper {
    padding-bottom: 30px;
    padding-top: 15px;
}

.category-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--secondary-color);
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}
/* Modern Features of Buddee Section - Neumorphic Glassy Cards */
#features {
    background: linear-gradient(120deg, #101c1b 60%, #1a2e2c 100%);
    color: #eafffa;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#features::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 300px;
    background: radial-gradient(circle, #8ffff3 0%, transparent 70%);
    opacity: 0.08;
    z-index: 0;
}
#features .section-title {
    color: #8ffff3;
    text-shadow: 0 4px 24px rgba(0,65,61,0.18);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, #8ffff3 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
#features .feature-card {
    background: rgba(20, 40, 38, 0.85);
    border-radius: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 65, 61, 0.18), 0 1.5px 8px 0 #8ffff3;
    border: none;
    color: #eafffa;
    position: relative;
    overflow: visible;
    padding: 2.7rem 2.2rem 2.2rem 2.2rem;
    transition: box-shadow 0.4s cubic-bezier(.4,2,.6,1), transform 0.3s;
    z-index: 1;
    backdrop-filter: blur(2.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 6px solid #8ffff3;
    border-right: 6px solid #00413d;
    margin-bottom: 2.5rem;
}
#features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2.5rem;
    background: linear-gradient(120deg, rgba(143,255,243,0.10) 0%, rgba(0,65,61,0.10) 100%);
    z-index: 0;
    pointer-events: none;
}
#features .feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 24px 64px 0 rgba(0, 65, 61, 0.28), 0 4px 16px 0 #8ffff3;
    border-bottom: 6px solid #fff;
    border-right: 6px solid #8ffff3;
}
#features .feature-icon {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #8ffff3 30%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #8ffff3;
    filter: drop-shadow(0 4px 16px #8ffff3);
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
    display: inline-block;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
    background-size: 200% 200%;
    animation: featureIconGlow 3s ease-in-out infinite alternate;
}
#features .feature-card:hover .feature-icon {
    transform: translateY(-12px) scale(1.13) rotate(-2deg);
    filter: drop-shadow(0 12px 32px #8ffff3);
}
#features .feature-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 0.7rem;
    color: #8ffff3;
    text-shadow: 0 2px 8px rgba(143,255,243,0.18);
    z-index: 1;
    position: relative;
    text-align: center;
}
#features .feature-card p {
    color: #eafffa;
    font-size: 1.08rem;
    opacity: 0.98;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
    text-align: center;
    font-weight: 500;
}

@keyframes featureIconGlow {
    0% {
        filter: drop-shadow(0 4px 16px #8ffff3);
        background-position: 0% 50%;
    }
    100% {
        filter: drop-shadow(0 12px 32px #8ffff3);
        background-position: 100% 50%;
    }
}
}
.feature-card h4 {
    font-size: 18px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.app-screen {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    object-fit: contain;
}
.swiper-pagination {
    bottom: 0px !important;
}
.screensSwiper {
    padding-bottom: 40px;
    background: linear-gradient(120deg, #e6fffa 60%, #bcefea 100%);
    border-radius: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    padding-top: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: visible;
}
.screensSwiper img {
    border-radius: 2rem;
    border: 6px solid #8ffff3;
    box-shadow: 0 8px 32px 0 rgba(0, 65, 61, 0.13), 0 1.5px 8px 0 #8ffff3;
    background: rgba(255,255,255,0.85);
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    animation: appScreenFloat 4s ease-in-out infinite alternate;
    margin: 0 auto;
    display: block;
}
.screensSwiper img:hover {
    transform: scale(1.04) rotate(-2deg) translateY(-8px);
    box-shadow: 0 16px 48px 0 #8ffff3, 0 4px 16px 0 #00413d;
}
@keyframes appScreenFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-18px); }
}
.screensSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
}
.screensSwiper .swiper-pagination-bullet {
    background: #bcefea;
    opacity: 1;
    border: 2px solid #8ffff3;
    width: 14px;
    height: 14px;
    margin: 0 6px !important;
    transition: background 0.3s, border 0.3s;
}
.screensSwiper .swiper-pagination-bullet-active {
    background: #8ffff3 !important;
    border: 2px solid #00413d;
}
.screensSwiper .swiper-button-next, .screensSwiper .swiper-button-prev {
    display: block;
    background: #8ffff3;
    color: #00413d;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 8px #bcefea;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    transition: background 0.3s, color 0.3s;
    font-size: 1.5rem;
}
.screensSwiper .swiper-button-next:hover, .screensSwiper .swiper-button-prev:hover {
    background: #00413d;
    color: #8ffff3;
    opacity: 1;
}
}
.swiper-button-next, .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
    display: none;
}
.accordion-button:not(.collapsed) {
    background-color: rgba(143, 255, 243, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 65, 61, 0.25);
}

.download-section {
    background: linear-gradient(120deg, #00413d 60%, #8ffff3 100%);
    color: white;
    padding: 5rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    /* border-radius: 2.5rem; */
    box-shadow: 0 8px 32px 0 rgba(0, 65, 61, 0.13);
    /* margin-bottom: 3rem; */
    /* border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--secondary-color), var(--primary-color) 80%);
    border-image-slice: 1; */
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.png'), radial-gradient(circle at 80% 20%, #8ffff3 0%, transparent 70%), radial-gradient(circle at 20% 80%, #00413d 0%, transparent 70%);
    opacity: 0.10;
    z-index: 1;
}

.download-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.10);
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(143,255,243,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    backdrop-filter: blur(2px);
    animation: floatY 4.5s ease-in-out infinite;
}
.download-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    background: linear-gradient(90deg, #fff, #8ffff3 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.5rem;
}
.download-section p {
    color: #eafffa;
    font-size: 1.1rem;
    opacity: 0.95;
}
.download-section .btn {
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.85rem 2.5rem;
    box-shadow: 0 4px 18px 0 rgba(143,255,243,0.18);
    background: linear-gradient(90deg, var(--secondary-color) 0%, #fff 100%);
    color: var(--primary-color);
    border: none;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
.download-section .btn:hover {
    background: linear-gradient(90deg, #fff 0%, var(--secondary-color) 100%);
    color: var(--primary-color);
    box-shadow: 0 8px 32px 0 rgba(143,255,243,0.28);
    transform: translateY(-3px) scale(1.04);
}
.download-section img {
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 65, 61, 0.13);
    /* border: 4px solid var(--secondary-color); */
    animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}
.navbar-nav .nav-link {
    color: var(--light-color);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--secondary-color);
}
header .btn-outline-primary {
    color: var(--secondary-color);
    border: var(--secondary-color) 2px solid;
}
header .btn-outline-primary:hover {
    color: var(--promary-color);
    border: var(--secondary-color) 2px solid;
    background: var(--secondary-color);
}
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--dark-color) !important;
}

.navbar.scrolled .navbar-brand img {
    filter: brightness(0);
}

.navbar.scrolled .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.navbar.scrolled .btn-outline-primary:hover {
    color: white;
}

.offcanvas-header {
    background-color: #111c1b;
    color: #8ffff3;
}

.offcanvas {
    background-color: #111c1b !important;
    color: #8ffff3 !important;
}

.offcanvas .nav-link {
    color: #8ffff3 !important;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.offcanvas .nav-link:hover, .offcanvas .nav-link.active {
    color: #fff !important;
    background: none;
}


.offcanvas-body {
    padding: 2rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 48%;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: auto;
        height: auto;
        padding: 5rem 0;
        padding-top: 10rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
/* Floating animation for hero-image */
.hero-image img {
    animation: floatY 3.5s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
.floating {
    animation: floatY 3.5s ease-in-out infinite;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgb(244 255 254) !important;
}

/* --- Enhanced FAQ Section Styles --- */
#faq {
    background: linear-gradient(120deg, #f8fffe 60%, #e6fffa 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* --- Enhanced Contact Section Styles --- */
#contact {
    background: linear-gradient(120deg, #f8fffe 60%, #e6fffa 100%);
    border-radius: 0px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0rem;
}

#contact .section-title {
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(143,255,243,0.08);
}

.contact-form.beautiful-contact {
    background: rgba(255,255,255,0.92);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--secondary-color), var(--primary-color) 80%);
    border-image-slice: 1;
    backdrop-filter: blur(2px);
    transition: box-shadow 0.3s, border-image 0.3s;
    position: relative;
    z-index: 1;
}
.contact-form.beautiful-contact:hover {
    box-shadow: 0 16px 40px 0 rgba(0, 65, 61, 0.18), 0 1.5px 8px 0 var(--secondary-color);
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color) 80%);
    border-image-slice: 1;
}

.contact-info-card.beautiful-contact {
    background: rgba(255,255,255,0.92);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color) 80%);
    border-image-slice: 1;
    height: 100%;
    backdrop-filter: blur(2px);
    transition: box-shadow 0.3s, border-image 0.3s;
    position: relative;
    z-index: 1;
}
.contact-info-card.beautiful-contact:hover {
    box-shadow: 0 16px 40px 0 rgba(0, 65, 61, 0.18), 0 1.5px 8px 0 var(--secondary-color);
    border-image: linear-gradient(135deg, var(--secondary-color), var(--primary-color) 80%);
    border-image-slice: 1;
}

.beautiful-contact label,
.beautiful-contact h4,
.beautiful-contact h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.beautiful-contact input,
.beautiful-contact textarea {
    border-radius: 10px;
    border: 1.5px solid var(--secondary-color);
    box-shadow: 0 2px 8px 0 rgba(143,255,243,0.08);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.beautiful-contact input:focus,
.beautiful-contact textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px 0 rgba(0,65,61,0.10);
}

.beautiful-contact .contact-icon {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-right: 1.1rem;
    background: linear-gradient(135deg, var(--secondary-color) 30%, var(--primary-color) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,65,61,0.10));
    transition: filter 0.3s;
    display: inline-block;
}
.beautiful-contact .d-flex:hover .contact-icon {
    filter: drop-shadow(0 6px 18px rgba(0,65,61,0.18));
}

#faq .section-title {
    color: var(--primary-color);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(143,255,243,0.08);
}

.accordion-item {
    border-radius: 18px !important;
    overflow: hidden;
    border: none !important;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 18px 0 rgba(0, 65, 61, 0.07);
    background: rgba(255,255,255,0.95);
    transition: box-shadow 0.3s;
}
.accordion-item:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 65, 61, 0.13);
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: linear-gradient(90deg, #e6fffa 0%, #f8fffe 100%);
    border: none;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 1.2rem 1.5rem;
    transition: background 0.3s, color 0.3s;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #e6fffa 100%);
    color: var(--primary-color);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
.accordion-button:after {
    filter: drop-shadow(0 2px 4px rgba(0,65,61,0.10));
}
.accordion-body {
    background: transparent;
    color: #2a3a3a;
    font-size: 1.05rem;
    padding: 1.5rem 2rem 1.5rem 2rem;
    border-top: 1px solid #e6fffa;
    border-radius: 0 0 18px 18px;
}
.bg-dark {
    background-color: var(--primary-color) !important;
}
.breadcrumb {
    padding-top: 120px !important;
}
.breadcrumb h1 {
    text-align: center;
    color: var(--secondary-color);
}
.navbar .navbar-toggler {
    background: var(--secondary-color);
}
.swiper-button-next, .swiper-button-prev {
    display: none !important;
}