/* Example CSS file */ 

/* NEO DENS Corporate Website Styles */

:root {
    --primary-color: #2C3E50;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e5e5e5;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

/* Top Wrap & Navigation */
.top-wrap {
    position: relative;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.uk-navbar-container {
    background: transparent !important;
}

.uk-navbar-nav > li > a {
    color: var(--primary-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 1.5rem;
}

.uk-logo img {
    height: 40px;
    width: auto;
}

/* Content Styles */
#content {
    margin-top: 0;
    padding: 2rem 0;
}

.uk-heading-divider {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
}

.uk-card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.uk-card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.uk-text-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-color);
}

.uk-list-bullet > li {
    margin-bottom: 0.5rem;
}

/* Button Styles */
.uk-button-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0;
}

.footer h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .uk-icon-button {
    background: rgba(255,255,255,0.1);
    color: white;
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0.5rem 0;
    }

    .uk-logo img {
        height: 30px;
    }

    #content {
        padding: 1rem 0;
    }

    .uk-heading-divider {
        font-size: 1.8rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.9) 100%);
}

.hero .uk-heading-large {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero .uk-text-lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light-bg);
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.service-card .uk-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 5rem 0;
}

.uk-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: var(--light-bg);
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid white;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-info {
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.uk-form-controls input,
.uk-form-controls textarea {
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    padding: 12px;
    transition: all 0.3s ease;
}

.uk-form-controls input:focus,
.uk-form-controls textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.uk-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Quick Links */
.quick-links {
    padding: 5rem 0;
    background: white;
}

.quick-links .uk-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.quick-links .uk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.quick-links .uk-card-title {
    color: var(--primary-color);
    font-weight: 500;
}

/* Page Hero */
.page-hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.9) 100%);
}

.page-hero .uk-heading-large {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

/* About Page Specific */
.about-content {
    padding: 4rem 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-content {
    padding: 2rem;
}

.philosophy-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.philosophy-content .uk-text-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section .uk-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.values-section .uk-card:hover {
    transform: translateY(-10px);
}

.values-section .uk-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        margin-top: 60px;
    }
    
    .page-hero .uk-heading-large {
        font-size: 2.5rem;
    }
    
    .philosophy-content {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .values-section .uk-card {
        margin-bottom: 1rem;
    }
    
    .hero {
        height: 70vh;
        margin-top: 60px;
    }
    
    .hero .uk-heading-large {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .uk-navbar-nav {
        background: var(--primary-color);
    }
} 
