.site-inner{max-width: 100%;}
.scroll-to-top{line-height: 0;}

/* Custom Styles for FarmFresh Landing Page */

/* Global Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #ffffff;
}

.text-white {
    color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Remove border-right from hero-title with magic-scroll and visible classes */
.hero-title.magic-scroll.visible {
    border-right: none !important;
}

/* Logo Styles */
.navbar-logo {
    height: 140px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}





/* Trending Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    background: #465915 url('http://hectr.io/wp-content/uploads/2025/07/banner-img-2-1.png') no-repeat center center;
    background-size: cover;
    padding-top: 110px; /* Add padding for fixed navbar */
}

.hero-section .container-fluid {
    position: relative;
    z-index: 10;
    min-height: calc(100vh - 80px);
}

/* Trending Background */
.trending-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.9;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 0 50px rgba(207, 198, 82, 0.2);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #b6ba4c, #465915);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #b6ba4c, #465915);
    top: 50%;
    right: -50px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #b6ba4c, #465915);
    bottom: -50px;
    left: 50%;
    animation-delay: 4s;
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(182, 186, 76, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(182, 186, 76, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(182, 186, 76, 0.3) 0%, transparent 50%);
    z-index: 3;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Trending Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
    transform: none !important;
}

.trending-badge {
    margin-bottom: 2rem;
}

.trending-badge .glass-card {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #b6ba4c, #465915);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(182, 186, 76, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #acb545, #cfc652, #465914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Trending Stats */
.trending-stats {
    margin-bottom: 2rem;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 650px;
    text-align: left;
}

.stats-list li {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.stats-list li:before {
    content: "";
    color: #cfc652;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.1rem;
}

.stats-list li strong {
    color: #FFFFFF;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #cfc652;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Trending Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trending-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #465915;
    border: 2px solid #ffffff;
}

.trending-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: #f8f8f8;
    color: #465915;
}

/* Floating Card */
.floating-card {
    position: relative;
    z-index: 10;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}



/* Hero Content Styles */
.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff;
}

