@charset "utf-8";
/* CSS Document 

TemplateMo 602 Graph Page

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #0a0e27;
	color: #ffffff;
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 50px;
	background: rgba(10, 14, 39, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(10, 14, 39, 0.98);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo-image {
    height: 45px;   /* logo size */
    width: auto;
}

.logo-icon svg {
	width: 24px;
	height: 24px;
	fill: #0a0e27;
}

.logo-text {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
    text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ff8e53);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: #ff8e53;
	text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #00ffcc, #00ccff);
	transform: translateX(-50%);
	box-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
	border-radius: 2px;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: transform 0.3s ease;
	fill: white;
}

.search-icon:hover {
	transform: scale(1.1);
}



/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

    /* 🔥 Add your image here */
    background-image: url("images/imgc.jpeg");
    background-size: cover;       /* Full screen */
    background-position: center;  /* Centered */
    background-repeat: no-repeat; /* No repeat */
}

/* Glowing animated layer (on top of image) */
.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
   
    opacity: 0.35;
    filter: blur(40px);
}


.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* ✨ Common Shape Style */
.shape {
    position: absolute;
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(2px);
    box-shadow: 0 0 18px rgba(0, 255, 180, 0.2);
    animation: float 15s ease-in-out infinite;
    transition: 0.3s ease-in-out;
}

/* 🟦 Shape Positions + Colors */
.shape1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    transform: rotate(45deg);
}

.shape2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    border-color: rgba(255, 0, 128, 0.4);
    box-shadow: 0 0 22px rgba(255, 0, 128, 0.35);
    animation-duration: 20s;
    animation-direction: reverse;
}

.shape3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    border-color: rgba(0, 204, 255, 0.4);
    box-shadow: 0 0 22px rgba(0, 204, 255, 0.35);
    transform: rotate(30deg);
    animation-duration: 18s;
}

.shape4 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 5%;
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
    transform: rotate(45deg);
    animation-duration: 16s;
}

.shape5 {
    width: 180px;
    height: 180px;
    top: 55%;
    right: 12%;
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
    transform: rotate(-30deg);
    animation-duration: 22s;
    animation-direction: reverse;
}

.shape6 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 8%;
    border-color: rgba(0, 204, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
    transform: rotate(20deg);
    animation-duration: 19s;
}

/* ✨ Smooth Floating Animation */
@keyframes float {
    0%   { transform: translateY(0) rotate(0deg); }
    50%  { transform: translateY(-40px) rotate(20deg); }
    100% { transform: translateY(0) rotate(0deg); }
}


.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* Text Container Animation */
.hero-text {
    animation: slideInLeft 14s ease-out, fadeUp 1.2s ease-out;
}
.hero-text h1 {
    font-size: 64px;
    line-height: 0.98;
    margin-bottom: 19px;
    background: linear-gradient(135deg, #e9eaeb 0%, #e6e4e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: glowText 3s ease-in-out infinite, shine 4s linear infinite;
    position: relative;
    display: inline-block;
}

@keyframes glowText {

    50% {
        text-shadow: 0 0 25px #ffffff, 0 0 40px #fffdff;
    }
}

/* Moving shine highlight */
@keyframes shine {
    0% {
        background-position: -200%;
    }
    100% {
        background-position: 200%;
    }
}
.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #fcf9f9;
    margin-bottom: 40px;
    max-width: 500px;

    opacity: 0;
    animation: fadeUp 1.4s ease-out forwards;
    animation-delay: 0.3s;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero-visual {
	position: relative;
	animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.city-container {
	position: relative;
	width: 100%;
	height: 400px;
	perspective: 1000px;
}
/* 🏙️ Building Windows – with soft flicker */
.building-windows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.06) 8px,
        rgba(255, 255, 255, 0.06) 11px
    );
    opacity: 0.85;
    animation: windowFlicker 4s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}

