/*
Theme Name: Infoshkar Technologies - Futuristic IT Solutions
Author: Antigravity
Description: Professional Cyber-Tech Website for Infoshkar Technologies
*/

:root {
    --primary-color: #00A3FF; /* Electric Neon Blue */
    --secondary-color: #000B18; /* Deep Midnight Blue */
    --accent-color: #708090; /* Slate Gray */
    --heading-color: #FFFFFF;
    --text-color: #B0B5BD;
    --white-color: #FFFFFF;
    --light-bg: rgba(255, 255, 255, 0.05);
    --section-bg: #000B18;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 10px 30px rgba(0, 163, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 163, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Global Styles */
body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-inner {
    display: flex;
}

.dot {
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    box-shadow: var(--neon-glow);
    border-radius: 50%;
    margin: 0 5px;
    animation: bounce 0.6s infinite alternate;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    to { transform: translateY(-15px); }
}

/* Header Area */
.top-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 0;
    font-size: 14px;
}

.top-header-left ul {
    display: flex;
}

.top-header-left ul li {
    margin-right: 25px;
}

.top-header-left ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.top-header-right .social-links {
    text-align: right;
}

.top-header-right .social-links a {
    color: var(--white-color);
    margin-left: 15px;
}

.top-header-right .social-links a:hover {
    color: var(--primary-color);
}

.navbar {
    padding: 20px 0;
    background-color: #000000;
    transition: var(--transition);
}

.navbar-brand img {
    max-width: 150px;
}

