/* Custom CSS for NeuroView Landing Page */

:root {
    --primary-blue: #1e293b;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --success-green: #22c55e;
    --emerald-green: #10b981;
    --warning-yellow: #f59e0b;
    --light-gray: #f1f5f9;
    --lighter-gray: #f8fafc;
    --dark-gray: #1f2937;
    --navy-dark: #0f172a;
}

/* General Styles */
body {
    padding-top: 68px;
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Inter', 'Tahoma', 'Poppins', sans-serif;
    font-weight: 800;
}

h2.fw-bold {
    font-weight: 800 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    z-index: 1030;
    padding: 10px 0 8px;
}

.navbar .btn {
    position: relative;
    z-index: 1031;
    pointer-events: auto;
}

.navbar-brand {
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    position: relative;
}

.logo-icon .main-icon {
    color: white;
    font-size: 1rem;
    margin: 0 2px 4px 0;
}

.logo-icon .robot-icon {
    position: absolute;
    bottom: 4px;
    right: 4px;
    color: white;
    font-size: 0.6rem;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-blue) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-blue) 30%, var(--secondary-blue) 100%);
    padding: 115px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Floating background icons for hero section */
.hero-section .floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 2;
}

.hero-section .floating-icon:nth-child(1) {
    top: 12%;
    left: 10%;
    font-size: 2.5rem;
    animation: verticalFloat 8s ease-in-out infinite;
}

