﻿:root {
    /* Forever Living Yellow/Gold Theme */
    --fl-gold: #FFD700;
    --fl-dark-gold: #D4AF37;
    --fl-light-gold: #FFE55C;
    --fl-yellow: #FFC72C;
    --fl-orange: #FF6B35;
    --fl-white: #FFFFFF;
    --fl-light: #FFFDF5;
    --fl-gray: #6C757D;
    --fl-dark: #2C2C2C;
    --fl-text: #333333;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--fl-text);
    overflow-x: hidden;
    background-color: var(--fl-light);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #e1e3e6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    height: 100px;
}
.navbar-dark {
    background-color: var(--fl-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    height: 100px;
}
.navbar-brand {
    font-weight: 700;
    color: var(--fl-dark-gold);
}

.nav-link {
    color: var(--fl-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--fl-gold);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--fl-yellow) 0%, var(--fl-orange) 100%);
    color: var(--fl-dark);
    padding: 100px 0;
    text-align: center;
}

/* Section Styling */
.section {
    padding: 80px 0 0 0;
}
.section-why {
    padding: 30px 0 0 0;
}
.section-title {
    text-align: center;
    font-weight: 700;
    color: var(--fl-dark-gold);
    position: relative;
    margin-bottom: 3rem;
}

    .section-title:after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--fl-gold);
        margin: 15px auto;
    }

/* Card Components */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    background: var(--fl-white);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    }

/* Video Cards */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .video-card img {
        transition: transform 0.5s ease;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .video-card:hover img {
        transform: scale(1.05);
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--fl-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fl-dark);
    font-size: 20px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

    .play-btn:hover {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
        background: var(--fl-yellow);
    }

/* Carousel */
.carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #000;
}

    .carousel-item img,
    .carousel-item video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        max-width: 120%;
        object-fit: cover;
        object-position: center;
        transform: translate(-50%, -50%);
        transition: transform 6s ease;
    }

    .carousel-item.active img,
    .carousel-item.active video {
        transform: translate(-50%, -50%) scale(1.03);
    }

.carousel-caption {
    background: rgba(255, 215, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--fl-dark);
}
#introCarousel.alternative-border {
    padding: 12px;
    background: linear-gradient(45deg, var(--fl-yellow) 0%, var(--fl-gold) 25%, var(--fl-orange) 50%, var(--fl-gold) 75%, var(--fl-yellow) 100%);
}

/* For a glowing effect */
#introCarousel.glow-border {
    padding: 8px;
    background: linear-gradient(135deg, var(--fl-yellow) 0%, var(--fl-orange) 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.15);
}
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
        background: rgba(255, 215, 0, 0.9);
    }

/* Video Wrapper & Controls */
.video-wrapper {
    position: relative;
}

.unmute-btn {
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
    background: var(--fl-gold);
    color: var(--fl-dark);
    border: none;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
}

    .unmute-btn:hover {
        opacity: 1;
        transform: scale(1.05);
        background: var(--fl-yellow);
    }

