/* 
 * Pro Trades - Official Color Theme
 * Based on brand presentation design
 */

:root {
    /* Primary Colors - Dark Teal/Green Gradient (Like Presentation) */
    --primary-dark: #003d3d;
    --primary-medium: #004d4d;
    --primary-light: #005d5d;
    
    /* Background Gradient Colors */
    --bg-gradient-start: #002828;
    --bg-gradient-middle: #003838;
    --bg-gradient-end: #004545;
    
    /* Accent Colors */
    --accent-orange: #ff9800;
    --accent-orange-light: #ffa726;
    --accent-orange-dark: #f57c00;
    
    /* Secondary Accent - Blue */
    --accent-blue: #00bcd4;
    --accent-blue-light: #26c6da;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e0f2f1;
    --text-gray: #b2dfdb;
    --text-muted: #80cbc4;
    
    /* UI Colors */
    --card-bg: rgba(0, 77, 77, 0.6);
    --card-border: rgba(0, 188, 212, 0.2);
    --hover-bg: rgba(255, 152, 0, 0.1);
    
    /* Button Colors */
    --btn-primary-bg: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    --btn-secondary-bg: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    --btn-border: #ff9800;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  
    background-attachment: fixed !important;
    color: var(--text-light) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    position: relative;
}

/* Subtle Noise Texture Overlay for Body */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Alternative Background Pattern with Animated Orbs */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 15s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, rgba(0, 40, 40, 0.95) 0%, rgba(0, 50, 50, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    position: relative;
    z-index: 1001;
}

/* Diagonal Lines Texture for Top Bar */
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 188, 212, 0.02) 10px,
        rgba(0, 188, 212, 0.02) 20px
    );
    pointer-events: none;
    z-index: -1;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background-color: rgba(0, 188, 212, 0.1);
}

.top-bar-btn {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--text-white);
    border: 1px solid rgba(0, 188, 212, 0.4);
    background: transparent;
}

.btn-login:hover {
    border-color: var(--accent-blue);
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--accent-blue);
}

