:root {
    --primary-color: #6fa3da;
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --text-color: #333;
    --white: #fff;
    --dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
}

.transparent-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    background-color: transparent;
}

.transparent-header .nav-links a {
    color: var(--white) !important;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
}

.logo img {
    height: 80px;
    width: auto;
    margin-right: 1rem;
}

.nav-links a {
    color: white !important;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

header .main-nav .nav-links a:hover,
header .main-nav .nav-links a.active {
    color: var(--primary-color) !important;
}

main {
    margin-top: 0 !important;
}

.transparent-navbar {
    background-color: transparent !important;
    position: fixed;
    backdrop-filter: blur(10px);
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}
  
.transparent-navbar.scrolled {
    background-color: rgba(0,0,0,0.7) !important;
}

.about-hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/office-background.jpg') center center/cover no-repeat;
    display: flex;
    padding-top: 35vh;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: none;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif; 
    font-style: italic;
}

.hero-content p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-style: italic;
}

.scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
    cursor: pointer;
    bottom: 200px
}

.scroll-down span {
    margin-bottom: 20px; 
    font-size: 1rem;
    opacity: 0.8;
}

.scroll-down i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-down:hover {
    opacity: 1;
}

.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-description h2{
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.company-info h2 {
    font-size: 2rem;
    padding-top: 10px; 
}

.showcase-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.company-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.horizontal-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
    height: 400px;
    
}

.company-logo {
    flex: 1;
    background: white;
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 0; 
}

.company-logo img.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.company-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.company-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.company-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.company-header p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.company-details th, 
.company-details td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.company-details th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .horizontal-layout {
        flex-direction: column;
    }
    
    .company-logo, 
    .company-card {
        flex: none;
        width: 100%;
    }
}

/* Table Styles */
.company-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.company-details th, 
.company-details td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.company-details th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.company-details tr:last-child td {
    border-bottom: none;
}

/* Dark Footer */
.dark-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-left p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--white);
}

.contact-info p {
    color: #999;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-info i {
    margin-top: 0.3rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .horizontal-layout {
        flex-direction: column;
    }
    
    .company-logo {
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
}