/* Buttons */
.btn-primary {
    background-color: var(--fl-gold);
    border-color: var(--fl-gold);
    color: var(--fl-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: var(--fl-yellow);
        border-color: var(--fl-yellow);
        transform: translateY(-2px);
        color: var(--fl-dark);
    }

.btn-outline-primary {
    color: var(--fl-gold);
    border-color: var(--fl-gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: var(--fl-gold);
        color: var(--fl-dark);
    }

/* Hero Cards */
.hero-card {
    background: linear-gradient(135deg, var(--fl-yellow) 0%, var(--fl-orange) 100%);
    border-radius: 15px;
    padding: 3px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    animation: cardEntrance 0.6s ease-out;
}

.hero-card-inner {
    background: var(--fl-white);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

    .hero-card:hover .hero-card-inner {
        transform: scale(0.98);
    }

.hero-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--fl-light-gold);
    transition: all 0.3s ease;
}

.hero-card:hover .hero-image {
    border-color: var(--fl-orange);
    transform: scale(1.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
}

    .hero-content h4 {
        color: var(--fl-dark-gold);
        margin-bottom: 5px;
        font-weight: 700;
    }

.hero-designation {
    color: var(--fl-yellow);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.hero-excerpt {
    color: var(--fl-dark);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-read-more {
    background: linear-gradient(135deg, var(--fl-yellow) 0%, var(--fl-orange) 100%);
    color: var(--fl-dark);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-read-more:hover {
        background: linear-gradient(135deg, var(--fl-orange) 0%, var(--fl-yellow) 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }

/* Hero Modal */
.hero-modal {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--fl-white);
    color: var(--fl-dark);
    animation: modalFadeIn 0.4s ease-in-out;
}

    .hero-modal .gradient-border {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(135deg, var(--fl-yellow), var(--fl-gold), var(--fl-orange));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: 1;
        pointer-events: none;
    }

.hero-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(145deg, #FFF9E6, #FFFFFF);
    padding: 5px;
    position: relative;
    z-index: 2;
}

.hero-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fl-light-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: transform 0.4s ease;
}

    .hero-image-circle:hover {
        transform: scale(1.05);
    }

.hero-story-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--fl-dark);
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
    background: linear-gradient(to right, var(--fl-yellow), var(--fl-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInText 0.8s ease-in;
}

/* Form Elements */
.form-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--fl-dark);
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--fl-gold);
        box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    }

.required:after {
    content: " *";
    color: #dc3545;
}

/* Footer */
.footer {
    background: var(--fl-dark);
    color: var(--fl-white);
    padding: 60px 0 30px;
}

.social-links a {
    color: var(--fl-white);
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        color: var(--fl-gold);
    }

/* Page Transitions */
.page-content {
    display: none;
}

    .page-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

/* Loading States */
.loading {
    text-align: center;
    padding: 40px 0;
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
    color: var(--fl-gold);
}

/* Logo Styles */
.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--fl-yellow) 0%, var(--fl-orange) 100%);
    padding: 3px;
}

    .logo-circle .logo-img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
    }

.login-logo {
    display: block;
    margin: 0 auto 1rem auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--fl-gold);
}

/* Edit Section Button */
.btn-edit-section {
    background-color: var(--fl-gold);
    border: none;
    color: var(--fl-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .btn-edit-section:hover {
        background-color: var(--fl-yellow);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-card:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-card:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Features Section */
.bg-light {
    background-color: var(--fl-light) !important;
}

/* VLT Brief Section */
#VLTBrief {
    background: linear-gradient(135deg, var(--fl-light) 0%, var(--fl-white) 100%);
    padding: 4rem 0;
    text-align: center;
}

    #VLTBrief h1 {
        color: var(--fl-dark-gold);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    #VLTBrief h2 {
        color: var(--fl-yellow);
        font-weight: 500;
        margin-bottom: 1.5rem;
    }

    #VLTBrief p {
        max-width: 800px;
        margin: 0 auto 2rem;
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--fl-dark);
    }
.vlt-header {
    z-index: 1000;
    position: relative;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.08);
    position: relative;
    border-radius: 0 0 8px 8px; /* Smooth 3D edge effect */
}

.vlt-header-left,
.vlt-header-center,
.vlt-header-right {
    display: flex;
    align-items: center;
}

.vlt-header-left {
    flex: 0 0 auto;
}

.vlt-logo {
    height: 40px;
    object-fit: contain;
}

.vlt-header-center {
    flex: 1;
    justify-content: center;
}

    .vlt-header-center h1 {
        margin: 0;
        font-size: 22px;
        font-weight: 600;
        color: #333;
    }

.vlt-header-right {
    flex: 0 0 auto;
    gap: 10px;
    cursor: pointer;
}

