:root {
    --primary-dark: #0b1426;
    --secondary-dark: #1a2a3a;
    --accent-color: #4a9eff;
    --accent-hover: #3d8bff;
    --text-primary: #e8f4fd;
    --text-secondary: #9bb5d1;
    --cyber-blue: #2c5aa0;
    --cyber-glow: #4a9eff;
    --night-blue: #0f1b2e;
    --deep-blue: #1e3a5f;
    --star-blue: #6bb6ff;
    --gradient-primary: linear-gradient(135deg, #0b1426 0%, #1a2a3a 30%, #0f1b2e 70%, #0b1426 100%);
    --gradient-accent: linear-gradient(135deg, #4a9eff 0%, #2c5aa0 50%, #1e3a5f 100%);
    --gradient-night: linear-gradient(135deg, #0b1426 0%, #1e3a5f 50%, #0f1b2e 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 90, 160, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(107, 182, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 10%, rgba(74, 158, 255, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 10% 60%, rgba(30, 58, 95, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--star-blue), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(107, 182, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--star-blue), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(107, 182, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--star-blue), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(107, 182, 255, 0.4), transparent),
        radial-gradient(1px 1px at 250px 20px, var(--star-blue), transparent),
        radial-gradient(2px 2px at 280px 70px, rgba(107, 182, 255, 0.7), transparent),
        radial-gradient(1px 1px at 320px 40px, var(--star-blue), transparent),
        radial-gradient(1px 1px at 360px 80px, rgba(107, 182, 255, 0.5), transparent);
    background-repeat: repeat;
    background-size: 400px 100px;
    opacity: 0.6;
    animation: twinkle 4s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.navbar {
    background-color: rgba(11, 20, 38, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(74, 158, 255, 0.15);
    box-shadow: 0 2px 10px rgba(11, 20, 38, 0.3);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 25px rgba(74, 158, 255, 0.2);
    background-color: rgba(11, 20, 38, 0.98) !important;
    border-bottom: 1px solid rgba(74, 158, 255, 0.25);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-item {
    color: var(--text-primary);
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 59, 0, 0.1);
    color: #f4c30d;
    transform: translateX(5px);
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* Ensure dropdown stays open when hovering over menu items */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* Close other dropdowns when hovering a different one */
.dropdown:not(:hover) .dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

/* Smooth transitions */
.dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

/* Add a small gap to prevent menu from closing when moving mouse */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
    color: #0C6FFD; /* Couleur orange pour la flèche */
}


/* Responsive dropdown adjustments */
@media (max-width: 991.98px) {
    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
    }
    
    .dropdown-item {
        color: var(--text-secondary);
        padding: 8px 15px;
    }
    
    .dropdown-item:hover {
        background-color: transparent;
        color: var(--accent-color);
        transform: none;
    }
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-accent::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;
}

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

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
}

.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9));
    z-index: -1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.15), transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(0, 102, 255, 0.1), transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--gradient-accent);
    bottom: -15px;
    left: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.dark-section {
    background: var(--gradient-night);
    padding: 100px 0;
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 158, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 90, 160, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(107, 182, 255, 0.03) 0%, transparent 60%);
    z-index: 0;
}

.gradient-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(74, 158, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(30, 58, 95, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(107, 182, 255, 0.04) 0%, transparent 40%);
    z-index: 0;
}

.feature-card {
    background: rgba(11, 20, 38, 0.85);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 158, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(11, 20, 38, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(74, 158, 255, 0.25);
    border-color: rgba(74, 158, 255, 0.4);
    background: rgba(11, 20, 38, 0.9);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--cyber-glow);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.roi-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 15px 0;
    overflow: hidden;
}

.roi-progress {
    height: 100%;
    background-color: #f4c30d;
    border-radius: 5px;
}

.testimonial-card {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 59, 0, 0.1);
    font-family: serif;
    line-height: 1;
}

.client-logo {
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-width: 150px;
    height: auto;
}

.client-logo:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Styles spécifiques pour les logos SVG */
.client-logo svg {
    transition: all 0.3s ease;
}

.client-logo:hover svg {
    filter: drop-shadow(0 0 10px rgba(255, 59, 0, 0.3));
}

.world-map {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-map img {
    max-height: 100%;
    width: auto;
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 59, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #f4c30d;
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 59, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 0, 0);
    }
}

.social-post {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.social-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--accent-color);
}

.footer {
    background-color: var(--primary-dark);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-fallback .card-overlay {
    background: rgba(10, 10, 10, 0.7);
    opacity: 1;
}

.video-fallback:hover .card-overlay {
    background: rgba(10, 10, 10, 0.8);
}

.interactive-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 400px;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
}

.interactive-card:hover .card-overlay {
    background: rgba(10, 10, 10, 0.9);
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 5px;
    left: 0;
    background-color: #f4c30d;
    z-index: -1;
    transition: all 0.3s ease;
}

.highlight-text:hover:after {
    height: 15px;
    background-color: #f4c30d;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 600px;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .dark-section, .gradient-section {
        padding: 60px 0;
    }
}

/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.animate-on-scroll-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-rotate.animate-in {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

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

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 1;
}

.text-reveal {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 1;
}