.btn-signup {
    background: var(--btn-primary-bg);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-signup:hover {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Header */
.main-header {
    background: linear-gradient(135deg, rgba(0, 50, 50, 0.95) 0%, rgba(0, 60, 60, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
}

/* Hexagon Pattern Texture for Header */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-section img {
    max-height: 50px;
    filter: drop-shadow(0 2px 8px rgba(255, 152, 0, 0.3));
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--btn-primary-bg);
    transition: width 0.3s ease;
}

.main-nav li a:hover {
    color: var(--accent-orange);
}

.main-nav li a:hover::after {
    width: 100%;
}

/* Banner Section */
.banner {
   
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Mesh Texture for Banner */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
}

/* Dot Grid Pattern for Banner */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.6;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    color: var(--text-white);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner h1 span {
    color: var(--accent-orange);
}

.banner p {
    color: var(--text-gray);
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--btn-primary-bg);
    padding: 16px 40px;
    border-radius: 8px;
    color: var(--text-white);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.5);
}

.btn-border {
    border: 2px solid var(--accent-orange);
    padding: 14px 40px;
    border-radius: 8px;
    color: var(--accent-orange);
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-border:hover {
    background: var(--accent-orange);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
}

/* Sections */
.section {
    padding: 80px 10px;
    position: relative;
    z-index: 1;
}

.about-section {
    background: linear-gradient(135deg, rgba(0, 50, 50, 0.6) 0%, rgba(0, 65, 65, 0.6) 100%);
    backdrop-filter: blur(5px);
    position: relative;
}

/* Geometric Triangle Pattern for About Section */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--text-white);
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content h2 span {
    color: var(--accent-orange);
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 17px;
}

/* Feature Cards */
.features-section {
    background: linear-gradient(135deg, rgba(0, 35, 35, 0.5) 0%, rgba(0, 48, 48, 0.5) 100%);
    position: relative;
}

/* Circuit Board Pattern for Features Section */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Glowing Dots for Features Section */
.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 152, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

/* Subtle Gradient Texture for Feature Cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, transparent 50%, rgba(255, 152, 0, 0.05) 100%);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
    background: rgba(0, 65, 65, 0.9);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card img {
    max-width: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(255, 152, 0, 0.3));
}

.feature-card h3 {
    color: var(--text-white);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 40, 40, 0.95) 0%, rgba(0, 50, 50, 0.95) 100%);
    border-top: 2px solid rgba(0, 188, 212, 0.3);
    padding: 60px 20px 30px;
    backdrop-filter: blur(10px);
    position: relative;
}

/* Wave Pattern Texture for Footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h6 {
    color: var(--accent-orange);
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
    color: var(--text-gray);
}

.footer-bottom strong {
    color: var(--accent-orange);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(0, 188, 212, 0.4);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    border-color: var(--accent-orange);
    background-color: rgba(255, 152, 0, 0.1);
}

/* Hide mobile menu buttons on desktop */
.mobile-menu-buttons {
    display: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(13, 61, 61, 0.98) 0%, rgba(16, 74, 74, 0.98) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 2px solid rgba(0, 188, 212, 0.3);
        gap: 0;
        align-items: flex-start;
    }
    
    .main-nav li {
        width: 100%;
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav li a {
        display: block;
        width: 100%;
        padding: 8px 0;
        font-size: 16px;
    }
    
    .main-nav li a::after {
        display: none;
    }
    
    .mobile-menu-buttons {
        display: flex;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-buttons a {
        flex: 1;
        padding: 12px 20px;
        text-align: center;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-buttons .btn-login {
        background: transparent;
        border: 1px solid rgba(0, 188, 212, 0.5);
        color: #00bcd4;
    }
    
    .mobile-menu-buttons .btn-login:hover {
        background: rgba(0, 188, 212, 0.1);
        border-color: #00bcd4;
    }
    
    .mobile-menu-buttons .btn-signup {
        background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
        color: #ffffff;
        border: none;
    }
    
    .mobile-menu-buttons .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .banner h1 {
        font-size: 36px;
    }
    
    .banner p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 28px;
    }
    
    .banner {
        min-height: 500px;
        padding: 80px 20px;
    }
    
    .top-bar-content {
        justify-content: space-between;
    }
    
    .btn-primary,
    .btn-border {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Fix AOS Animation Issues */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-blue) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-blue-light) 100%);
}


/* ========================================
   Additional Sections Styling
   ======================================== */

/* Service Section */
.service {
    background: linear-gradient(135deg, rgba(0, 50, 50, 0.6) 0%, rgba(0, 65, 65, 0.6) 100%) !important;
    padding: 80px 20px !important;
    position: relative !important;
}

/* Hexagonal Grid Pattern for Service Section */
.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(0, 188, 212, 0.02) 0px, transparent 1px, transparent 50px, rgba(0, 188, 212, 0.02) 51px),
        repeating-linear-gradient(90deg, rgba(0, 188, 212, 0.02) 0px, transparent 1px, transparent 50px, rgba(0, 188, 212, 0.02) 51px);
    pointer-events: none;
    z-index: 0;
}

.service .section-header h2 {
    color: var(--text-white) !important;
    font-size: 42px !important;
}

.service .section-header h2 span {
    color: var(--accent-orange) !important;
}

.service .section-header p {
    color: var(--text-gray) !important;
}

.service__item {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    padding: 35px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Radial Gradient Texture for Service Items */
.service__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service__item:hover {
    transform: translateY(-8px) !important;
    border-color: var(--accent-orange) !important;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3) !important;
    background: rgba(0, 65, 65, 0.9) !important;
}

.service__item:hover::before {
    opacity: 1;
}

.service__item-content h5 {
    color: var(--text-white) !important;
    font-size: 22px !important;
    margin-bottom: 15px !important;
}

.service__item-content h5 a {
    color: var(--text-white) !important;
}

.service__item-content p {
    color: var(--text-muted) !important;
}

.service__item-thumb img {
    filter: drop-shadow(0 4px 10px rgba(255, 152, 0, 0.3)) !important;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(0, 35, 35, 0.5) 0%, rgba(0, 48, 48, 0.5) 100%) !important;
    padding: 80px 20px !important;
    position: relative !important;
}