/* ✨ Neon Scan Lines */
.neon-line {
    position: absolute;
    height: 2px;
    border-radius: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 204, 0.8),
        rgba(0, 255, 204, 0.4),
        transparent
    );
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.7);
    animation: scan 3s linear infinite;
}

.neon-line1 {
    width: 120px;
    top: 30%;
    left: 8%;
}

.neon-line2 {
    width: 180px;
    top: 50%;
    right: 12%;
    animation-delay: 1s;
}

/* 🔥 NEW: Slight glowing pulse */
.neon-line1,
.neon-line2 {
    animation: scan 3s linear infinite, pulse 1.8s ease-in-out infinite;
}

/* 🌀 Scan Animation */
@keyframes scan {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translateX(220%);
        opacity: 0;
    }
}

/* 🌟 Neon Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* ✨ Window Glow Flicker */
@keyframes windowFlicker {
    0% { opacity: 0.7; }
    50% { opacity: 0.9; }
    100% { opacity: 0.75; }
}


/* Dashboard Section */
.dashboard-section {
    padding: 80px 50px;

    /* Background image + gradient overlay */
    background:
        linear-gradient(180deg, rgba(10, 14, 39, 0.85), rgba(15, 19, 41, 0.85)),
        url('dashboard.jpeg');

    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;

    /* Animation */
    animation: bgMove 7s ease-in-out infinite alternate;
}

/* Background Animation (zoom + pan) */
@keyframes bgMove {
    0% {
        background-size: 120%;
        background-position: center;
    }
    50% {
        background-size: 130%;
        background-position: 60% 40%;
    }
    100% {
        background-size: 120%;
        background-position: 40% 60%;
    }
}
.stat-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}



.dashboard-container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	font-size: 40px;
	margin-bottom: 40px;
	text-align: center;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}

.stat-card {
    background: linear-gradient(145deg, #0a0f1e, #0b0f18);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.35);
    border-color: rgba(0, 255, 255, 0.4);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(0, 255, 255, 0.15),
        transparent
    );
    pointer-events: none;
}

.stat-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stat-icon {
    font-size: 35px;
    margin-right: 12px;
    color: #00fff7;
    filter: drop-shadow(0 0 8px #00fff7);
}

.stat-title {
    font-size: 20px;
    font-weight: 700;
    color: #00fff7;
    text-shadow: 0 0 8px #00fff7;
}

.stat-value {
    font-size: 18px;
    margin: 10px 0;
    color: #d8faff;
    font-weight: 600;
}

.stat-description {
    font-size: 14px;
    color: #b9d8ff;
    line-height: 1.5;
    margin-bottom: 18px;
}

.stat-chart {
    height: 80px;
}

/* Analytics Section */
.section-title {
    font-size: 40px;
    font-weight: 30;
    text-align: center;
    margin: 0 auto 50px auto;
    display: block;

    color: #00ffe0;
    letter-spacing: 2px;

    /* Glow */
    text-shadow: 0 0 10px #00ffe0,
                 0 0 20px #00ffe0;

    /* Animation */
    animation: fadeDown 1.2s ease-out forwards;
}

@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-25px); }
    100% { opacity: 1; transform: translateY(0); }
}
.analytics-section {
    display: flex;
    gap: 0;

    /* 🌄 Background Image */
    background-image: url(""); /* image path */
    background-size: cover;       /* full cover */
    background-position: center;  /* center */
    background-repeat: no-repeat;
    background-attachment: fixed; /* smooth scroll effect */

    position: relative;
}



/* -------- GLOBAL -------- */
body {
    margin: 0;
    background: #0d1120;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    animation: bgPulse 8s ease-in-out infinite alternate;
}

/* Background pulse animation */
@keyframes bgPulse {
    0%   { background-color: #0d1120; }
    100% { background-color: #12172a; }
}

/* Smooth fade animation */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Up animation for charts */
.animate-up {
    animation: moveUp 0.8s ease;
}
@keyframes moveUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Card animation */
.animate-card {
    animation: cardFloat 1.5s ease-in-out infinite alternate;
}
@keyframes cardFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(-10px); }
}

