/* ===================================
   ONAPERS REAL HOMES CSS Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Neon/Tech Colors */
    --primary-color: #FF8904;
    --secondary-color: #fbbf24;
    --accent-color: #ff00ff;
    --accent-orange: #ff6b35;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-yellow: #fbbf24;
    
    /* Backgrounds */
    --dark-bg: #1a1f35;
    --darker-bg: #141824;
    --white-bg: #ffffff;
    --off-white-bg: #f8fafc;
    --light-gray-bg: #e2e8f0;
    
    /* Cards */
    --card-bg: rgba(255, 255, 255, 0.15);
    --card-white: rgba(255, 255, 255, 0.98);
    --card-glass: rgba(255, 255, 255, 0.1);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #e8edf5;
    --text-muted: #a8b3c7;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-accent: linear-gradient(135deg, #ff00ff 0%, #00d4ff 100%);
    --gradient-warm: linear-gradient(135deg, #ff6b35 0%, #ec4899 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #00d4ff 100%);
    --gradient-sunset: linear-gradient(135deg, #fbbf24 0%, #ff6b35 100%);
    
    /* Effects */
    --glow-primary: 0 0 20px rgba(0, 255, 136, 0.5);
    --glow-secondary: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.5);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
    
    /* Fonts */
    --font-primary: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--off-white-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   SECTION BACKGROUNDS
   =================================== */

/* Dark sections remain animated */
.bg-dark {
    background: linear-gradient(180deg, #1a2332 0%, #0f1729 100%);
    position: relative;
    overflow: hidden;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.02)" x="0" y="0" width="1" height="1"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

/* White sections for contrast */
.bg-white {
    background: var(--white-bg);
    color: var(--text-dark);
}

.bg-white .section-title {
    color: var(--text-dark);
}

.bg-white .section-subtitle,
.bg-white p {
    color: var(--text-gray);
}

.bg-white .domain-card,
.bg-white .stat-item,
.bg-white .capability-card {
    background: var(--card-white);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.bg-white .domain-card:hover,
.bg-white .stat-item:hover,
.bg-white .capability-card:hover {
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
    border-color: var(--secondary-color);
}

/* Off-white sections */
.bg-off-white {
    background: var(--off-white-bg);
    color: var(--text-dark);
}

.bg-off-white .section-title {
    color: var(--text-dark);
}

.bg-off-white .section-subtitle,
.bg-off-white p {
    color: var(--text-gray);
}

/* Light gray sections */
.bg-light {
    background: var(--light-gray-bg);
    color: var(--text-dark);
}

.bg-light .section-title {
    color: var(--text-dark);
}

/* Animated gradient background - changes every 10 seconds */
.bg-animated {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.bg-animated::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 255, 136, 0.1) 40%,
        rgba(0, 212, 255, 0.1) 50%,
        rgba(255, 0, 255, 0.1) 60%,
        transparent 70%
    );
    animation: gradientShift 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        transform: rotate(0deg) scale(1);
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(0, 255, 136, 0.15) 40%,
            rgba(0, 212, 255, 0.15) 50%,
            rgba(255, 0, 255, 0.15) 60%,
            transparent 70%
        );
    }
    33% {
        transform: rotate(120deg) scale(1.1);
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 107, 53, 0.15) 40%,
            rgba(236, 72, 153, 0.15) 50%,
            rgba(168, 85, 247, 0.15) 60%,
            transparent 70%
        );
    }
    66% {
        transform: rotate(240deg) scale(1.05);
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(251, 191, 36, 0.15) 40%,
            rgba(255, 107, 53, 0.15) 50%,
            rgba(0, 212, 255, 0.15) 60%,
            transparent 70%
        );
    }
    100% {
        transform: rotate(360deg) scale(1);
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(0, 255, 136, 0.15) 40%,
            rgba(0, 212, 255, 0.15) 50%,
            rgba(255, 0, 255, 0.15) 60%,
            transparent 70%
        );
    }
}

