/*
Theme Name: BRKNivesh - FinalV2
Description: Fully Finalised - Testimonials Removal
Version: 1.0.10.1
Author: Shan
*/

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TradingView Widget */
.tradingview-widget-container {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: #1e293b;
}

/* Header Styles */
.site-header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(27, 79, 114, 0.1);
    position: sticky;
    top: 44px;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #1B4F72;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-logo-link img {
    height: 50px;
    width: auto;
}

.brand-title {
    color: #1B4F72;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.brand-desc {
    color: #7ED321;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Navigation */
.main-navigation {
    position: relative;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-menu a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.main-menu a:hover,
.main-menu .current-menu-item a {
    color: #1B4F72;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7ED321;
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu .current-menu-item a::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 25px;
    background: #1B4F72;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
    }
    
    .main-menu.open {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #EBF4FF 0%, #FFFFFF 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1B4F72;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .brand {
    color: #7ED321;
}

.hero-content p {
    font-size: 1.2rem;
    color: #6C7B7F;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background: #7ED321;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(126, 211, 33, 0.3);
}

.cta-btn:hover {
    background: #6BC113;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 211, 33, 0.4);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1B4F72;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #7ED321;
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    color: #1B4F72;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6C7B7F;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(27, 79, 114, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #7ED321;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 79, 114, 0.15);
}

.feature-card .checkmark {
    color: #7ED321;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #1B4F72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #6C7B7F;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    background: linear-gradient(135deg, #F8FAFB 0%, #EBF4FF 100%);
    position: relative;
    overflow: hidden;
}

.why-us-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="%23E2E8F0" opacity="0.5"/><circle cx="75" cy="75" r="1" fill="%23CBD5E1" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="%23E2E8F0" opacity="0.4"/><circle cx="10" cy="50" r="1" fill="%23CBD5E1" opacity="0.2"/><circle cx="90" cy="30" r="1" fill="%23E2E8F0" opacity="0.6"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.why-us-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2C3E50;
    font-weight: 400;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-us-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(27, 79, 114, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(126, 211, 33, 0.1);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7ED321, #1B4F72);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(27, 79, 114, 0.15);
    border-color: rgba(126, 211, 33, 0.3);
}

.why-us-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7ED321, #6BC113);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #FFFFFF;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(126, 211, 33, 0.3);
}

.why-us-card:hover .icon-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(126, 211, 33, 0.4);
}

.why-us-card h3 {
    color: #1B4F72;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.why-us-card:hover h3 {
    color: #7ED321;
}

.why-us-card p {
    color: #6C7B7F;
    line-height: 1.6;
    font-size: 1rem;
}

.why-us-conclusion {
    text-align: center;
    margin-top: 3rem;
}

.conclusion-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1B4F72;
    background: linear-gradient(135deg, #1B4F72, #7ED321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation for Why Us cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-us-card {
    animation: slideInUp 0.6s ease forwards;
}