/* -------- LAYOUT -------- */
.dashboard {
    display: flex;
    width: 100%;
}


/* -------- MAIN -------- */
.main {
    flex: 1;
    padding: 30px;
    animation: fadeIn 1s ease-in-out;
}

/* -------- METRICS -------- */
.metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    flex: 1;
    padding: 40px 35px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff7edb, #b06bfc);
    transition: 0.3s;
    animation: bounceIn 1s ease;
}

/* Bounce animation */
@keyframes bounceIn {
    0%   { transform: scale(0.8); opacity: 0; }
    60%  { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.metric-value {
    font-size: 34px;
    font-weight: 700;
}

.metric-label {
    font-size: 13px;
    opacity: 0.8;
}

/* SMALL STATS */
.small-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.small-stat {
    background: #11172a;
    padding: 12px;
    border-radius: 10px;
    animation: fadeIn 0.8s ease-in-out;
}

.small-stat-value {
    color: #4bd6ff;
    margin-top: 3px;
}

.chart-box {
    background: #121729;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 100px;
    box-shadow: 0 0 20px #00000040;
    transition: 0.3s;
    animation: chartGrow 1.2s ease-out;

    /* FIXED SIZE + RESPONSIVE */
    width: 100%;
    height: 350px;       /* 🔥 Main chart height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.chart-box canvas {
    width: 100% !important;
    height: 100% !important; /* Canvas full fit */
    object-fit: contain;
}
.bottom-charts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bottom-charts .chart-box {
    height: 280px; /* Small charts fixed height */
}
/* Put sidebar + content in same row */
.analytics-section {
    display: flex;
    gap: 0;
}

/* Sidebar now in dark theme */
.sidebar {
    width: 230px;
    background: #1e1e2f; /* dark background */
    color: #fff;          /* white text */
    padding: 20px;
}

.sidebar h1,
.sidebar .sidebar-section-title,
.sidebar a {
    color: #fff; /* ensure all text is visible */
}

.sidebar a {
    display: block;
    text-decoration: none;
    margin: 8px 0;
    font-weight: 500;
}

.sidebar a:hover {
    color: #00bcd4; /* highlight color on hover */
}

/* MAIN CONTENT */
.main {
    flex: 1;
    margin-left: 0 !important;
    padding: 20px;
}

/* Ensure cards and charts align properly */
.metrics,
.chart-box,
.bottom-charts {
    margin-left: 0 !important;
}

/* Centered Dashboard Title */
.section-title {
    text-align: center;
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
}


/* REPORTS SECTION */
.reports-section {
    padding: 80px 50px;
    background: linear-gradient(180deg, #0f1329, #1a1f3a);
}

/* GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    perspective: 1200px; /* 3D depth */
}

/* CARD */
.info-card {
    position: relative;
    height: 420px;              /* 🔥 card perusa */
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.8s ease, box-shadow 0.8s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    cursor: pointer;
}

/* ROTATION + LIFT */
.info-card:hover {
    transform: rotateY(12deg) rotateX(6deg) scale(1.08);
    box-shadow: 0 35px 80px rgba(0,255,224,0.25);
}

/* IMAGE */
.info-card .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* IMAGE ZOOM */
.info-card:hover .bg-img {
    transform: scale(1.15);
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.2)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.7s ease;
}

/* SLIDE UP TEXT */
.info-card:hover .overlay {
    transform: translateY(0);
}

/* TITLE */
.info-value {
    font-size: 24px;
    font-weight: 700;
    color: #00ffe0;
    margin-bottom: 10px;
}

/* TEXT */
.overlay p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

/* Contact Section */
/* Contact Section with Background Image + Animation */
.contact-section {
    padding: 80px 50px;
    background: 
        linear-gradient(180deg, rgba(15,19,41,0.85), rgba(10,14,39,0.9)),
        url('imgc.jpeg');   /* 🔥 Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;  /* Parallax effect */
    animation: bgMove 18s ease-in-out infinite alternate;
}

/* Background slow movement animation */
@keyframes bgMove {
    0% {
        background-position: center top;
    }
    100% {
        background-position: center bottom;
    }
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    animation: floatBox 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatBox {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #f3ebeb;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 204, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info {
    padding: 20px 0;
    animation: floatBox 7s ease-in-out infinite reverse;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 255, 204, 0.3);
    background: rgba(0, 255, 204, 0.05);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffcc, #00ccff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-details p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.4;
}


/* Footer */
footer {
	padding: 40px 50px;
	background: #0a0e27;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.copyright {
	font-size: 14px;
	color: #707070;
}

.copyright a {
	color: #707070;
	text-decoration: none;
	transition: color 0.3s ease;
}

.copyright a:hover {
	color: #00ffcc;
	text-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
}

/* Mobile Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(10, 14, 39, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-direction: column;
	gap: 0;
	list-style: none;
	z-index: 1000;
	padding: 20px;
}

.nav-links-mobile.active {
	display: flex;
}

.nav-links-mobile a {
	color: #ffffff;
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.nav-links-mobile a:hover {
	border-left-color: #ff6b6b;
	background: rgba(255, 107, 107, 0.1);
	color: #ff8e53;
}

.nav-links-mobile a.active {
	border-left-color: #00ffcc;
	background: rgba(0, 255, 204, 0.1);
	color: #00ffcc;
}

@media (max-width: 1200px) {
	.charts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 968px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 48px;
	}

	.hero-text {
		padding-top: 160px;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
	}

	.hero-text h1 {
		font-size: 36px;
	}

	.hero-text {
		padding-top: 120px;
	}

	.dashboard-section,
	.analytics-section,
	.reports-section,
	.contact-section {
		padding: 40px 20px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
.side-alert {
    position: fixed;
    right: 30px;
    top: 95%;
    transform: translateY(-50%);

    background: linear-gradient(135deg, #c41fc7, #00c6ff);
    color: #0a0e27;

    padding: 16px 22px;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 700;

    box-shadow: 
        0 0 15px rgba(0, 255, 224, 0.8),
        0 0 30px rgba(0, 198, 255, 0.6);

    animation: pulseAlert 1.8s infinite;
    z-index: 999;
}

/* Pulse highlight animation */
@keyframes pulseAlert {
    0% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 15px rgba(0,255,224,0.8);
    }
    50% {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 0 35px rgba(0,255,224,1);
    }
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 15px rgba(0,255,224,0.8);
    }
}
/* --- MOBILE VIEW ALIGNMENT FIXES --- */