/* Floating particles animation */
.bg-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 212, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 0, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 100px 100px;
    background-position: 0 0, 40px 60px, 80px 20px;
    animation: particleFloat 30s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-50px) translateX(50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FF8904;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(25, 34, 56, 0.98);
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-nav-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-nav-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.nav-logo a {
    display: block;
    line-height: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 25, 50, 0.95);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 15px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding-left: 35px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-nav {
    padding: 10px 25px;
    font-size: 14px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 35px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--dark-bg);
    box-shadow: var(--glow-primary);
}

.btn:hover::before {
    left: 0;
}

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

.btn-primary::before {
    background: var(--primary-color);
}

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

.btn-secondary::before {
    background: var(--secondary-color);
}

.btn-large {
    padding: 15px 45px;
    font-size: 16px;
}

/* ===================================
   HERO SECTION
   =================================== */



.hero-section {
    height: 75vh; /* Perfect balance */
    min-height: 500px; /* Prevent too small on laptops */
}


.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}


/* Slides */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transition: opacity 1.5s ease, visibility 1.5s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Media (Zoom Effect) */
.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1);
    transition: transform 8s ease, filter 1.5s ease;
}

/* Active zoom (Ken Burns) */
.hero-slide.active .hero-media {
    transform: scale(1.1);
}

/* Blur outgoing slide */
.hero-slide:not(.active) .hero-media {
    filter: blur(8px);
}



/* Slide Text (Parallax Feel) */
.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 4;
    color: #fff;

    transform: translateY(40px);
    opacity: 0;
    transition: all 1s ease;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 700;
}

.slide-content p {
    font-size: 20px;
    opacity: 0.85;
}

/* CTA stays centered */

.hero-content {
    top: 55%;
    transform: translateY(-50%);
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    z-index: 5;
}

/* Arrows */
.hero-arrows span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 6;
    padding: 10px;
    opacity: 0.7;
    transition: 0.3s;
}

.hero-arrows span:hover {
    opacity: 1;
}

#prev { left: 20px; }
#next { right: 20px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 6;
}

.hero-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.hero-dots span.active {
    opacity: 1;
    transform: scale(1.3);
}









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

/* Full Screen Video */
.hero-video-fullscreen {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-gif-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    display: none;
}

/* Show GIF if video fails to load */
.hero-video-fullscreen:not([src]) + .hero-gif-fallback,
.hero-video-fullscreen[src=""] + .hero-gif-fallback {
    display: block;
}

/* Mobile video fix - scale down to fit */
@media (max-width: 768px) {
    .hero-video-fullscreen,
    .hero-gif-fallback {
        /* Scale to 150% on mobile to show more of the video */
        min-width: 150%;
        min-height: 150%;
        width: 150%;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }
    
   
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .hero-video-fullscreen,
    .hero-gif-fallback {
        min-width: 200%;
        width: 200%;
        object-fit: contain;
    }
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%),
                linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Radar Animation */
.radar-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.radar-scanner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: radar-pulse 3s infinite;
}

.radar-scanner::before,
.radar-scanner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
}

.radar-scanner::before {
    width: 300px;
    height: 300px;
}

.radar-scanner::after {
    width: 200px;
    height: 200px;
}

@keyframes radar-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.radar-ping {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    transform-origin: bottom center;
    transform: translate(-50%, -100%) rotate(0deg);
    animation: radar-sweep 4s linear infinite;
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes radar-sweep {
    0% { transform: translate(-50%, -100%) rotate(0deg); }
    100% { transform: translate(-50%, -100%) rotate(360deg); }
}

/* Threat Indicators */
.threat {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff0044;
    border-radius: 50%;
    box-shadow: 0 0 15px #ff0044;
    animation: threat-blink 1s infinite, threat-approach 5s ease-in-out infinite;
}

.threat-1 { top: 20%; left: 30%; animation-delay: 0s; }
.threat-2 { top: 60%; left: 70%; animation-delay: 1s; }
.threat-3 { top: 40%; left: 15%; animation-delay: 2s; }
.threat-4 { top: 70%; left: 50%; animation-delay: 3s; }

@keyframes threat-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes threat-approach {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.5) translate(20px, 20px); }
    70% { opacity: 1; }
    90% { opacity: 0; transform: scale(0.5) translate(50px, 50px); }
}