/* Diagonal Stripe Pattern for FAQ Section */
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    pointer-events: none;
    z-index: 0;
}

.faq .section-header h2 {
    color: var(--text-white) !important;
    font-size: 42px !important;
}

.faq .section-header h2 span {
    color: var(--accent-orange) !important;
}

.accordion__item {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    margin-bottom: 15px !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
}

/* Subtle Line Pattern for Accordion Items */
.accordion__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0, 188, 212, 0.03) 1px, transparent 1px);
    background-size: 20px 100%;
    border-radius: 10px;
    pointer-events: none;
    z-index: 0;
}

.accordion__button {
    background-color: transparent !important;
    color: var(--text-white) !important;
    font-weight: 600 !important;
    padding: 20px !important;
}

.accordion__button:not(.collapsed) {
    background-color: rgba(255, 152, 0, 0.1) !important;
    color: var(--accent-orange) !important;
}

.accordion__body {
    background-color: transparent !important;
    color: var(--text-gray) !important;
    padding: 20px !important;
}

.faq__thumb img {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Feature Section (Why Choose) */
.feature {
    background: linear-gradient(135deg, rgba(0, 50, 50, 0.6) 0%, rgba(0, 65, 65, 0.6) 100%) !important;
    padding: 80px 20px !important;
    position: relative !important;
}

/* Crosshatch Pattern for Feature Section */
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    pointer-events: none;
    z-index: 0;
}

.feature .section-header h2 {
    color: var(--text-white) !important;
    font-size: 38px !important;
}

.feature .section-header h2 span {
    color: var(--accent-orange) !important;
}

.feature__item {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    padding: 20px !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Shimmer Effect Texture for Feature Items */
.feature__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    border-radius: 10px;
    pointer-events: none;
    z-index: -1;
    transition: left 0.5s ease;
}

.feature__item:hover {
    border-color: var(--accent-orange) !important;
    background: rgba(0, 65, 65, 0.9) !important;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3) !important;
}

.feature__item:hover::before {
    left: 100%;
}

.feature__item:hover .feature__item-inner {
    background: transparent !important;
}

.nav-link.active .feature__item {
    background: rgba(255, 152, 0, 0.15) !important;
    border-left: 3px solid var(--accent-orange) !important;
}

.nav-link:hover .feature__item {
    background: rgba(15, 70, 70, 0.8) !important;
    border-color: var(--accent-orange) !important;
}

.feature__item-content h6 {
    color: var(--text-white) !important;
    font-size: 18px !important;
}

.feature__thumb img {
    border-radius: 15px !important;
   
}

/* Live Market Section */
.bg-dark {
    background: linear-gradient(135deg, rgba(0, 40, 40, 0.8) 0%, rgba(0, 52, 52, 0.8) 100%) !important;
    padding: 80px 10px !important;
    position: relative !important;
}

/* Animated Grid Pattern for Live Market Section */
.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 188, 212, 0.05) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 188, 212, 0.05) 2px, transparent 2px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.bg-dark .section-header h2 {
    color: var(--text-white) !important;
}

.bg-dark .section-header h2 span {
    color: var(--accent-orange) !important;
}

.bg-dark .section-header p {
    color: var(--text-gray) !important;
}

.tradingview-widget-container {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 15px !important;
    padding: 20px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Scan Line Effect for TradingView Widget */
.tradingview-widget-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.5), transparent);
    border-radius: 15px 15px 0 0;
    pointer-events: none;
    z-index: 2;
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

/* Power of Forex Section */
.about.padding-top--style2 {
    background: linear-gradient(135deg, rgba(26, 35, 56, 0.6) 0%, rgba(31, 42, 65, 0.6) 100%) !important;
    padding: 80px 20px !important;
    position: relative !important;
}

/* Diamond Pattern Texture for Power of Forex Section */
.about.padding-top--style2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 152, 0, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 152, 0, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 152, 0, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 152, 0, 0.02) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    pointer-events: none;
    z-index: 0;
}