.hero-section .floating-icon:nth-child(2) {
    top: 25%;
    right: 15%;
    font-size: 2rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(3) {
    bottom: 45%;
    left: 15%;
    font-size: 1.8rem;
    animation: verticalFloat 12s ease-in-out infinite;
}

.hero-section .floating-icon:nth-child(4) {
    bottom: 18%;
    right: 25%;
    font-size: 2.2rem;
    animation: verticalFloat 9s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(5) {
    top: 36%;
    left: 5%;
    font-size: 1.5rem;
    animation: verticalFloat 11s ease-in-out infinite;
}

.hero-section .floating-icon:nth-child(6) {
    top: 60%;
    right: 5%;
    font-size: 1.8rem;
    animation: verticalFloat 7s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(7) {
    top: 78%;
    left: 7%;
    font-size: 1.8rem;
    animation: verticalFloat 11s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(8) {
    top: 85%;
    right: 12%;
    font-size: 1.5rem;
    animation: verticalFloat 9s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(9) {
    top: 8%;
    left: 28%;
    font-size: 1.3rem;
    animation: verticalFloat 12s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(10) {
    top: 8%;
    right: 8%;
    font-size: 1.5rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(11) {
    bottom: 10%;
    left: 25%;
    font-size: 1.6rem;
    animation: verticalFloat 9s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(12) {
    top: 8%;
    right: 30%;
    font-size: 1.4rem;
    animation: verticalFloat 10s ease-in-out infinite;
}

/*
.hero-section .floating-icon:nth-child(13) {
  top: 35%;
  right: 10%;
  font-size: 1.4rem;
  animation: verticalFloat 7s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(14) {
  bottom: 40%;
  left: 8%;
  font-size: 1.7rem;
  animation: verticalFloat 10s ease-in-out infinite;
}

.hero-section .floating-icon:nth-child(15) {
  top: 25%;
  left: 12%;
  font-size: 1.5rem;
  animation: verticalFloat 9s ease-in-out infinite reverse;
}
*/

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Trust badge variant for light backgrounds */
.bg-light .trust-badge,
section:not(.hero-section):not(.tagline-section):not(.footer-section) .trust-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--dark-gray);
}

.bg-light .trust-badge span,
section:not(.hero-section):not(.tagline-section):not(.footer-section) .trust-badge span {
    color: var(--dark-gray);
}

/* Green badge variant */
.green-badge {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
}

.green-badge span {
    color: rgba(255, 255, 255, 0.5) !important;
}

.green-badge i {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Soft green badge variant */
.soft-green-badge {
    background: rgba(16, 185, 129, 0.15) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    backdrop-filter: blur(10px);
}

.soft-green-badge span {
    color: #059669 !important;
}

.soft-green-badge i {
    color: #059669 !important;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #6ee7b7 50%, #33d59a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gradient-text-2 {
    background: linear-gradient(135deg, #44daa2 10%, #6ee7b7 50%, #64b0ef 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Benefit Cards */
.benefit-card {
    /*background: white;*/
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Step Cards */
.step-card {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h5 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Tagline Section */
.tagline-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-blue) 30%, var(--secondary-blue) 100%);
    padding: 80px 0 65px;
    position: relative;
    overflow: hidden;
}

.tagline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Floating background icons for tagline section */
.tagline-section .floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 2;
}

.tagline-section .floating-icon:nth-child(1) {
    top: 12%;
    left: 20%;
    font-size: 1.2rem;
    animation: verticalFloat 9s ease-in-out infinite;
}

.tagline-section .floating-icon:nth-child(2) {
    top: 20%;
    right: 18%;
    font-size: 1.8rem;
    animation: verticalFloat 11s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(3) {
    top: 12%;
    right: 5%;
    font-size: 1.5rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(4) {
    bottom: 10%;
    left: 18%;
    font-size: 1.6rem;
    animation: verticalFloat 9s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(5) {
    top: 8%;
    right: 30%;
    font-size: 1.5rem;
    animation: verticalFloat 11s ease-in-out infinite;
}

.tagline-section .floating-icon:nth-child(6) {
    bottom: 8%;
    right: 35%;
    font-size: 1.4rem;
    animation: verticalFloat 7s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(7) {
    bottom: 42%;
    left: 4%;
    font-size: 1.7rem;
    animation: verticalFloat 10s ease-in-out infinite;
}

.tagline-section .floating-icon:nth-child(8) {
    top: 45%;
    left: 15%;
    font-size: 1.8rem;
    animation: verticalFloat 9s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(9) {
    bottom: 15%;
    left: 30%;
    font-size: 1.5rem;
    animation: verticalFloat 8s ease-in-out infinite;
}

.tagline-section .floating-icon:nth-child(10) {
    bottom: 25%;
    right: 22%;
    font-size: 2.2rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(11) {
    top: 15%;
    left: 6%;
    font-size: 1.9rem;
    animation: verticalFloat 8s ease-in-out infinite;
}

.tagline-section .floating-icon:nth-child(12) {
    bottom: 22%;
    right: 6%;
    font-size: 1.9rem;
    animation: verticalFloat 12s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(13) {
    top: 10%;
    left: 40%;
    font-size: 1.1rem;
    animation: verticalFloat 10s ease-in-out infinite;
}

.tagline-section .floating-icon:nth-child(14) {
    bottom: 47%;
    right: 14%;
    font-size: 1.8rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.tagline-section .floating-icon:nth-child(15) {
    top: 78%;
    left: 7%;
    font-size: 1.6rem;
    animation: verticalFloat 11s ease-in-out infinite;
}

.tagline-section .floating-icon:nth-child(16) {
    bottom: 5%;
    right: 12%;
    font-size: 1.1rem;
    animation: verticalFloat 7s ease-in-out infinite reverse;
}

/* Video Cards */
.video-carousel-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.video-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.video-slide {
    display: none;
    width: 100%;
}

.video-slide.active {
    display: block;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.video-content {
    position: relative;
}

.video-player {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    gap: 20px;
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-pause-btn:hover {
    background: white;
    transform: scale(1.1);
}

.fullscreen-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fullscreen-btn:hover {
    background: white;
    transform: scale(1.1);
}

.mute-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mute-btn:hover {
    background: white;
    transform: scale(1.1);
}

.video-player.playing .video-overlay {
    opacity: 0;
}

.video-player.playing:hover .video-overlay {
    opacity: 1;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Video Navigation Buttons */
.video-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.video-nav-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.video-nav-btn.active {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.video-nav-btn:hover:not(.active) {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-blue) 30%, var(--secondary-blue) 100%);
    padding: 75px 0 50px;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Floating background icons for features section */
.features-section .floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 2;
}

.features-section .floating-icon:nth-child(1) {
    top: 11%;
    right: 25%;
    font-size: 1.9rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(2) {
    top: 10%;
    left: 5%;
    font-size: 2.2rem;
    animation: verticalFloat 9s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(3) {
    top: 18%;
    left: 17%;
    font-size: 1.2rem;
    animation: verticalFloat 11s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(4) {
    top: 7%;
    left: 30%;
    font-size: 1.7rem;
    animation: verticalFloat 8s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(5) {
    bottom: 20%;
    right: 18%;
    font-size: 1.6rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(6) {
    top: 33%;
    left: 8%;
    font-size: 1.8rem;
    animation: verticalFloat 12s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(7) {
    top: 7%;
    right: 8%;
    font-size: 1.8rem;
    animation: verticalFloat 7s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(8) {
    top: 22%;
    right: 15%;
    font-size: 1.5rem;
    animation: verticalFloat 9s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(9) {
    bottom: 7%;
    left: 43%;
    font-size: 1.8rem;
    animation: verticalFloat 11s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(10) {
    bottom: 18%;
    left: 35%;
    font-size: 1rem;
    animation: verticalFloat 8s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(11) {
    bottom: 40%;
    right: 33%;
    font-size: 1.7rem;
    animation: verticalFloat 10s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(12) {
    top: 33%;
    right: 5%;
    font-size: 1.2rem;
    animation: verticalFloat 12s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(13) {
    bottom: 4%;
    left: 17%;
    font-size: 1.7rem;
    animation: verticalFloat 7s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(14) {
    bottom: 25%;
    right: 3%;
    font-size: 1.6rem;
    animation: verticalFloat 9s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(15) {
    top: 65%;
    left: 38%;
    font-size: 1.8rem;
    animation: verticalFloat 11s ease-in-out infinite reverse;
}

.features-section .floating-icon:nth-child(16) {
    bottom: 4%;
    right: 26%;
    font-size: 1.4rem;
    animation: verticalFloat 8s ease-in-out infinite;
}


.features-section .floating-icon:nth-child(17) {
    bottom: 20%;
    right: 42%;
    font-size: 1.5rem;
    animation: verticalFloat 9s ease-in-out infinite;
}

.features-section .floating-icon:nth-child(18) {
    bottom: 25%;
    left: 2%;
    font-size: 1.4rem;
    animation: verticalFloat 8s ease-in-out infinite;
}

/* Features section text colors */
.features-section h2 {
    color: white !important;
}

.features-section h3 {
    color: white !important;
}

.features-section .lead {
    color: rgba(255, 255, 255, 0.85) !important;
}

.features-section .feature-list li {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Tab styling for blue background */
.features-section .nav-pills .nav-link {
    background: #549af9;
    border: 2px solid #549af9;
    color: white !important;
    backdrop-filter: blur(10px);
}

.features-section .nav-pills .nav-link.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.features-section .nav-pills .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Feature Tabs */
.nav-pills .nav-link {
    color: var(--dark-gray);
    background: transparent;
    border: 2px solid #e5e7eb;
    margin: 0 0.4rem;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-pills .nav-link.active {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-pane.show.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0.1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #374151;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--success-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
}

.feature-list li::after {
    content: '✓';
    position: absolute;
    left: 8px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    pointer-events: none;
}

/* Feature section typography improvements */
#features h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

#features .lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.nav-pills .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.feature-image {
    max-width: 100%;
    border-radius: 12px;
    /*background-color: #f8f9fa;
    padding-top: 10px;*/
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
}

.feature-image:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);*/
}

/* Review Cards */
.review-card {
    /*background: white;*/
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stars {
    font-size: 1.2rem;
}

.reviewer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Pricing Cards */
.pricing-card {
    /*background: white;*/
    /*border: 6px solid var(--accent-blue);*/
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 8px solid rgba(59, 130, 246, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
    /*border-color: var(--accent-blue);*/
}

.pricing-card.featured {
    position: relative;
    transform: scale(1.05);
    /*border: 6px solid rgba(70, 169, 53, 0.13);*/
    /*border-color: var(--emerald-green);*/
    border: 8px solid rgba(16, 185, 129, 0.13);
}

.pricing-card.featured:hover {
    border: 8px solid rgba(16, 185, 129, 0.23);
    /*border-color: var(--emerald-green);*/
}

/*
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald-green);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
*/
.pricing-header h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.amount {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.period {
    font-size: 1.1rem;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-blue) 30%, var(--secondary-blue) 100%);
    padding: 38px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Floating background icons for footer section */
.footer-section .floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
}

.footer-section .floating-icon:nth-child(1) {
    top: 20%;
    left: 3%;
    font-size: 1.7rem;
    animation: verticalFloat 9s ease-in-out infinite reverse;
}

.footer-section .floating-icon:nth-child(2) {
    bottom: 15%;
    right: 3%;
    font-size: 1.8rem;
    animation: verticalFloat 11s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(3) {
    top: 50%;
    left: 20%;
    font-size: 1.4rem;
    animation: verticalFloat 9s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(4) {
    top: 70%;
    right: 28%;
    font-size: 1rem;
    animation: verticalFloat 12s ease-in-out infinite reverse;
}

.footer-section .floating-icon:nth-child(5) {
    top: 72%;
    left: 2%;
    font-size: 1.3rem;
    animation: verticalFloat5 11s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(6) {
    bottom: 20%;
    right: 37%;
    font-size: 1.6rem;
    animation: verticalFloat1 8s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(7) {
    top: 30%;
    left: 47%;
    font-size: 1.9rem;
    animation: verticalFloat 7s ease-in-out infinite reverse;
}

.footer-section .floating-icon:nth-child(8) {
    top: 27%;
    left: 38%;
    font-size: 1.2rem;
    animation: verticalFloat 10s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(9) {
    top: 22%;
    right: 40%;
    font-size: 1.1rem;
    animation: verticalFloat 9s ease-in-out infinite reverse;
}

.footer-section .floating-icon:nth-child(10) {
    bottom: 30%;
    right: 12%;
    font-size: 1.4rem;
    animation: verticalFloat 10s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(11) {
    bottom: 12%;
    right: 47%;
    font-size: 1rem;
    animation: verticalFloat 12s ease-in-out infinite reverse;
}

/*
.footer-section .floating-icon:nth-child(11) {
  bottom: 50%;
  left: 15%;
  font-size: 1.3rem;
  animation: verticalFloat 7s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(12) {
  top: 45%;
  right: 10%;
  font-size: 1.3rem;
  animation: verticalFloat 7s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(13) {
  bottom: 25%;
  left: 25%;
  font-size: 1.6rem;
  animation: verticalFloat 8s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(14) {
  top: 22%;
  right: 35%;
  font-size: 1.7rem;
  animation: verticalFloat 10s ease-in-out infinite reverse;
}

.footer-section .floating-icon:nth-child(15) {
  bottom: 7%;
  left: 42%;
  font-size: 1.7rem;
  animation: verticalFloat 11s ease-in-out infinite;
}

.footer-section .floating-icon:nth-child(16) {
  top: 40%;
  left: 45%;
  font-size: 1.6rem;
  animation: verticalFloat 8s ease-in-out infinite reverse;
}

.footer-section .floating-icon:nth-child(17) {
  top: 35%;
  right: 6%;
  font-size: 1.8rem;
  animation: verticalFloat 12s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(16) {
  top: 55%;
  left: 15%;
  font-size: 1.5rem;
  animation: verticalFloat 12s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(17) {
  bottom: 25%;
  right: 12%;
  font-size: 1.9rem;
  animation: verticalFloat 8s ease-in-out infinite;
}

.hero-section .floating-icon:nth-child(18) {
  top: 65%;
  right: 6%;
  font-size: 1.3rem;
  animation: verticalFloat 9s ease-in-out infinite reverse;
}

.hero-section .floating-icon:nth-child(19) {
  top: 15%;
  right: 25%;
  font-size: 1.6rem;
  animation: verticalFloat 11s ease-in-out infinite;
}

.hero-section .floating-icon:nth-child(20) {
  bottom: 35%;
  left: 8%;
  font-size: 1.8rem;
  animation: verticalFloat2 10s ease-in-out infinite;
}*/


.footer-nav a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white !important;
}

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

.social-links a:hover {
    color: white !important;
}

.benefit-card,
.step-card,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button enhancements */
.btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-success {
    background: var(--emerald-green);
    border-color: var(--emerald-green);
}

.btn-success:hover {
    background: #16a34a;
    border-color: #16a34a;
}

.btn-primary {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

/* Keyframe animations for floating icons */
@keyframes verticalFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) translateX(4px) rotate(1deg);
    }
    50% {
        transform: translateY(-4px) translateX(-6px) rotate(-0.5deg);
    }
    75% {
        transform: translateY(-12px) translateX(2px) rotate(0.8deg);
    }
}

@keyframes floatMedium {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-6px) translateX(-4px) rotate(-0.8deg);
    }
    66% {
        transform: translateY(-10px) translateX(5px) rotate(1.2deg);
    }
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .video-player {
        height: 362px;
    }
}

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-pills .nav-link {
        display: block;
        padding: 12px 12px;
        min-width: 180px;
    }

    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }

    .video-player {
        height: 267px;
    }
}

@media (max-width: 550px) {
    .video-player {
        height: 200px;
    }
}

@media (max-width: 430px) {
    .video-player {
        height: 200px;
    }
}