/* HUD Elements */
.hud-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hud-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);
}

.hud-tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.hud-tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.hud-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.hud-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}


.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content h1 {
    /* Styles now in .hero-main-title */
}

/* Removed old .glitch-text animation */

/* Removed old .hero-subtitle .fade-in-up styles - now in new .hero-subtitle */

/* Removed old .hero-cta .fade-in-up styles - now in new .hero-cta */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    80% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* ===================================
   SECTIONS
   =================================== */

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 2px;
    color: var(--text-dark);
}

/* Light title for dark backgrounds */
.bg-dark .section-title,
.bg-animated .section-title {
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
}

/* ===================================
   CORE DOMAINS
   =================================== */

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.domain-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Dark background variant */
.bg-dark .domain-card,
.bg-animated .domain-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: none;
}

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

.domain-card:hover::before {
    left: 100%;
}

.domain-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.bg-dark .domain-card:hover,
.bg-animated .domain-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.domain-icon {
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: rotate-border 8s linear infinite;
}

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

.domain-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bg-dark .domain-card h3,
.bg-animated .domain-card h3 {
    color: var(--primary-color);
}

.domain-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.bg-dark .domain-card p,
.bg-animated .domain-card p {
    color: var(--text-secondary);
}

.domain-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.domain-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* ===================================
   WHY INFITECH
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    position: relative;
    padding-left: 80px;
}

.feature-number {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    opacity: 0.3;
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--secondary-color);
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--secondary-color);
    display: inline-block;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* ===================================
   INDUSTRIES
   =================================== */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.5);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.industry-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.industry-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #0f1729 100%);
    position: relative;
    color: var(--text-primary);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(0,255,136,0.03)" cx="50" cy="50" r="2"/></svg>') repeat;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    background: linear-gradient(135deg, #1a2332 0%, #0f1729 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.02)" x="0" y="0" width="1" height="1"/></svg>') repeat;
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}

/* ===================================
   CONTACT FORM STYLES
   =================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    background: #ffffff;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact info section */
.contact-info-section {
    /* Removed dark background - using original transparent design */
}

.contact-info-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-section p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-details p,
.contact-details a {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.contact-details a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    margin-bottom: 25px;
}

.logo-footer-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.logo-footer-img:hover {
    filter: brightness(1.5) drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
}

.contact-label {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ===================================
   BACK TO TOP
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 40px 0;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .hero-main-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    

/* Overlay (Luxury Gradient) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.3)
    );
}

    
    
    
    .logo-box {
        font-size: 32px;
        padding: 15px 25px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .domains-grid,
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .radar-container {
        width: 300px;
        height: 300px;
    }
    
    .radar-scanner {
        width: 250px;
        height: 250px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

.main-content {
    animation: fadeIn 0.5s ease-in;
}

/* ===================================
   WHITE/LIGHT BACKGROUND OVERRIDES
   =================================== */

/* Default sections (white background) text colors */
section:not(.bg-dark):not(.bg-animated):not(.hero-section) {
    color: var(--text-dark);
}

section:not(.bg-dark):not(.bg-animated):not(.hero-section) h1,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h2,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h3,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h4 {
    color: var(--text-dark);
}

section:not(.bg-dark):not(.bg-animated):not(.hero-section) p,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) li {
    color: var(--text-gray);
}