.about.padding-top--style2 .section-header h2 {
    color: var(--text-white) !important;
    font-size: 38px !important;
}

.about.padding-top--style2 .section-header h2 span {
    color: var(--accent-orange) !important;
}

.about__content--style2 .about__content-inner {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    padding: 20px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Glow Effect Texture for About Content Inner */
.about__content--style2 .about__content-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 50%, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    border-radius: 10px;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about__content--style2 .about__content-inner:hover {
    border-color: var(--accent-orange) !important;
    background: rgba(0, 65, 65, 0.9) !important;
    transform: translateX(10px) !important;
}

/* Power of Forex Section */
.about.padding-top--style2 {
    background: linear-gradient(135deg, rgba(0, 50, 50, 0.6) 0%, rgba(0, 65, 65, 0.6) 100%) !important;
    padding: 80px 20px !important;
    position: relative !important;
}

/* Diamond Pattern Texture for Power of Forex Section */
.about.padding-top--style2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    pointer-events: none;
    z-index: 0;
}

.about__icon-inner {
    background: rgba(255, 152, 0, 0.15) !important;
    padding: 15px !important;
    border-radius: 10px !important;
}

.about__content-details p {
    color: var(--text-gray) !important;
}

.about__thumb--style2 img {
    border-radius: 15px !important;
   
}

/* Section Headers */
.section-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.section-header h2 {
    color: var(--text-white) !important;
    font-size: 42px !important;
    font-weight: 700 !important;
}

.section-header p {
    color: var(--text-gray) !important;
    font-size: 17px !important;
}

/* Background Color Overrides */
.bg-color,
.bg-color-3,
.bg-color-7,
.padding-bottom,
.padding-top {
    background: transparent !important;
}

/* Remove White Backgrounds */
.service__item-inner,
.feature__item-inner,
.accordion__item-inner,
.faq__wrapper,
.service__wrapper {
    background: transparent !important;
}


/* ========================================
   Force Remove All White/Light Backgrounds
   ======================================== */

/* Feature Nav Pills */
.nav--feature .nav-link {
    background: transparent !important;
}

.nav--feature .nav-link:hover {
    background: transparent !important;
}

.nav--feature .nav-link.active {
    background: transparent !important;
}

.nav--feature .nav-link:hover .feature__item-inner,
.nav--feature .nav-link.active .feature__item-inner,
.nav--feature .nav-link .feature__item-inner {
    background: transparent !important;
}

/* Tab Content */
.tab-content,
.tab-pane {
    background: transparent !important;
}

/* Feature Wrapper */
.feature__wrapper,
.feature__content,
.feature__content-inner,
.feature__nav {
    background: transparent !important;
}

/* All Inner Elements */
.feature__item-inner,
.service__item-inner,
.accordion__item-inner,
.counter__item-inner,
.about__content-inner {
    background: transparent !important;
}

/* Hover States - Force Dark Background */
.feature__item:hover,
.feature__item:hover *,
.nav-link:hover .feature__item,
.nav-link:hover .feature__item * {
    background-color: transparent !important;
}

/* Active States */
.nav-link.active .feature__item,
.nav-link.active .feature__item * {
    background-color: transparent !important;
}

/* Bootstrap Overrides */
.nav-pills .nav-link {
    background: transparent !important;
}

.nav-pills .nav-link:hover {
    background: transparent !important;
}

.nav-pills .nav-link.active {
    background: transparent !important;
}

/* Remove Any White Backgrounds */
* {
    background-color: transparent;
}

body,
.banner,
.section,
.about-section,
.features-section,
.service,
.feature,
.faq,
.footer {
    background-color: transparent;
}

/* Specific Elements That Should Have Background */
body {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-middle) 50%, var(--bg-gradient-end) 100%) !important;
    background-attachment: fixed !important;
}

.feature-card,
.service__item,
.accordion__item {
    background: var(--card-bg) !important;
}

.feature-card:hover,
.service__item:hover {
    background: rgba(15, 70, 70, 0.8) !important;
}

