@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;700&display=swap');

:root {
    --iot-bg-dark: #05070A;
    --iot-bg-section: #0B0E14;
    --iot-primary-cyan: #00D2FF;
    --iot-primary-blue: #0055FF;
    --iot-text-main: #E2E8F0;
    --iot-text-muted: #94A3B8;
    --iot-glow-cyan: 0 0 20px rgba(0, 210, 255, 0.4);
    --iot-gradient-accent: linear-gradient(135deg, var(--iot-primary-blue), var(--iot-primary-cyan));
    --iot-border-glass: rgba(0, 210, 255, 0.15);
    --iot-card-bg: rgba(11, 14, 20, 0.6);
    --iot-cyan: #00f2ff;
    --iot-blue: #0072ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #cccccc4c !important;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #cccccc4c !important;
}

.iot-theme-bg {
    background-color: var(--iot-bg-dark);
    color: var(--iot-text-main);
    padding-top: 76px;
}

.iot-navbar {
    background-color: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--iot-border-glass);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.iot-nav-link {
    color: var(--iot-text-main) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.iot-nav-link:hover {
    color: var(--iot-primary-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.iot-nav-link.active {
    color: var(--iot-primary-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    font-weight: 600;
}

.iot-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--iot-gradient-accent);
    box-shadow: var(--iot-glow-cyan);
}

.custom-toggler {
    border-color: var(--iot-primary-cyan) !important;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 210, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.iot-title-font {
    font-family: 'Rajdhani', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.iot-large-font {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.iot-medium-font {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.iot-title-shadow {
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.iot-color-blue {
    background: var(--iot-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 15px rgba(0, 210, 255, 0.15);
    display: inline-block;
}


.iot-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

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

.iot-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iot-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.iot-header-content-area {
    z-index: 3;
}

.iot-header-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--iot-text-main);
    font-weight: 300;
    max-width: 750px;
    line-height: 1.8;
}

.iot-text-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--iot-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.iot-text-muted {
    color: var(--iot-text-muted);
}

.iot-text-link {
    color: var(--iot-primary-cyan);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 210, 255, 0.5);
    transition: all 0.3s ease;
}

.iot-text-link:hover {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
}

.iot-beta-badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--iot-primary-cyan);
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid var(--iot-primary-cyan);
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(0, 210, 255, 0.1); }
    100% { box-shadow: 0 0 25px rgba(0, 210, 255, 0.4); }
}

.iot-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    background-color: var(--iot-bg-dark);
    overflow: hidden;
}

.iot-hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.iot-hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 85, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 210, 255, 0.1) 0%, transparent 50%),
        linear-gradient(rgba(0, 210, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.iot-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.iot-service-bg {
    background-color: var(--iot-bg-section);
    border-top: 1px solid var(--iot-border-glass);
    border-bottom: 1px solid var(--iot-border-glass);
}

.iot-btn {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.iot-btn-main {
    background: var(--iot-gradient-accent);
    color: #FFFFFF !important;
    border: none;
    box-shadow: var(--iot-glow-cyan);
}

.iot-btn-main:hover {
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.iot-btn-transparent {
    background: rgba(0, 210, 255, 0.03);
    color: var(--iot-primary-cyan) !important;
    border: 1px solid var(--iot-primary-cyan);
    box-shadow: inset 0 0 10px rgba(0, 210, 255, 0.1);
    backdrop-filter: blur(5px);
}

.iot-btn-transparent:hover {
    background: rgba(0, 210, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 210, 255, 0.25), var(--iot-glow-cyan);
    transform: translateY(-2px);
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}

.iot-image-container {
    position: relative;
    border-radius: 8px;
    padding: 1px;
    background: var(--iot-gradient-accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    z-index: 2;
}

.iot-rounded-tech {
    border-radius: 7px;
    background: var(--iot-bg-dark);
    display: block;
    width: 100%;
}

.iot-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 210, 255, 0.2);
    filter: blur(60px);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.iot-feature-card {
    background-color: var(--iot-card-bg);
    border: 1px solid var(--iot-border-glass);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.iot-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--iot-primary-cyan);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.iot-feature-icon {
    font-size: 2.5rem;
    color: var(--iot-primary-cyan);
    margin-bottom: 20px;
    background: var(--iot-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.iot-beta-section {
    background-color: var(--iot-bg-dark);
    border-top: 1px solid var(--iot-border-glass);
    overflow: hidden;
}

.iot-beta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.iot-beta-perk {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.iot-beta-perk:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.3);
}

.iot-footer {
    background-color: var(--iot-bg-section);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--iot-border-glass);
}

.iot-footer-link {
    color: var(--iot-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.iot-footer-link:hover {
    color: var(--iot-primary-cyan);
}

.iot-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--iot-text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.iot-social-icon:hover {
    background-color: var(--iot-primary-blue);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--iot-glow-cyan);
}

.iot-input-dark {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
}

.iot-input-dark:focus {
    box-shadow: none !important;
    border-color: var(--iot-primary-cyan) !important;
}

.iot-input-dark::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.text-muted{
    color: #ccc !important;
}

.hide {
    display: none;
}

.form_error_action {
    background: #ffb9b9 !important;
}

.form_success_action {
    background: #39df0f !important;
}

.success {
    color: #fff;
    background-color: #22BB33;
    border-color: #3c763d;
    padding: 5px;
}

.error {
    color: #fff;
    background-color: #ff0000;
    border-color: #830505;
    padding: 5px;
}

.iot-theme-bg {
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top right, #0a192f, #020617);
    min-height: 100vh;
    color: #e2e8f0;
}

.iot-main-filler {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.iot-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-control, .form-select {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 15px;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--iot-cyan);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.iot-btn-main {
    background: linear-gradient(45deg, var(--iot-blue), var(--iot-cyan));
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.iot-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
    color: white;
}

.iot-badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--iot-cyan);
    border: 1px solid var(--iot-cyan);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer a:link, .footer a:active, .footer a:visited {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #00f2ff;
    text-decoration: none;
}

#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: #0f172a; /* Dark background matching IoT theme */
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-consent-banner.cookie-banner-hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

#cookie-consent-banner .cookie-content p {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    #cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
    }
}