/* Dark sections keep light text */
.bg-dark,
.bg-animated {
    color: var(--text-primary);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-animated h1,
.bg-animated h2,
.bg-animated h3,
.bg-animated h4 {
    color: var(--text-primary);
}

.bg-dark p,
.bg-dark li,
.bg-animated p,
.bg-animated li {
    color: var(--text-secondary);
}

/* Cards on white backgrounds */
.bg-white .domain-card,
.bg-white .stat-item,
.bg-white .capability-card,
.bg-white .why-item,
.bg-white .industry-card,
.bg-off-white .domain-card,
.bg-off-white .stat-item,
.bg-off-white .capability-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bg-white .domain-card:hover,
.bg-white .stat-item:hover,
.bg-white .capability-card:hover,
.bg-off-white .domain-card:hover,
.bg-off-white .stat-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

/* Text on white backgrounds */
.bg-white .stat-number,
.bg-off-white .stat-number {
    color: var(--secondary-color);
}

.bg-white .stat-label,
.bg-off-white .stat-label {
    color: var(--text-gray);
}

.bg-white h3,
.bg-off-white h3 {
    color: var(--text-dark);
}

.bg-white p,
.bg-off-white p {
    color: var(--text-gray);
}

/* Domain cards on white */
.bg-white .domain-icon .icon-circle,
.bg-off-white .domain-icon .icon-circle {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--primary-color);
}

.bg-white .domain-link,
.bg-off-white .domain-link {
    color: var(--secondary-color);
}

.bg-white .domain-link:hover,
.bg-off-white .domain-link:hover {
    color: var(--primary-color);
}

/* Why items */
.why-item h3 {
    color: var(--text-dark);
}

.bg-dark .why-item h3,
.bg-animated .why-item h3 {
    color: var(--primary-color);
}

.why-item p {
    color: var(--text-gray);
}

.bg-dark .why-item p,
.bg-animated .why-item p {
    color: var(--text-secondary);
}

/* Industry cards */
.industry-card h3 {
    color: var(--text-dark);
}

.bg-dark .industry-card h3,
.bg-animated .industry-card h3 {
    color: var(--primary-color);
}

.industry-card p {
    color: var(--text-gray);
}

.bg-dark .industry-card p,
.bg-animated .industry-card p {
    color: var(--text-secondary);
}

/* Feature lists */
.feature-list li {
    color: var(--text-gray);
}

.bg-dark .feature-list li,
.bg-animated .feature-list li {
    color: var(--text-secondary);
}

/* Solution detail sections */
.solution-intro h2,
.solution-detail h2,
.solution-detail h3 {
    color: var(--text-dark);
}

.bg-dark .solution-intro h2,
.bg-dark .solution-detail h2,
.bg-dark .solution-detail h3,
.bg-animated .solution-intro h2,
.bg-animated .solution-detail h2,
.bg-animated .solution-detail h3 {
    color: var(--primary-color);
}

.solution-intro p,
.solution-detail p {
    color: var(--text-gray);
}

.bg-dark .solution-intro p,
.bg-dark .solution-detail p,
.bg-animated .solution-intro p,
.bg-animated .solution-detail p {
    color: var(--text-secondary);
}

/* ===================================
   COMPREHENSIVE TEXT VISIBILITY FIXES
   =================================== */

/* Ensure ALL paragraphs are visible on white background */
section:not(.bg-dark):not(.bg-animated):not(.hero-section) p {
    color: var(--text-gray) !important;
}

/* Ensure ALL headings are visible on white background */
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h1,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h2,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h3,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h4,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) h5 {
    color: var(--text-dark) !important;
}

/* Ensure ALL list items are visible */
section:not(.bg-dark):not(.bg-animated):not(.hero-section) li {
    color: var(--text-gray) !important;
}

/* Ensure ALL spans and divs inherit proper color */
section:not(.bg-dark):not(.bg-animated):not(.hero-section) span,
section:not(.bg-dark):not(.bg-animated):not(.hero-section) div:not(.domain-icon):not(.stat-number) {
    color: inherit;
}

/* Stat numbers should be colored */
.stat-number {
    color: var(--secondary-color) !important;
}

/* Stat labels should be visible */
.stat-label {
    color: var(--text-gray) !important;
}

.bg-dark .stat-label,
.bg-animated .stat-label {
    color: var(--text-secondary) !important;
}

/* Strong and bold text */
section:not(.bg-dark):not(.bg-animated) strong,
section:not(.bg-dark):not(.bg-animated) b {
    color: var(--text-dark);
}

/* Links visibility */
section:not(.bg-dark):not(.bg-animated) a:not(.btn) {
    color: var(--secondary-color);
}