/* Feature Item Specific Fix */
.feature .feature__item {
    background: var(--card-bg) !important;
}

.feature .feature__item:hover {
    background: rgba(15, 70, 70, 0.8) !important;
}

.feature .nav-link:hover .feature__item {
    background: rgba(15, 70, 70, 0.8) !important;
}

.feature .nav-link.active .feature__item {
    background: rgba(255, 152, 0, 0.15) !important;
}


/* ========================================
   CRITICAL: Override All White Backgrounds
   ======================================== */

/* Override Bootstrap and Template Defaults */
.nav-link,
.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.nav-pills .nav-link,
.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
    background-color: transparent !important;
    background: transparent !important;
}

/* Feature Section - Nuclear Option */
.feature *,
.feature__wrapper *,
.feature__content *,
.feature__nav *,
.nav--feature * {
    background-color: transparent !important;
}

/* Only These Should Have Background */
.feature .feature__item {
    background: var(--card-bg) !important;
    background-color: rgba(15, 70, 70, 0.6) !important;
}

.feature .feature__item:hover {
    background: rgba(15, 70, 70, 0.8) !important;
    background-color: rgba(15, 70, 70, 0.8) !important;
}

.feature .nav-link.active .feature__item {
    background: rgba(255, 152, 0, 0.15) !important;
    background-color: rgba(255, 152, 0, 0.15) !important;
}

/* Service Items */
.service__item,
.service__item * {
    background-color: transparent !important;
}

.service__item {
    background: var(--card-bg) !important;
    background-color: rgba(15, 70, 70, 0.6) !important;
}

.service__item:hover {
    background: rgba(15, 70, 70, 0.8) !important;
    background-color: rgba(15, 70, 70, 0.8) !important;
}

/* Accordion Items */
.accordion__item,
.accordion__item * {
    background-color: transparent !important;
}

.accordion__item {
    background: var(--card-bg) !important;
    background-color: rgba(15, 70, 70, 0.6) !important;
}

.accordion__button:not(.collapsed) {
    background-color: rgba(255, 152, 0, 0.1) !important;
}

/* Counter Items */
.counter__item,
.counter__item * {
    background-color: transparent !important;
}

.counter__item {
    background: var(--card-bg) !important;
    background-color: rgba(15, 70, 70, 0.6) !important;
}

/* About Content */
.about__content--style2 .about__content-inner {
    background: var(--card-bg) !important;
    background-color: rgba(15, 70, 70, 0.6) !important;
}

.about__content--style2 .about__content-inner:hover {
    background: rgba(0, 65, 65, 0.9) !important;
    background-color: rgba(0, 65, 65, 0.9) !important;
}

/* Remove Template White Backgrounds */
.service__item--style3:hover .service__item-thumb {
    background-color: transparent !important;
}

/* Override Any Remaining White */
[style*="background: white"],
[style*="background: #fff"],
[style*="background-color: white"],
[style*="background-color: #fff"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* Ensure Dark Theme Variables */
:root {
    --bg-white: transparent !important;
}

[data-bs-theme="dark"] {
    --bg-white: transparent !important;
}


/* ========================================
   Copy Trading Section Styling
   ======================================== */

.copy-trading-section {
    overflow: hidden;
}

.copy-trading-image img {
    transition: transform 0.5s ease;
}

.copy-trading-image:hover img {
    transform: scale(1.05);
}

.copy-trading-content h6 {
    animation: fadeInUp 0.8s ease;
}

.copy-trading-content h2 {
    animation: fadeInUp 1s ease;
}

.copy-trading-content p {
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Forex Brockers Section Styling
   ======================================== */

.forex-brockers-section {
    overflow: hidden;
}

.brocker-logo-card {
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.brocker-logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4) !important;
    border-color: rgba(255, 152, 0, 0.5) !important;
}

.brocker-logo-card img {
    transition: all 0.3s ease;
}

.brocker-logo-card:hover img {
    transform: scale(1.1);
}

/* Responsive Design for Brockers */
@media (max-width: 768px) {
    .copy-trading-content h2 {
        font-size: 32px !important;
    }
    
    .copy-trading-content h6 {
        font-size: 16px !important;
    }
    
    .forex-brockers-section .section-header h2 {
        font-size: 32px !important;
    }
    
    .brocker-logo-card {
        padding: 20px !important;
        min-height: 80px !important;
    }
}

@media (max-width: 576px) {
    .copy-trading-content h2 {
        font-size: 28px !important;
    }
    
    .copy-trading-content p {
        font-size: 15px !important;
    }
    
    .forex-brockers-section .section-header h2 {
        font-size: 28px !important;
    }
    
    .forex-brockers-section .section-header p {
        font-size: 15px !important;
    }
}


/* ========================================
   What is Forex Trading Section Styling
   ======================================== */

.what-is-forex-section {
    overflow: hidden;
}

/* Laptop Mockup Hover Effect */
.forex-laptop-mockup .laptop-frame:hover {
    transform: rotateY(0deg) scale(1.05);
}

/* Pulse Animation for Glow */
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Dot Grid Animation */
@keyframes dotMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

/* Highlight Items Hover Effect */
.highlight-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(0, 188, 212, 0.1) !important;
}