.nav-link {
    font-weight: 600;
    color: var(--heading-color) !important;
    margin-left: 20px;
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 20px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: rgba(0, 11, 24, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 15px 0;
    margin-top: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

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

/* Bridge gap for hover */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-item {
    color: var(--white-color);
    font-weight: 500;
    padding: 10px 25px;
    font-size: 15px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(0, 163, 255, 0.1);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-toggle::after {
    display: none;
}

.btn-theme {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    box-shadow: var(--neon-glow);
}

.btn-theme:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-area {
    padding: 40px 0 250px;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    color: var(--white-color);
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/shape/circuit_pattern.png');
    background-size: cover;
    opacity: 0.15;
}

.hero-content h5 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 70px;
    margin-bottom: 30px;
    color: var(--white-color);
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 45px;
    color: #b0b5bd;
}

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

.hero-img img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

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

/* Features/Service Cards Overlap */
.features-area {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.feature-item {
    padding: 45px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 30px;
    transition: var(--transition);
    text-align: left;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-15px);
    background: rgba(0, 163, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.feature-item:hover h4, .feature-item:hover p, .feature-item:hover .read-more {
    color: var(--white-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--section-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

.feature-item h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

/* About Area */
.about-area {
    padding: 120px 0;
}

.about-img-wrap {
    position: relative;
}

.about-img-1 {
    width: 80%;
    border-radius: 15px;
}

.exp-badge {
    position: absolute;
    bottom: -30px;
    right: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

.exp-badge h2 {
    font-size: 45px;
    margin: 0;
    color: var(--white-color);
}

.exp-badge span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title span {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 45px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-list li {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--heading-color);
}

.about-list li i {
    width: 25px;
    height: 25px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 15px;
}

/* Working Process */
.process-area {
    padding: 120px 0;
    background: var(--section-bg);
}

.process-item {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 35px;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    position: relative;
}

.process-num {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Counter Area */
.counter-area {
    padding: 100px 0;
    background: var(--secondary-color);
    color: var(--white-color);
}

.counter-item {
    text-align: center;
}

.counter-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.counter-item h2 {
    font-size: 50px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.counter-item p {
    color: #b0b5bd;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

/* Footer Area */
.footer-area {
    background-color: var(--secondary-color);
    padding: 120px 0 0;
    color: var(--white-color);
}

.footer-top {
    padding-bottom: 80px;
}

.footer-widget p {
    color: #b0b5bd;
    margin-top: 30px;
}

.widget-title {
    color: var(--white-color);
    margin-bottom: 35px;
    font-size: 24px;
}

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

.footer-links li a {
    color: #b0b5bd;
}

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

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

/* Sticky Header Refinement */
.navbar.nav-sticky {
    padding: 10px 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-area { padding-bottom: 180px; }
    .marquee-section { bottom: 50px; }
    .hero-content h1 { font-size: 50px; }
    .features-area { margin-top: 0; padding-top: 60px; }
    .exp-badge { position: relative; bottom: 0; right: 0; margin-top: 40px; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 40px; }
    .section-title h2 { font-size: 32px; }
}
/* Testimonial Section */
.testimonial-area {
    background-color: var(--secondary-color);
    position: relative;
    padding: 120px 0;
}

.testimonial-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 20px;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.quote-icon i {
    color: var(--primary-color) !important;
}

.testimonial-item p {
    color: var(--white-color);
    font-style: italic;
    line-height: 1.8;
}

.client-info h5 {
    color: var(--white-color);
    font-size: 20px;
    margin-top: 20px;
}

.client-info span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color) !important;
    opacity: 0.3;
    margin: 0 6px !important;
    transition: var(--transition);
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    opacity: 1 !important;
    box-shadow: var(--neon-glow);
}

/* Core Values Section */
.core-values-area {
    padding: 120px 0;
    background: var(--secondary-color);
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 163, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--neon-glow);
}

/* Journey Section */
.journey-area {
    padding: 120px 0;
    background: #000000;
}

.journey-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.journey-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: var(--neon-glow);
    z-index: 1;
}

.journey-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 25px;
    width: 2px;
    height: calc(100% + 15px);
    background: var(--glass-border);
}

.journey-item:last-child::after {
    display: none;
}

.journey-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.journey-content p {
    margin-bottom: 0;
}

/* ==========================================
   PREMIUM CYBER EFFECTS & INTERACTIVE STYLES
   ========================================== */

/* 1. Custom Glowing Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    box-shadow: var(--neon-glow);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}
.cursor-follower {
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.2);
    transition: transform 0.12s ease-out, background-color 0.3s ease, border-color 0.3s ease, width 0.2s ease, height 0.2s ease;
}

@media (max-width: 991px) {
    .custom-cursor, .cursor-follower {
        display: none !important;
    }
}

/* 2. Glassmorphic Drift Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.2;
    animation: drift 15s infinite alternate ease-in-out;
}
.hero-orb-1 {
    top: 10%;
    left: 5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    animation-duration: 20s;
}
.hero-orb-2 {
    bottom: 10%;
    right: 5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #9D00FF 0%, transparent 70%);
    animation-duration: 25s;
    animation-delay: -5s;
}
.hero-orb-3 {
    top: 35%;
    left: 45%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #00FFCC 0%, transparent 70%);
    animation-duration: 18s;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(-35px) scale(1.08) rotate(180deg); }
    100% { transform: translateY(15px) scale(0.92) rotate(360deg); }
}

/* 3. Infinite Scrolling Marquee */
.marquee-section {
    background: rgba(0, 5, 14, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 163, 255, 0.12);
    border-bottom: 1px solid rgba(0, 163, 255, 0.12);
    padding: 22px 0;
    overflow: hidden;
    position: absolute;
    bottom: 110px;
    left: 0;
    width: 100%;
    z-index: 15;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-right: 50px;
}
.marquee-content span {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
    transition: var(--transition);
}
.marquee-content span:hover {
    -webkit-text-stroke: 1px var(--primary-color);
    text-shadow: var(--neon-glow);
    color: rgba(0, 163, 255, 0.05);
}
.marquee-content .dot {
    color: var(--primary-color);
    font-size: 20px;
    text-shadow: var(--neon-glow);
    animation: pulse-glow 1.8s infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* 4. Gradient Text and Interactive Elements */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a55eff 50%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.glow-hover {
    transition: var(--transition);
}
.glow-hover:hover {
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

/* ========================================================
   RESTRUCTURED SERVICES & PROJECTS & PREMIUM FORMS STYLES
   ======================================================== */

/* 5. Glassmorphic Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 45px 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.15) 0%, transparent 65%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 163, 255, 0.35);
    box-shadow: 0 15px 40px rgba(0, 163, 255, 0.15);
}

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

.service-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(0, 163, 255, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 163, 255, 0.15);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--primary-color);
    color: #fff;
    box-shadow: var(--neon-glow);
    transform: scale(1.05) rotate(5deg);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-card .read-more {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.service-card:hover .read-more {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-card .read-more i {
    transition: transform 0.3s ease;
}

.service-card:hover .read-more i {
    transform: translateX(6px);
}

/* 6. Premium Project Cards */
.project-card-custom {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.project-card-custom:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 163, 255, 0.35);
    box-shadow: 0 15px 40px rgba(0, 163, 255, 0.15);
}

.project-img-wrap {
    position: relative;
    overflow: hidden;
}

.project-img-wrap img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card-custom:hover .project-img-wrap img {
    transform: scale(1.08);
}

.project-overlay-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 11, 24, 0.95) 0%, rgba(0, 163, 255, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.project-card-custom:hover .project-overlay-custom {
    opacity: 1;
}

.project-action-btn {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: var(--neon-glow);
    text-decoration: none;
}

.project-card-custom:hover .project-action-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.project-action-btn:hover {
    background: #fff;
    color: var(--secondary-color) !important;
    box-shadow: 0 0 20px #fff;
}

.project-info-custom {
    padding: 25px 20px;
    text-align: center;
}

.project-info-custom h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

.project-info-custom p {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 7. Cyber Glassmorphic Inputs */
.form-control, .notify-form input {
    background: rgba(0, 11, 24, 0.6) !important;
    border: 1px solid rgba(0, 163, 255, 0.2) !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 14px 20px;
    transition: var(--transition);
}

.form-control:focus, .notify-form input:focus {
    background: rgba(0, 11, 24, 0.8) !important;
    border-color: var(--primary-color) !important;
    box-shadow: var(--neon-glow) !important;
    color: #fff !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* 8. Additional Animations */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.hover-glow:hover {
    color: var(--primary-color) !important;
    text-shadow: var(--neon-glow);
}

/* 9. Cyber-Tech Call to Action Banner */
.cta-area {
    background: rgba(0, 11, 24, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 163, 255, 0.2);
    border-bottom: 1px solid rgba(0, 163, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-area::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

/* 10. Cyber-Tech Glassmorphic Accordion */
.accordion-item {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 15px !important;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(0, 163, 255, 0.25) !important;
    box-shadow: 0 10px 25px rgba(0, 163, 255, 0.08);
}

.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 25px;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background: rgba(0, 163, 255, 0.05) !important;
    border-bottom: 1px solid rgba(0, 163, 255, 0.15) !important;
}

.accordion-button::after {
    filter: invert(1) brightness(2); /* make chevron icon white */
}

.accordion-button:not(.collapsed)::after {
    filter: invert(41%) sepia(85%) saturate(2250%) hue-rotate(185deg) brightness(101%) contrast(101%); /* make chevron neon blue when open */
}

.accordion-body {
    background: transparent !important;
    color: var(--text-color) !important;
    padding: 25px;
    font-size: 15px;
    line-height: 1.7;
}

/* 3D Earth Container Styles */
#earth-3d-container {
    width: 100%;
    height: 500px;
    max-width: 550px;
    position: relative;
    outline: none;
    z-index: 2;
    overflow: visible;
}
#earth-3d-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    outline: none;
}
@media (max-width: 991px) {
    #earth-3d-container {
        height: 400px;
        max-width: 450px;
        margin: 0 auto;
    }
}
@media (max-width: 575px) {
    #earth-3d-container {
        height: 320px;
        max-width: 320px;
    }
}