section:not(.bg-dark):not(.bg-animated) a:not(.btn):hover {
    color: var(--primary-color);
}

/* Breadcrumb visibility */
.breadcrumb {
    color: var(--text-gray) !important;
}

.breadcrumb a {
    color: var(--secondary-color) !important;
}

.bg-dark .breadcrumb,
.bg-animated .breadcrumb {
    color: var(--text-secondary) !important;
}

.bg-dark .breadcrumb a,
.bg-animated .breadcrumb a {
    color: var(--primary-color) !important;
}

/
.bg-dark .solution-header .header-subtitle,
.bg-animated .solution-header .header-subtitle {
    color: var(--text-secondary) !important;
}

/* Footer should stay dark with light text */
.footer {
    background: var(--darker-bg) !important;
    color: var(--text-primary) !important;
}

.footer h4,
.footer p,
.footer a,
.footer li {
    color: var(--text-secondary) !important;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

/* Capability cards text */
.capability-card h3 {
    color: var(--text-dark);
}

.bg-dark .capability-card h3,
.bg-animated .capability-card h3 {
    color: var(--primary-color);
}

.capability-card p {
    color: var(--text-gray);
}

.bg-dark .capability-card p,
.bg-animated .capability-card p {
    color: var(--text-secondary);
}

/* Use case text */
.use-case-detail h3 {
    color: var(--text-dark);
}

.bg-dark .use-case-detail h3,
.bg-animated .use-case-detail h3 {
    color: var(--primary-color);
}

.use-case-detail p {
    color: var(--text-gray);
}

.bg-dark .use-case-detail p,
.bg-animated .use-case-detail p {
    color: var(--text-secondary);
}

/* Feature badges */
.feature-badge {
    color: var(--text-dark);
}

.bg-dark .feature-badge,
.bg-animated .feature-badge {
    color: var(--text-primary);
}










/* PREMIUM GALLERY */

.premium-gallery{
background:#f7f7f7;
text-align:center;
}

/* FILTER BUTTONS */

.gallery-filter{
margin-bottom:40px;
}

.filter-btn{
border:none;
background:#eee;
padding:10px 22px;
margin:5px;
border-radius:30px;
cursor:pointer;
font-weight:500;
transition:0.3s;
}

.filter-btn.active,
.filter-btn:hover{
background:#000;
color:#fff;
}

/* MASONRY GRID */

.gallery-grid{
column-count:3;
column-gap:20px;
}

.gallery-card{
break-inside:avoid;
margin-bottom:20px;
position:relative;
transform-style:preserve-3d;
transition:transform .4s ease;
cursor:pointer;
}

.gallery-card img{
width:100%;
border-radius:12px;
transition:all .4s ease;
}

/* 3D FLOAT EFFECT */

.gallery-card:hover{
transform:translateY(-10px) rotateX(6deg) rotateY(-6deg);
}

.gallery-card:hover img{
box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

/* RESPONSIVE */

@media(max-width:900px){
.gallery-grid{
column-count:2;
}
}

@media(max-width:600px){
.gallery-grid{
column-count:1;
}
}

.btn-nav {
    display: inline-flex;
    align-items: center; /* vertically center text + icon */
    gap: 6px; /* space between text and icon */
    color: #0d6efd; /* default text color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-nav:hover {
    color: #0d6efd; /* text stays the same */
}

.external-icon svg {
    width: 0.8em;        /* slightly smaller than text */
    height: 0.8em;
    stroke: currentColor; /* inherit text color by default */
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease, transform 0.2s ease;
}

.btn-nav:hover .external-icon svg {
    stroke: #0dcaf0; /* icon changes color on hover */
    transform: translateX(2px); /* subtle slide for extra polish */
}

.property-search-glass {
    bottom: -30px; /* was -40px */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

    width: 80%;
    max-width: 1000px;

    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 20px;
    padding: 20px;
}

.search-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-form input,
.search-form select {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.search-form button {
    background: var(--primary-color);
    color: #000;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-section {
        height: 65vh;
    }
}

.unmute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;

    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
}