.highlight-item .icon {
    transition: all 0.3s ease;
}

.highlight-item:hover .icon {
    transform: scale(1.2) rotate(360deg);
}

/* Forex Content Animation */
.forex-content h2 {
    animation: slideInRight 0.8s ease;
}

.forex-content p {
    animation: slideInRight 1s ease;
}

.forex-highlights {
    animation: slideInRight 1.2s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for What is Forex Section */
@media (max-width: 991px) {
    .forex-laptop-mockup {
        margin-bottom: 40px;
    }
    
    .forex-laptop-mockup .laptop-frame {
        transform: rotateY(0deg) !important;
    }
}

@media (max-width: 768px) {
    .what-is-forex-section {
        padding: 60px 20px !important;
    }
    
    .forex-content h2 {
        font-size: 32px !important;
    }
    
    .forex-content p {
        font-size: 15px !important;
    }
    
    .highlight-item {
        padding: 15px !important;
    }
    
    .highlight-item h6 {
        font-size: 14px !important;
    }
    
    .highlight-item p {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .forex-content h2 {
        font-size: 28px !important;
    }
    
    .laptop-frame {
        padding: 10px 10px 30px 10px !important;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-item .icon {
        margin: 0 auto 10px;
    }
}


/* ========================================
   Benefits Section Styling
   ======================================== */

.benefits-section {
    overflow: hidden;
}

.benefit__item {
    cursor: pointer;
}

/* Radial Gradient Texture for Benefit Items */
.benefit__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit__item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange) !important;
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4) !important;
    background: rgba(0, 65, 65, 0.9) !important;
}

.benefit__item:hover::before {
    opacity: 1;
}

.benefit__item-thumb {
    transition: all 0.4s ease;
}

.benefit__item:hover .benefit__item-thumb {
    transform: scale(1.15) rotate(360deg);
}

.benefit__item:hover .benefit__item-thumb i {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsive Design for Benefits */
@media (max-width: 768px) {
    .benefits-section .section-header h2 {
        font-size: 32px !important;
    }
    
    .benefit__item {
        padding: 30px !important;
    }
    
    .benefit__item-thumb {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 25px !important;
    }
    
    .benefit__item-thumb i {
        font-size: 32px !important;
    }
    
    .benefit__item-content h5 {
        font-size: 20px !important;
    }
    
    .benefit__item-content p {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {

    .row>* {

    padding-right: calc(var(--bs-gutter-x) * .3)!important;
    padding-left: calc(var(--bs-gutter-x) * .3)!important;

}

    .benefits-section {
        padding: 60px 10px !important;
    }
    
    .benefits-section .section-header h2 {
        font-size: 28px !important;
    }
    
    .benefit__item {
        padding: 25px !important;
    }
    
    .benefit__item-thumb {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }
    
    .benefit__item-thumb i {
        font-size: 28px !important;
    }
    
    .benefit__item-content h5 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
}
