:root {
    /* Premium Color Palette */
    --primary: #0A192F;
    /* Deepest Navy */
    --primary-light: #172A45;
    /* Lighter Navy */
    --secondary: #00A8E8;
    /* Vibrant Water Blue */
    --accent: #E1F4FA;
    /* Very light water tint */
    --text-dark: #0A192F;
    --text-white: #e6f1ff;
    /* Off-white text for dark backgrounds */
    --text-light: #8892b0;
    /* Muted text */
    --white: #FFFFFF;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0A192F 0%, #003366 100%);
    --grad-water: linear-gradient(135deg, #00A8E8 0%, #0077b6 100%);
    --grad-overlay: linear-gradient(to right, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.7));

    /* Typography */
    --font-main: 'Inter', system-ui, sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;

    /* Depth & Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-flat: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-float: 0 10px 30px -10px rgba(2, 12, 27, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #f8fbfd;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(10, 25, 47, 0.4);
}

.btn-secondary {
    background: var(--grad-water);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 168, 232, 0.4);
}

/* Glassmorphism Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-flat);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(231, 231, 231, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Page Headers with Image Support */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Overlay for text readability */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-overlay);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: #081f3b;
    color: var(--text-light);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--grad-water);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--secondary);
    padding-left: 15px;
}

.footer-links a {
    color: #a8b2d1;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #8892b0;
}

/* Helper Class for Cards */
.card-3d {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-flat);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-3d:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-float);
        border-top: 1px solid #efefef;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* 3D Icon Effects */
.icon-3d {
    font-size: 4rem;
    background: linear-gradient(135deg, #00A8E8 0%, #003366 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fix lint ID: e6b22278-629b-4a4e-8f47-c11560efd3e0 */
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.creative-icon-bg {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d4e7f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Add a subtle pattern overlay */
.creative-icon-bg::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.1) 10px,
            rgba(0, 168, 232, 0.05) 10px,
            rgba(0, 168, 232, 0.05) 20px);
    opacity: 0.5;
}

.industry-card:hover .icon-3d {
    transform: scale(1.2) rotate(10deg) translateY(-10px);
    filter: drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.4));
}/* -------------------------------------
   ADMIN PANEL STYLES
   ------------------------------------- */

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: var(--primary);
    color: white;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.sidebar-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    border-left: 4px solid transparent;
    font-size: 0.95rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-left-color: var(--secondary);
}

.sidebar-nav i {
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Admin Main Content */
.main-content {
    flex: 1;
    background: #f4f7f6;
    padding: 30px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Admin Cards */
.admin-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 25px;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 232, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Admin Tables */
.table-container {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #f8f9fa;
    color: var(--primary);
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    border-bottom: 2px solid #eee;
}

td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    color: var(--text-dark);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #fcfcfc;
}

/* Admin Forms */
.form-container {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 700px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

/* Login Page Specific */
.login-page {
    background: linear-gradient(135deg, var(--primary) 0%, #001a33 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