.hero-badge {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* Hero Visual Styles */
.hero-visual {
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 2rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(182, 186, 76, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 12px 24px rgba(182, 186, 76, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.hero-image-wrapper:hover .hero-main-image {
    filter: brightness(1.1) contrast(1.05);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    padding: 2rem;
    border-radius: 0 0 25px 25px;
}

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

.hero-image-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-image-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-main-image {
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(207, 198, 82, 0.3);
}

.floating-icon:hover {
    color: #cfc652;
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(207, 198, 82, 0.8);
}

.floating-icon.icon-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation: float 4s ease-in-out infinite, cryptoPulse 3s ease-in-out infinite;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
    animation: float 4s ease-in-out infinite, blockchainGlow 4s ease-in-out infinite;
}

.floating-icon.icon-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.floating-icon.icon-4 {
    top: 40%;
    right: 30%;
    animation-delay: 3s;
}

.floating-icon.icon-5 {
    bottom: 40%;
    right: 20%;
    animation-delay: 4s;
}

.floating-icon.icon-6 {
    top: 60%;
    left: 10%;
    animation-delay: 5s;
}

/* Floating Background Leaves */
.hero-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50% 0 50% 0;
    animation: floatLeaf 8s linear infinite;
}

.floating-leaf.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-leaf.leaf-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-leaf.leaf-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
}

.floating-leaf.leaf-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.floating-leaf.leaf-5 {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

@keyframes cryptoPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes blockchainGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(207, 198, 82, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(207, 198, 82, 1), 0 0 30px rgba(207, 198, 82, 0.8);
    }
}

@keyframes floatLeaf {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}



/* Navigation */
.navbar {
    background-color: transparent !important;
    transition: all 0.3s ease;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    transform: translateY(0);
}

.navbar.scrolled {
    background-color: transparent !important;
    box-shadow: none;
    border-bottom: none;
}

.navbar-brand {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: #465915 !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: #b6ba4c !important;
    text-shadow: 0 0 10px rgba(182, 186, 76, 0.3);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: #465915 !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.nav-link:hover {
    color: #b6ba4c !important;
    background-color: rgba(182, 186, 76, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #b6ba4c, #cfc652);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
    box-shadow: 0 0 5px rgba(182, 186, 76, 0.5);
}

.nav-link:hover::after {
    width: 80%;
}

/* Navbar Toggler Enhancement */
.navbar-toggler {
    border: none !important;
    padding: 0.5rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(182, 186, 76, 0.1);
}

.navbar-toggler:hover {
    background-color: rgba(182, 186, 76, 0.2);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(182, 186, 76, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23465915' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar Collapse Enhancement */
.navbar-collapse {
    background-color: transparent;
    border-radius: 12px;
    margin-top: 0;
    padding: 1rem;
    backdrop-filter: none;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 1.5rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(182, 186, 76, 0.2);
        color: #b6ba4c !important;
        transform: translateX(5px);
    }
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

/* Trending Features Section */
.trending-section {
    padding: 4rem 0;
    background: #465915;
    position: relative;
    overflow: hidden;
/*     min-height: 80vh; */
}

/* Dark Sections */
.trending-section.dark {
    background: #465915;
}

/* Light Sections */
.trending-section.light {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.trending-section.light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(182, 186, 76, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(182, 186, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Text colors for light sections */
.trending-section.light .section-title {
    color: #465915;
}

.trending-section.light .section-subtitle {
    color: rgba(70, 89, 21, 0.9);
}

.trending-section.light .content-text {
    color: #ffffff;
}

.trending-section.light .feature-title {
    color: #ffffff;
}

.trending-section.light .feature-description {
    color: #ffffff;
}

.trending-section.light .verified-title {
    color: #ffffff;
}

.trending-section.light .verified-text {
    color: #ffffff;
}

.trending-section.light .content-title {
    color: #ffffff;
}

.trending-section.light .benefits-list li {
    color: #ffffff;
}

.trending-section.light .benefits-list li::before {
    color: #b6ba4c;
}

/* Glass card styling for light sections */
.trending-section.light .glass-card {
    background: rgba(70, 89, 21, 0.1);
    border: 1px solid rgba(70, 89, 21, 0.2);
    box-shadow: 0 8px 32px rgba(70, 89, 21, 0.1);
}

.trending-section.light .glass-card:hover {
    background: rgba(70, 89, 21, 0.15);
    box-shadow: 0 20px 40px rgba(70, 89, 21, 0.2);
}

/* Button styling for light sections */
.trending-section.light .btn-outline-light {
    color: #465915;
    border-color: #465915;
}

.trending-section.light .btn-outline-light:hover {
    background-color: #465915;
    color: #ffffff;
}

.trending-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(182, 186, 76, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(182, 186, 76, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.section-header {
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trending-section.light .section-header {
    color: #ffffff;
    text-shadow: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    letter-spacing: -0.01em;
}

.trending-section.light .section-title {
    text-shadow: none;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #b6ba4c, #465915);
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(182, 186, 76, 0.4);
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.trending-section.light .section-subtitle {
    text-shadow: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-item {
    position: relative;
}

.feature-card {
    width: 100%;
    text-align: center;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: 100%;
}



.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #b6ba4c;
    display: inline-block;
}

.feature-content .link-icon {
    font-size: 3rem;
    color: #b6ba4c;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #465915;
    min-height: 400px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('http://hectr.io/wp-content/uploads/2025/08/sustainable-agriculture-1.png') center center/cover no-repeat, linear-gradient(135deg, #465915, #b6ba4c);
    transform: translateY(0) scale(1);
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    z-index: 1;
    transform-origin: center center;
    backface-visibility: hidden;
    perspective: 1000px;
}

.parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
    background: transparent;
    border-radius: 20px;
    backdrop-filter: none;
    animation: fadeInUp 1s ease-out 0.5s both;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.parallax-content:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: none;
}

.parallax-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
    animation: slideInDown 1s ease-out 0.8s both;
}

.parallax-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    animation: slideInUp 1s ease-out 1s both;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7), 
        rgba(70, 89, 21, 0.7),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 5;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(182, 186, 76, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}



.feature-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.trending-section.light .feature-title {
    color: #465915;
    text-shadow: none;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #b6ba4c, #cfc652);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(182, 186, 76, 0.5);
    transition: all 0.3s ease;
}



.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.trending-section.light .feature-description {
    color: rgba(70, 89, 21, 0.9);
    text-shadow: none;
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}



.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}



.feature-link {
    margin-top: auto;
}

.feature-link .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}



/* 3D Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1 !important;
}



/* Content Grid Styles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.content-item {
    position: relative;
}

.content-card {
    height: 100%;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.content-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    letter-spacing: -0.01em;
}

.trending-section.light .content-title {
    color: #465915;
    text-shadow: none;
}

.content-title::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #b6ba4c, #465915);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(182, 186, 76, 0.4);
}

.content-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.trending-section.light .content-text {
    color: rgba(70, 89, 21, 0.9);
    text-shadow: none;
}

.content-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.content-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

/* Hero Image Section Styles */
.hero-image-container {
    position: relative;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 15px 35px rgba(182, 186, 76, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b6ba4c, #cfc652, #b6ba4c);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    z-index: 10;
}

.hero-image-card:hover {
    transform: scale(1.02);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.5),
        0 20px 45px rgba(182, 186, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(182, 186, 76, 0.5);
}

.hero-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1);
}

.hero-image-card:hover .hero-main-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9), 
        rgba(70, 89, 21, 0.8),
        rgba(182, 186, 76, 0.6)
    );
    padding: 4rem 3rem 3rem;
    border-radius: 0 0 30px 30px;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-image-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #b6ba4c, #cfc652, #b6ba4c);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(182, 186, 76, 0.5);
}

.hero-image-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.trending-section.light .benefits-list li {
    color: rgba(70, 89, 21, 0.9);
    text-shadow: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #cfc652;
}

/* Responsive styles for hero image section */
@media (max-width: 768px) {
    .hero-image-container {
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .hero-image-card {
        border-radius: 20px;
    }
    
    .hero-main-image {
        height: 400px;
        border-radius: 20px;
    }
    
    .hero-image-overlay {
        padding: 3rem 2rem 2rem;
        border-radius: 0 0 20px 20px;
    }
    
    .hero-image-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image-title::after {
        width: 80px;
        height: 3px;
        bottom: -10px;
    }
    
    .hero-image-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-image-container {
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }
    
    .hero-main-image {
        height: 300px;
        border-radius: 15px;
    }
    
    .hero-image-card {
        border-radius: 15px;
    }
    
    .hero-image-overlay {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 0 0 15px 15px;
    }
    
    .hero-image-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-image-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.cta-section {
    margin-top: 1.5rem;
}

/* Verified Section */
.verified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.verified-item {
    position: relative;
}

.verified-card {
    height: 100%;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.verified-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.verified-icon {
    font-size: 3rem;
    color: #cfc652;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.verified-card:hover .verified-icon {
    transform: scale(1.1);
    color: #acb545;
}

.verified-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: left;
}

.trending-section.light .verified-title {
    color: #465915;
    text-shadow: none;
}

.verified-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #b6ba4c, #465915);
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(182, 186, 76, 0.3);
}

.verified-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.trending-section.light .verified-text {
    color: rgba(70, 89, 21, 0.9);
    text-shadow: none;
}

.verified-card .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.verified-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 198, 82, 0.3);
}

.feature-icon {
    transition: transform 0.3s ease;
}

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

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #465914 0%, #acb545 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(172, 181, 69, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(172, 181, 69, 0.6);
}

.btn-success {
    background: linear-gradient(135deg, #465914 0%, #cfc652 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(207, 198, 82, 0.4);
}

.btn-success:hover {
    box-shadow: 0 6px 20px rgba(207, 198, 82, 0.6);
}

.btn-outline-light:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #acb545;
    box-shadow: 0 0 0 0.2rem rgba(172, 181, 69, 0.25);
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

/* Social Links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #cfc652;
    transform: translateY(-2px);
}

/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Optimize scroll performance */
* {
    box-sizing: border-box;
}

/* Smooth scrolling for anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Prevent scroll jumping on mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
}

/* Optimized scroll margins for smooth navigation */
.section-hero,
.section-features,
.section-why-matters,
.section-parallax,
.section-broken-system,
.section-verified {
    scroll-margin-top: 80px;
}

/* Optimized transitions for better performance */
.nav-link,
.btn {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.feature-card,
.content-card,
.verified-card,
.hero-image-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optimize scroll performance */
.trending-section {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
}

/* Reduce layout thrashing */
.floating-icon,
.gradient-orb,
.hero-image-card,
.feature-card,
.content-card,
.verified-card {
    will-change: transform;
}

/* Optimize animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Why Matters Section - Block View */
.why-matters-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.why-matters-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-matters-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b6ba4c, #cfc652, #b6ba4c);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.why-matters-block:hover {
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b6ba4c, #cfc652);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(182, 186, 76, 0.3);
    transition: all 0.3s ease;
}

.why-matters-block:hover .block-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(182, 186, 76, 0.4);
}

.block-title {
    font-size: 2rem;
    font-weight: 700;
    color: #465915;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b6ba4c, #cfc652);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.why-matters-block:hover .block-title::after {
    width: 80px;
}

.block-content {
    position: relative;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #465915;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(182, 186, 76, 0.3);
}

.benefit-item i {
    font-size: 1.2rem;
    color: #465915;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
    color: #b6ba4c;
}

.benefit-item span {
    font-size: 1rem;
    color: #465915;
    font-weight: 600;
}

.block-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Contact Section Styles */
.section-contact {
    background: #465915 !important;
}

.section-contact .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.section-contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 2rem;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(182, 186, 76, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b6ba4c, #cfc652, #b6ba4c);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.contact-form-wrapper:hover {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(182, 186, 76, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(182, 186, 76, 0.5);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b6ba4c, #cfc652);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(182, 186, 76, 0.3);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover .form-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(182, 186, 76, 0.4);
}

.form-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-label {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-form .form-label i {
    color: #b6ba4c;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    color: #465915;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #b6ba4c;
    box-shadow: 
        0 0 0 0.3rem rgba(182, 186, 76, 0.3),
        0 8px 20px rgba(182, 186, 76, 0.2);
    color: #465915;
    outline: none;
    transform: translateY(-2px);
}

.contact-form .form-control:hover {
    border-color: rgba(182, 186, 76, 0.4);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control::placeholder {
    color: rgba(70, 89, 21, 0.6);
}

.contact-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.contact-form .form-check-input:checked {
    background-color: #b6ba4c;
    border-color: #b6ba4c;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #b6ba4c, #cfc652);
    border: none;
    border-radius: 20px;
    padding: 1.25rem 3rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 10px 25px rgba(182, 186, 76, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 
        0 15px 35px rgba(182, 186, 76, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #cfc652, #b6ba4c);
    color: #ffffff;
}

.contact-submit-btn:active {
    transform: scale(0.98);
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(182, 186, 76, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(182, 186, 76, 0.2);
    border-color: rgba(182, 186, 76, 0.4);
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #465915;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info-text {
    color: #465915;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.8;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(182, 186, 76, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b6ba4c, #cfc652);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(182, 186, 76, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(182, 186, 76, 0.4);
}

.contact-details h4 {
    color: #465915;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-details p {
    color: #465915;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.social-links-contact {
    text-align: center;
}

.social-links-contact h4 {
    color: #465915;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #b6ba4c, #cfc652);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(182, 186, 76, 0.3);
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(182, 186, 76, 0.4);
    color: #ffffff;
}

.social-icon i {
    font-size: 1.2rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form .form-control {
        padding: 1rem 1.25rem;
    }
    
    .contact-submit-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-form .form-control {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Responsive Design for Why Matters Section */
@media (max-width: 768px) {
    .why-matters-blocks {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .why-matters-block {
        padding: 2rem 1.5rem;
    }
    
    .block-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .block-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .block-title {
        font-size: 1.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .why-matters-block {
        padding: 1.5rem 1rem;
    }
    
    .block-title {
        font-size: 1.5rem;
    }
    
    .block-text {
        font-size: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .parallax-section {
        height: 50vh;
    }
    
    .parallax-title {
        font-size: 2.5rem;
    }
    
    .parallax-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-image-container {
        margin-top: 2rem;
        min-height: 300px;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .trending-stats {
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .trending-btn {
        width: 100%;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .gradient-orb {
        opacity: 0.3;
    }
    
    .features-grid {
        padding: 0 1rem;
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .feature-image {
        width: 100%;
        height: 200px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.75rem;
    }
    
    .feature-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .parallax-section {
        height: 40vh;
    }
    
    .parallax-title {
        font-size: 2rem;
    }
    
    .parallax-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .feature-card {
        padding: 2rem 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .hero-main-image {
        height: 250px;
    }
    
    .hero-image-title {
        font-size: 1.25rem;
    }
    
    .hero-image-text {
        font-size: 0.9rem;
    }
    
    .feature-img {
        height: 150px;
    }
    
    .content-img {
        height: 200px;
    }
    
    .hero-main-image {
        height: 350px;
    }
    
    .hero-image-title {
        font-size: 1.5rem;
    }
    
    .hero-image-text {
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Magic Scroll Effects */
.magic-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magic-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Make hero section content visible by default */
.hero-section .magic-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Make features section content visible by default */
#features .magic-scroll,
#features .magic-scroll-left,
#features .magic-scroll-right {
    opacity: 1;
    transform: translateY(0);
}

#features .magic-scroll-left {
    transform: translateX(0);
}

#features .magic-scroll-right {
    transform: translateX(0);
}

.magic-scroll-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magic-scroll-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.magic-scroll-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magic-scroll-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.magic-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magic-scroll-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced 3D Parallax Effects */
.parallax-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.parallax-layer {
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
}

.parallax-layer-1 {
    transform: translateZ(50px);
}

.parallax-layer-2 {
    transform: translateZ(100px);
}

.parallax-layer-3 {
    transform: translateZ(150px);
}

/* Parallax Elements */
.floating-icon {
    will-change: transform;
    transform-style: preserve-3d;
}

.gradient-orb {
    will-change: transform;
    transform-style: preserve-3d;
}

.feature-card {
    will-change: transform;
    transform-style: preserve-3d;
}

.content-card {
    will-change: transform;
    transform-style: preserve-3d;
}

.verified-card {
    will-change: transform;
    transform-style: preserve-3d;
}

.hero-main-image {
    will-change: transform;
    transform-style: preserve-3d;
}

/* Parallax Background Elements */
.hero-section {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.trending-section {
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Section Animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #465915 0%, #b6ba4c 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #465915 0%, #b6ba4c 100%);
}

/* Additional Enhancements */
.text-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

/* Hover Effects for Icons */
.bi {
    transition: all 0.3s ease;
    font-size: inherit;
    display: inline-block;
}

.card:hover .bi {
    transform: scale(1.1) rotate(5deg);
}

/* Ensure Bootstrap Icons are loaded */
@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
         url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

/* Contact Form Enhancement */
.card.shadow {
    border-radius: 20px;
    overflow: hidden;
}

/* Footer Enhancement */
footer {
    background: #ffffff !important;
}

footer h5 {
    color: #465915 !important;
}

footer p {
    color: #465915 !important;
}

footer a {
    color: #465915 !important;
}

footer a:hover {
    color: #b6ba4c !important;
}

footer .btn-outline-light {
    color: #465915 !important;
    border-color: #465915 !important;
}

footer .btn-outline-light:hover {
    background-color: #465915 !important;
    color: #ffffff !important;
}

footer .text-white {
    color: #465915 !important;
}

footer .text-white-50 {
    color: #465915 !important;
}

footer hr {
    border-color: #465915 !important;
    background-color: #465915 !important;
}

footer .btn-outline-light {
    background: linear-gradient(135deg, #b6ba4c, #cfc652) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

footer .btn-outline-light:hover {
    background: linear-gradient(135deg, #cfc652, #b6ba4c) !important;
    color: #ffffff !important;
}



.section-verified {
    position: relative;
}

.section-verified .container {
    position: relative;
    z-index: 2;
}

.section-why-matters {
    position: relative;
}

.section-why-matters .container {
    position: relative;
    z-index: 2;
}



/* Responsive Typography */
@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
} 

 
 
 
 
 
 