.why-us-card:nth-child(1) { animation-delay: 0.1s; }
.why-us-card:nth-child(2) { animation-delay: 0.2s; }
.why-us-card:nth-child(3) { animation-delay: 0.3s; }
.why-us-card:nth-child(4) { animation-delay: 0.4s; }
.why-us-card:nth-child(5) { animation-delay: 0.5s; }
.why-us-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments for Why Us */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-card {
        padding: 2rem 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .conclusion-text {
        font-size: 1.3rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .why-us-intro {
        margin-bottom: 2rem;
    }
    
    .why-us-card {
        padding: 1.5rem 1rem;
    }
    
    .why-us-card h3 {
        font-size: 1.2rem;
    }
}

/* ========== ADDITIONAL STYLES FROM JAVASCRIPT ========== */

/* Animation classes for intersection observer */
.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.why-us-card {
    opacity: 0;
    transform: translateY(30px);
}

/* Hover rotate effect for icons */
.hover-rotate {
    transform: rotate(360deg) scale(1.1) !important;
}

/* Active navigation link styles */
.nav-link.active {
    color: #7ED321 !important;
}

.nav-link.active::after {
    width: 100% !important;
}

/* Enhanced hover effects */
.why-us-card:hover {
    transform: translateY(-15px) scale(1.04) !important;
    box-shadow: 0 25px 50px rgba(27, 79, 114, 0.2) !important;
}

/* Smooth transitions for all interactive elements */
.nav-link {
    transition: all 0.3s ease;
}

.icon-circle {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Additional fade-in animation */
.fade-in {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter styles (if you want to add number counters) */
.counter {
    font-size: 2rem;
    font-weight: 700;
    color: #7ED321;
    margin-bottom: 8px;
    display: block;
}


/* Products Section */
.products-section {
    background: #EBF4FF;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(27, 79, 114, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #7ED321;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(126, 211, 33, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(27, 79, 114, 0.2);
}

.product-card h3 {
    color: #1B4F72;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-card .returns {
    background: #EBF4FF;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.product-card .returns .percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #7ED321;
}

.product-card .duration {
    color: #1B4F72;
    font-weight: 600;
    margin-bottom: 1rem;
}


/* Testimonials Section */
.testimonial-section {
    background: #F8FAFB;
    padding: 80px 0;
    position: relative;
}

.testimonial-section h2 {
    text-align: center;
    color: #1B4F72;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonial-slider {
    position: relative;
    padding: 0 60px;
}

.testimonial-item {
    background: #FFFFFF;
    border-left: 4px solid #1B4F72;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(27, 79, 114, 0.1);
    margin: 0 15px;
    padding: 2rem 1.5rem 1.5rem 2rem;
    min-height: 200px;
    position: relative;
    transition: all 0.3s ease;
}

/* Step Effect - Rising Steps */
.testimonial-item.step-1 {
    margin-top: 60px;
}

.testimonial-item.step-2 {
    margin-top: 30px;
}

.testimonial-item.step-3 {
    margin-top: 0px;
}

.testimonial-item.step-4 {
    margin-top: 30px;
}

.testimonial-item.step-5 {
    margin-top: 60px;
}

.testimonial-item.step-6 {
    margin-top: 90px;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 79, 114, 0.2);
}

.testimonial-step-number {
    position: absolute;
    left: -20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: #7ED321;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(126, 211, 33, 0.3);
    border: 3px solid #FFFFFF;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #6C7B7F;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #1B4F72;
    font-weight: 600;
    font-size: 1rem;
}

/* Testimonial Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1B4F72;
    color: #FFFFFF;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 15px rgba(27, 79, 114, 0.3);
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: #7ED321;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.left {
    left: 15px;
}

.testimonial-arrow.right {
    right: 15px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: #EBF4FF;
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(27, 79, 114, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item h4 {
    color: #1B4F72;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6C7B7F;
    margin: 0;
}

.contact-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(27, 79, 114, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B4F72;
    box-shadow: 0 0 0 3px rgba(27, 79, 114, 0.1);
}

.form-submit .cta-btn {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* Footer */
.site-footer {
    background: #1B4F72;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    margin-bottom: 1rem;
    color: #7ED321;
    font-weight: 600;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.tagline {
    color: #B8D4F0;
    line-height: 1.6;
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block ul a {
    color: #B8D4F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul a:hover {
    color: #7ED321;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #B8D4F0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        padding: 0 20px;
    }
    
    .testimonial-item {
        margin-top: 0 !important;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .testimonial-arrow {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Hero Section Base Styles */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    color: #ffffff;
}

/* Overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 79, 114, 0.3);
    z-index: 1;
}

/* Hero content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 400px;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}


/* ========== INVESTMENT PHILOSOPHY SECTION ========== */
.investment-philosophy-section {
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
    padding: 60px 0;
    position: relative;
}

.investment-philosophy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.investment-philosophy-text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1B4F72;
    background: linear-gradient(135deg, #1B4F72, #7ED321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    position: relative;
    padding: 20px 0;
}

/* Add decorative elements */
.investment-philosophy-text::before,
.investment-philosophy-text::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7ED321, #1B4F72);
    top: 50%;
    transform: translateY(-50%);
}

.investment-philosophy-text::before {
    left: -80px;
}

.investment-philosophy-text::after {
    right: -80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .investment-philosophy-text::before,
    .investment-philosophy-text::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .investment-philosophy-section {
        padding: 40px 0;
    }
    
    .investment-philosophy-text {
        font-size: 1.5rem;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .investment-philosophy-text {
        font-size: 1.3rem;
        line-height: 1.5;
    }
}
/* ========== END INVESTMENT PHILOSOPHY SECTION ========== */

/* Form status messages */
.form-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #7ED321;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
    z-index: 9999;
    max-width: 300px;
    font-weight: 500;
}

.form-error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    z-index: 9999;
    max-width: 300px;
    font-weight: 500;
}


/* ========== FOOTER SCROLLER DISCLAIMER ========== */
.footer-scroller {
    width: 100%;
    background: #1B4F72;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    font-size: 11px;
    line-height: 30px;
    height: 30px;
    border-top: 2px solid #7ED321;
}


.footer-scroller p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Add bottom padding to body to prevent content overlap */
body {
    padding-bottom: 35px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-scroller {
        height: 30px;
        line-height: 30px;
        font-size: 10px;
    }
    
    .footer-scroller p {
        animation: scroll-left 25s linear infinite;
    }
    
    body {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .footer-scroller {
        height: 25px;
        line-height: 25px;
        font-size: 9px;
    }
    
    body {
        padding-bottom: 25px;
    }
}
/* ========== END FOOTER SCROLLER ========== */




