:root {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #1c3e70;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

    .section-header h2 {
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 700;
        margin: 0;
        color: #4154f1;
        text-transform: uppercase;
    }

    .section-header p {
        margin: 10px 0 0 0;
        padding: 0;
        font-size: 38px;
        line-height: 42px;
        font-weight: 700;
        color: #a4bfd4;
    }

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 100vh;
    /*
      background: url(../img/hero-bg.png) top center no-repeat;
      background-size: cover;
  */
}

    .hero h1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
    }

    .hero h2 {
        margin: 15px 0 0 0;
        font-size: 26px;
    }

    .hero .btn-get-started {
        margin-top: 30px;
        line-height: 0;
        padding: 15px 40px;
        border-radius: var(--radius-xs);
        transition: 0.5s;
    }

        .hero .btn-get-started span {
            font-family: "Nunito", sans-serif;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .hero .btn-get-started i {
            margin-left: 5px;
            font-size: 18px;
            transition: 0.3s;
        }

        .hero .btn-get-started:hover i {
            transform: translateX(5px);
        }

    .hero .hero-img {
        text-align: right;
    }

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 30px 0 15px 0;
    }

        .hero .hero-img {
            text-align: center;
            margin-top: 80px;
        }

            .hero .hero-img img {
                width: 80%;
            }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

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

        .hero h2 {
            font-size: 24px;
        }

        .hero .hero-img img {
            width: 100%;
        }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
    background-color: transparent;
    padding: 40px;
}

.about h2 {
    font-size: 28px;
    font-weight: 700;
    color: #00a4e5;
    text-transform: uppercase;
}

.about h3 {
    font-size: 20px;
    font-weight: 700;
    color: #75ceff;
}

.about p {
    margin: 15px 0 30px 0;
    line-height: 24px;
}

.about .btn-read-more {
    line-height: 0;
    padding: 15px 40px;
    border-radius: var(--radius-xs);
    transition: 0.5s;
}

    .about .btn-read-more span {
        font-family: "Nunito", sans-serif;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .about .btn-read-more i {
        margin-left: 5px;
        font-size: 18px;
        transition: 0.3s;
    }

    .about .btn-read-more:hover i {
        transform: translateX(5px);
    }

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

    .values .box img {
        padding: 30px 50px;
        transition: 0.5s;
        transform: scale(1.1);
    }

    .values .box h3 {
        font-size: 24px;
        color: #012970;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .values .box:hover {
        box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    }

        .values .box:hover img {
            transform: scale(1);
        }

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .feature-box {
    padding: 24px 20px;
    transition: 0.3s;
    height: 100%;
}

    .features .feature-box h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
    }

    .features .feature-box i {
        line-height: 0;
        padding: 4px;
        margin-right: 10px;
        font-size: 24px;
        border-radius: 3px;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-box {
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

    .services .service-box:hover > p {
        text-shadow: 0.05rem 0.05rem var(--bs-dark);
    }

    .services .service-box .icon {
        font-size: 36px;
        padding: 40px 20px;
        border-radius: var(--radius-xs);
        position: relative;
        margin-bottom: 25px;
        display: inline-block;
        line-height: 0;
        transition: 0.3s;
    }

    .services .service-box h3 {
        color: #1c84c4;
        font-weight: 700;
    }

    .services .service-box .read-more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 16px;
        padding: 8px 20px;
    }

        .services .service-box .read-more i {
            line-height: 0;
            margin-left: 5px;
            font-size: 18px;
        }

    .services .service-box.orange {
        border-bottom: 3px solid #f68c09;
    }

        .services .service-box.orange .icon {
            color: #f68c09;
            background: #fde3c4;
        }

        .services .service-box.orange .read-more {
            color: #f68c09;
        }

        .services .service-box.orange:hover {
            background: #f68c09;
        }

    .services .service-box.green {
        border-bottom: 3px solid #08da4e;
    }

        .services .service-box.green .icon {
            color: #08da4e;
            background: #cffddf;
        }

        .services .service-box.green .read-more {
            color: #08da4e;
        }

        .services .service-box.green:hover {
            background: #08da4e;
        }

    .services .service-box.red {
        border-bottom: 3px solid #e9222c;
    }

        .services .service-box.red .icon {
            color: #e9222c;
            background: #fef7f8;
        }

        .services .service-box.red .read-more {
            color: #e9222c;
        }

        .services .service-box.red:hover {
            background: #e9222c;
        }

    .services .service-box.purple {
        border-bottom: 3px solid #b50edf;
    }

        .services .service-box.purple .icon {
            color: #b50edf;
            background: #f8e4fd;
        }

        .services .service-box.purple .read-more {
            color: #b50edf;
        }

        .services .service-box.purple:hover {
            background: #b50edf;
        }

    .services .service-box.pink {
        border-bottom: 3px solid #c6ff00;
    }

        .services .service-box.pink .icon {
            color: #f51f9c;
            background: #feecf7;
        }

        .services .service-box.pink .read-more {
            color: #c6ff00;
        }

        .services .service-box.pink:hover {
            background: #c6ff00;
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
}

    .clients .clients-slider .swiper-slide img:hover {
        opacity: 1;
    }

.clients .clients-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #4154f1;
    }

    .clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #4154f1;
    }

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #fff;
    background: #4a4a4a;
    padding: 30px;
}

    .contact .info-box i {
        font-size: 38px;
        line-height: 0;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #8cc0ff;
        font-weight: 700;
        margin: 20px 0 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #f6f9ff;
    font-size: 14px;
}

    .footer .footer-newsletter {
        padding: 50px 0;
        background: #f6f9ff;
        border-top: 1px solid #e1ecff;
    }

        .footer .footer-newsletter h4 {
            font-size: 24px;
            margin: 0 0 10px 0;
            padding: 0;
            line-height: 1;
            font-weight: 700;
            color: #012970;
        }

        .footer .footer-newsletter form {
            margin-top: 20px;
            background: #fff;
            padding: 6px 10px;
            position: relative;
            border-radius: var(--radius-xs);
            border: 1px solid #e1ecff;
        }

            .footer .footer-newsletter form input[type=email] {
                border: 0;
                padding: 8px;
                width: calc(100% - 140px);
            }

            .footer .footer-newsletter form input[type=submit] {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                border: 0;
                background: none;
                font-size: 16px;
                padding: 0 30px;
                margin: 3px;
                background: #4154f1;
                color: #fff;
                transition: 0.3s;
                border-radius: var(--radius-xs);
            }

                .footer .footer-newsletter form input[type=submit]:hover {
                    background: #5969f3;
                }

    .footer .footer-top {
        background: white url(../img/footer-bg.png) no-repeat right top;
        background-size: contain;
        border-top: 1px solid #e1ecff;
        border-bottom: 1px solid #e1ecff;
        padding: 60px 0 30px 0;
    }

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

    .footer .footer-top .footer-info .logo {
        line-height: 0;
        margin-bottom: 15px;
    }

        .footer .footer-top .footer-info .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-top .footer-info .logo span {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #012970;
            font-family: "Nunito", sans-serif;
            margin-top: 3px;
        }

    .footer .footer-top .footer-info p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: "Nunito", sans-serif;
    }

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

    .footer .footer-top .social-links a:hover {
        color: #012970;
    }

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #012970;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

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

        .footer .footer-top .footer-links ul i {
            padding-right: 2px;
            color: #d0d4fc;
            font-size: 12px;
            line-height: 0;
        }

        .footer .footer-top .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            .footer .footer-top .footer-links ul li:first-child {
                padding-top: 0;
            }

        .footer .footer-top .footer-links ul a {
            color: #013289;
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
        }

            .footer .footer-top .footer-links ul a:hover {
                color: #4154f1;
            }

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: #012970;
}

.footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #012970;
}

/* Video Preview Styles */
.video-preview {
    background-color: transparent;
    border-radius: var(--radius-md);
    border: 1px dashed #ced4da;
    padding: 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview video {
    border-radius: var(--radius-md);
}

/* AI Prompt Tooltip */
.ai-prompt-tooltip .tooltip-inner {
    max-width: 400px;
    text-align: left;
    font-size: var(--fs-body);
    white-space: pre-wrap;
    word-break: break-word;
}

/* Recipe/Snack/Drink Video Section in Details */
.recipe-video-section,
.snack-video-section,
.drink-video-section {
    margin-top: 0;
}

.recipe-video-section .card,
.snack-video-section .card,
.drink-video-section .card {
    background: rgba(var(--bs-primary-rgb), 0.03);
    border-radius: var(--radius-lg);
}

.recipe-video-section video,
.snack-video-section video,
.drink-video-section video {
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--glass-black-10);
}

[data-bs-theme="dark"] .recipe-video-section .card,
[data-bs-theme="dark"] .snack-video-section .card,
[data-bs-theme="dark"] .drink-video-section .card {
    background: var(--glass-white-5);
}

/* Mobile responsive adjustments for video */
@media (max-width: 768px) {
    .video-preview {
        min-height: 100px;
    }

    .recipe-video-container,
    .snack-video-container,
    .drink-video-container {
        padding: 10px;
    }

    .ai-prompt-tooltip .tooltip-inner {
        max-width: 280px;
    }
}

/*--------------------------------------------------------------
# Select2 Dark Mode
--------------------------------------------------------------*/
[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: var(--bs-secondary-color);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option {
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option--highlighted[aria-selected] {
    background-color: var(--bs-primary);
    color: #fff;
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option[aria-selected="true"] {
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary-text-emphasis);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__group {
    color: var(--bs-secondary-color);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection__clear {
    color: var(--bs-secondary-color);
}

/* ======= Landing Page Enhancements ======= */
.logo-auto {
    transition: opacity 0.3s ease;
}

/* Text violet color for AI features */
.text-violet {
    color: var(--bs-violet, #7c3aed) !important;
}

/* Landing hero adjustments */
.hero .lead {
    font-size: 1.15rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1rem;
    }
}
