/* Base Styles */
:root {
    --primary-blue: #0085ca;
    --primary-red: #e31937;
    --dark-bg: #121218;
    --light-text: #f5f5f7;
    --card-bg: rgba(18, 18, 24, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #0c1220 0%, #1c1625 50%, #2a1825 100%);
    color: var(--light-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Particle Background */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#particles {
    width: 100%;
    height: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

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

a:hover {
    color: var(--primary-blue);
}

/* Logo & Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.logo {
    width: 350px;
    height: 350px;
    margin-bottom: 1rem;
    position: relative;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 133, 202, 0.5));
}

.company-name {
    font-size: 3.5rem;
    margin-top: 1rem;
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* About Section */
.about-section {
    margin: 2rem 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, var(--primary-blue), var(--primary-red)) 1;
}

/* Contact Section */
.contact-section {
    margin: 2rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.contact-item a {
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.contact-item a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transition: var(--transition);
}

.contact-item a:hover:after {
    width: 100%;
}

.contact-item a:hover {
    color: #fff;
}

/* Footer */
footer {
    margin-top: 3rem;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }
    
    .info-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 280px;
        height: 280px;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .logo {
        width: 250px;
        height: 250px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}