.vlt-user-img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.vlt-dropdown {
    font-size: 16px;
    color: #555;
}
/* Responsive Design */
@media (max-width: 768px) {
    .vlt-dropdown-container .vlt-menu {
         top: calc(100% + 6px);
        z-index: 5000;
        
    }
    .hero {
        padding: 60px 0;
    }

    .section {
        padding: 60px 0;
    }

    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        bottom: 20px;
        padding: 15px;
    }

    .hero-card {
        margin-bottom: 20px;
    }

    .hero-image {
        width: 100px;
        height: 100px;
    }
}
.why-content-card {
    flex: 1 1 300px;
    background: linear-gradient(45deg, var(--fl-yellow) 0%, var(--fl-gold) 25%, var(--fl-orange) 10%, var(--fl-gold) 75%, var(--fl-yellow) 100%);
    padding: 20px;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }

    .hero {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

}
footer {
    background: linear-gradient(45deg, var(--fl-yellow) 0%, var(--fl-gold) 25%, var(--fl-orange) 50%, var(--fl-gold) 75%, var(--fl-yellow) 100%);
    color: #333;
    padding: 10px;
    text-align: center;
    margin-top: 30px;
}
/* Dropdown Wrapper */
.vlt-dropdown-container {
    position: relative;
    z-index: 5000; /* higher than navbar */
}

/* Hidden by default */
.vlt-menu {
    position: absolute;
    right: 0;
    top: 42px;
    width: 160px;
    background: white;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 6000;
}
.navbar, .navbar .navbar-collapse, .navbar .collapse.show {
    height: 20%;
    margin-left: -2px;
    // z-index: 2000;
    position: relative;
}

/* Visible when .open class is added */
.vlt-dropdown-container.open .vlt-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index:6000;
}

.vlt-menu li {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

    .vlt-menu li:hover {
        background: #f5f5f5;
    }

.vlt-menu .divider {
    height: 1px;
    background: #ddd;
    margin: 6px 0;
    pointer-events: none;
}
/* Founder Section */
.founder-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 80px;
}

.founder-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid gold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.founder-bio {
    flex: 1;
}

/* Co-Founder Section */
.co-founder-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: center;
}

.co-founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid black;
    object-fit: cover;
}

/* Top Performer Carousel */
.performer-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px;
    margin-top: 40px;
}

.performer-item {
    text-align: center;
    position: relative;
}

.performer-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid black;
    position: relative;
}

.performer-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}

.performer-name {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}
/* Golden Star on edge */
.performer-star {
    width: 28px;
    height: 28px;
    position: absolute;
    top: -10px;
    right: -10px;
}
    .performer-star::after {
        content: "⭐";
        position: absolute;
        font-size: 32px;
        right: -10px;
        bottom: -10px;
    }
/* Hide scrollbar */
.performer-carousel::-webkit-scrollbar {
    display: none;
}
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-btn {
    position: absolute;
    top: 40%;
    background: black;
    color: white;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
    font-size: 22px;
    z-index: 5;
    border-radius: 4px;
}

    .carousel-btn.left {
        left: -10px;
    }

    .carousel-btn.right {
        right: -10px;
    }
.section-separator {
    width: 100%;
    height: 3px;
    margin: 50px 0;
    background: linear-gradient(to right, transparent, gold, transparent);
}
/*.section-separator {
    width: 100%;
    height: 4px;
    margin: 50px auto;
    background: linear-gradient(to right, #000, #d4af37, #000);
}*/
/*.section-separator {
    width: 100%;
    height: 2px;
    margin: 50px 0;
    background: linear-gradient(to right, rgba(255,255,255,0), gold, rgba(255,255,255,0));
}*/

/*.ornamental-separator {
    width: 100%;
    margin: 40px 0;
}

    .ornamental-separator svg {
        width: 100%;
        height: 60px;
    }

    .ornamental-separator path {
        fill: none;
        stroke: url(#gold-gradient);
        stroke-width: 4;
    }*/

    /* Define the gold gradient for stroke */
    /*.ornamental-separator svg defs {
        display: block;
    }*/
/* Ensure hover highlight works inside mobile collapsed menu */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 10px 14px;
        border-radius: 6px;
        display: block;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            background-color: var(--fl-gold) !important;
            color: var(--fl-dark) !important;
        }

    /* If gold is not visible, enforce contrast */
    .navbar-nav .nav-item:hover > .nav-link {
        background-color: var(--fl-gold) !important;
        color: var(--fl-dark) !important;
    }
}