.text-reveal.animate-in::after {
    transform: translateX(100%);
}

.text-reveal span {
    position: relative;
    z-index: 2;
}

.progress-bar-animate {
    width: 0;
    transition: width 1.5s ease-out;
}

.progress-bar-animate.animate-in {
    width: var(--progress-width);
}

.the_gold{
    color: var(--cyber-glow);
}

/* Cyber Design Elements */
.cyber-shield {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.5), 0 0 80px rgba(107, 182, 255, 0.3);
    animation: cyber-pulse 3s infinite;
}

.cyber-shield::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(232, 244, 253, 0.4);
    border-radius: 50%;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    animation: cyber-rotate 4s linear infinite;
}

.cyber-shield i {
    font-size: 2rem;
    color: var(--text-primary);
    z-index: 1;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.8);
}

@keyframes cyber-pulse {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(74, 158, 255, 0.5), 0 0 80px rgba(107, 182, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(74, 158, 255, 0.7), 0 0 120px rgba(107, 182, 255, 0.5);
        transform: scale(1.05);
    }
}

@keyframes cyber-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(74, 158, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 158, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    z-index: 0;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cyber-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
}

.cyber-glow {
    box-shadow: 0 0 25px rgba(74, 158, 255, 0.4), 0 0 50px rgba(107, 182, 255, 0.2);
    transition: all 0.3s ease;
}

.cyber-glow:hover {
    box-shadow: 0 0 35px rgba(74, 158, 255, 0.6), 0 0 70px rgba(107, 182, 255, 0.3);
}

.cyber-border {
    border: 1px solid rgba(74, 158, 255, 0.25);
    border-radius: 12px;
    position: relative;
    background: rgba(11, 20, 38, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cyber-border::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-accent);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-border:hover {
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
}

.cyber-border:hover::before {
    opacity: 0.1;
}

/* Classes pour ajouter des images de fond personnalisées */
.hero-content {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Classe pour image personnalisée via style inline */
.hero-content[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Options pour différents types d'images */
.hero-content.bg-cover {
    background-size: cover;
}

.hero-content.bg-contain {
    background-size: contain;
}

.hero-content.bg-auto {
    background-size: auto;
}

.hero-content.bg-full {
    background-size: 100% 100%;
}

/* Exemples d'images de fond prédéfinies */
.hero-content.bg-circuit {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-circuit" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0,10 L20,10 M10,0 L10,20" stroke="%234a9eff" stroke-width="0.5" fill="none" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-circuit)"/></svg>'), var(--gradient-primary);
}

.hero-content.bg-hexagon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-hex" patternUnits="userSpaceOnUse" width="25" height="25"><polygon points="12.5,3 20,8 20,17 12.5,22 5,17 5,8" stroke="%234a9eff" stroke-width="0.3" fill="none" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-hex)"/></svg>'), var(--gradient-primary);
}

.hero-content.bg-dots {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-dots" patternUnits="userSpaceOnUse" width="15" height="15"><circle cx="7.5" cy="7.5" r="1.5" fill="%234a9eff" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-dots)"/></svg>'), var(--gradient-primary);
}

.hero-content.bg-grid {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" patternUnits="userSpaceOnUse" width="10" height="10"><path d="M0,0 L0,10 L10,10 L10,0 Z" stroke="%234a9eff" stroke-width="0.2" fill="none" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>'), var(--gradient-primary);
}


/* Partner Targets Section */
.partner-target-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partner-target-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-target-icon {
    text-align: center;
    margin-bottom: 20px;
}

.partner-target-icon i {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-target-content:hover .partner-target-icon i {
    opacity: 1;
    transform: scale(1.1);
}

.partner-target-content h3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.partner-target-content .lead {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-benefits h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-benefits ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.partner-benefits ul li i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.partner-target-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-target-image img {
    transition: all 0.3s ease;
}

.partner-target-image:hover img {
    transform: scale(1.05);
}

/* Partnership Modal Styles */
.modal-content {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
}

.modal-header .modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    padding: 20px 30px;
}

/* Modal Form Styles */
.modal .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal .form-control,
.modal .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.modal .form-control:focus,
.modal .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 0, 0.25);
    color: white;
}

.modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal .form-select option {
    background: var(--primary-dark);
    color: white;
}

.modal .form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.modal .form-check-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.modal .form-check-label a:hover {
    text-decoration: underline;
}

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

.modal .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.modal .form-check-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 0, 0.25);
}

/* Section Headers in Modal */
.modal h6.text-accent {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 59, 0, 0.3);
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
    
    .partner-target-content {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .partner-target-content h3 {
        font-size: 1.5rem;
    }
}

/* Contact Form Fixes */
.contact-input {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.contact-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(74, 158, 255, 0.25) !important;
    color: white !important;
    outline: none !important;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Ensure form inputs are clickable */
#contactForm input,
#contactForm textarea {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    cursor: text !important;
}

/* Ensure no overlay blocks the form */
#contact-form .feature-card {
    position: relative;
    z-index: 1;
}

#contact-form .feature-card::before {
    pointer-events: none !important;
}

#contact-form .feature-card::after {
    pointer-events: none !important;
}
