/* css/style.css */

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

:root {
    --bg-main: #0b0f19;
    --bg-card: #111827;
    --bg-input: #1f2937;
    --bg-header: rgba(11, 15, 25, 0.85);
    --border-color: rgba(245, 158, 11, 0.15);
    
    --primary: #f59e0b; /* Amber Gold */
    --primary-hover: #d97706;
    --primary-glow: rgba(245, 158, 11, 0.35);
    
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --text-dark: #111827;
    
    --success: #10b981;
    --danger: #ef4444;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.1);
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes gradient-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Permanent Top Contact Bar */
.top-contact-bar {
    background: #070a12;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 100;
}

.top-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-contact-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

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

.contact-item svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

.top-socials {
    display: flex;
    gap: 12px;
}

.top-socials a:hover {
    color: var(--primary);
}

/* Sticky Header & Navbar */
header.main-header {
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 99;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

.logo svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    background: transparent;
    color: var(--primary) !important;
    padding: 5px 0; /* Matching other nav links */
    font-weight: 700;
    transition: var(--transition-smooth);
    display: inline-block;
}

.nav-cta:hover {
    color: var(--primary-hover) !important;
    text-shadow: 0 0 12px var(--primary-glow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    animation: pulse-ring 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Home Hero Section */
.hero-section {
    padding: 120px 20px 80px 20px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(11, 15, 25, 0.8), rgba(11, 15, 25, 0.95)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-card-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.hero-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Sections Global */
.section-padding {
    padding: 80px 20px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-main);
}

/* Materials supplying highlight section */
.highlight-section {
    background: rgba(245, 158, 11, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.highlight-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.highlight-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.highlight-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.feature-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(245, 158, 11, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    background: rgba(245, 158, 11, 0.1);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon svg {
    fill: var(--text-dark);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Recent Activity Section */
.jobs-list-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.jobs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.jobs-table th, .jobs-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.jobs-table th {
    background: rgba(0, 0, 0, 0.2);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jobs-table tr {
    transition: var(--transition-smooth);
}

.jobs-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.jobs-table td.cost {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}

.badge-tender {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* About timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-main);
    border: 3px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left-timeline {
    left: 0;
}

.right-timeline {
    left: 50%;
}

.right-timeline::after {
    left: -8px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--bg-card);
    position: relative;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/* Contact Us Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

.contact-info-title {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-card-icon {
    background: rgba(245, 158, 11, 0.1);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.detail-card-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.detail-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Form inputs styling */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

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

/* File Upload input custom styling */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.02);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-icon {
    margin-bottom: 15px;
}

.file-upload-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--text-muted);
    transition: var(--transition-smooth);
}

.file-upload-wrapper:hover .file-upload-icon svg {
    fill: var(--primary);
}

.file-upload-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.file-upload-text span {
    color: var(--primary);
    font-weight: 600;
}

.file-name-preview {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--success);
}

/* Toast alert notification styling */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: #34d399;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: #f87171;
}

/* Search bar styling for Jobs page */
.search-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 30px;
}

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

.search-form .form-control {
    margin-bottom: 0;
}

/* Pagination container */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.page-link:hover, .page-link.active {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

/* Footer Section */
footer.main-footer {
    background: #070a12;
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 30px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

/* Admin Login Page layout */
.login-wrapper {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 1.8rem;
    margin-top: 10px;
}

/* Admin Dashboard layout */
.admin-header-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-logout-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.admin-logout-btn:hover {
    background: var(--danger);
    color: white;
}

.admin-container {
    max-width: 1300px;
    margin: 30px auto;
    padding: 0 20px;
}

.admin-tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-main);
}

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

.tab-pane {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.tab-pane.active {
    display: block;
}

/* Admin Dashboard Subgrids */
.admin-two-cols {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 30px;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.admin-card-title {
    margin-bottom: 25px;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Edit and delete button icons */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-edit {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary);
}

.btn-edit:hover {
    background: var(--primary);
    color: var(--text-dark);
}

.btn-delete {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.btn-delete:hover {
    background: var(--danger);
    color: white;
}

.btn-download {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-download:hover {
    background: var(--success);
    color: white;
}

.btn-download svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Empty list styling */
.empty-state {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    fill: var(--text-muted);
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .admin-two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-contact-container {
        justify-content: center;
        text-align: center;
    }
    
    .top-socials {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 30px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 106px; /* Below top contact bar and navbar header */
        width: 100%;
        height: calc(100vh - 106px);
        background-color: var(--bg-card);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 25px;
        transition: 0.4s ease;
        border-right: 1px solid var(--border-color);
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 22px;
    }
    
    .left-timeline, .right-timeline {
        left: 0;
    }
}

@media (max-width: 480px) {
    .top-contact-details {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .header-container {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .highlight-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container, .contact-info-card, .admin-card {
        padding: 20px;
    }
}

/* Custom File Upload */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background-color: rgba(245, 158, 11, 0.05);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    z-index: 1;
    pointer-events: none;
    padding: 10px;
}

.file-upload-display.has-file {
    color: var(--primary);
}
