/* Akssha Tech Website Styles */

:root {
    --primary-blue: #003366;
    --primary-teal: #00A3A3;
    --accent-orange: #FF9933;
    --light-gray: #f0f2f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 150px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 1.25rem;
    color: var(--primary-teal);
    font-weight: 300;
}

/* Navigation Styles */
.nav-menu {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    transform: translateY(-2px);
}

/* Main Content Styles */
.main-content {
    padding: 2rem 0;
}

.content-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.content-card h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--accent-orange);
    padding-bottom: 0.5rem;
}

.content-card h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin: 1.5rem 0 1rem 0;
    border-left: 4px solid var(--primary-teal);
    padding-left: 1rem;
}

.content-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem 0;
}

.content-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-card ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-card li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.content-card strong {
    color: var(--primary-blue);
}

/* Link Styles */
.link-item {
    display: block;
    padding: 1rem;
    background: linear-gradient(135deg, #e0f2f7 0%, #cce7f0 100%);
    color: var(--primary-blue);
    border-radius: 8px;
    margin-bottom: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-orange);
}

.link-item:hover {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #008888 100%);
    color: var(--white);
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card h1 {
        font-size: 2rem;
    }
    
    .content-card h2 {
        font-size: 1.5rem;
    }
}

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

.content-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Highlight boxes for important content */
.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b3 100%);
    border-left: 4px solid var(--accent-orange);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.info-box {
    background: linear-gradient(135deg, #e0f7fa 0%, #b3e5fc 100%);
    border-left: 4px solid var(--primary-teal);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #e6851a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--primary-teal);
}

.btn-secondary:hover {
    background-color: #008888;
}