@media (max-width: 768px) {
    /* 1. Fix Side Alert overlapping content */
    .side-alert {
        position: relative; /* Removes from fixed floating position */
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: 20px;
        padding: 15px;
        text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    /* 2. Alignment for Analytics Metrics cards */
    .metrics {
        flex-direction: column; /* Stack vertically on small screens */
        gap: 15px;
    }

    .metric-card {
        width: 100%;
        margin-bottom: 0;
    }

    /* 3. Fix Chart Containers to prevent horizontal scrolling */
    .chart-container-main, .bottom-charts {
        width: 100%;
        padding: 10px;
        overflow: hidden; /* Prevent charts from breaking the container */
    }

    .bottom-charts {
        display: flex;
        flex-direction: column; /* Stack bottom charts vertically */
        gap: 20px;
    }

    .chart-box {
        min-height: 250px; /* Force a readable height on mobile */
        width: 100% !important;
    }

    /* 4. Fix Hero Text alignment */
    .hero-text {
        padding: 120px 20px 40px 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    /* 5. Fix Stats and Info Grids */
    .stats-grid, .info-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .info-card {
        height: 250px; /* Slightly shorter for mobile browsing */
    }

    /* 6. Navigation alignment */
    .nav-container {
        padding: 0 20px;
    }
}

/* 7. Specific fix for very small devices (Phones) */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .cta-button {
        width: 100%; /* Full width buttons for easier tapping */
        text-align: center;
    }
}