* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
}

.logo-text {
    color: #ffffff;
}

.logo-accent {
    color: #00d4aa;
    font-weight: 500;
}

.nav-tagline {
    color: #888;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%),
                url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2000') center/cover;
    color: white;
    padding: 140px 0 80px;
    margin-top: 60px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-line {
    width: 80px;
    height: 3px;
    background-color: #00d4aa;
    margin: 0 auto 30px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: #00d4aa;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.92), rgba(248, 249, 250, 0.92)),
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2000') center/cover fixed;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-main {
    margin-bottom: 40px;
}

.highlight {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.mission-box {
    background-color: #00d4aa;
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.mission-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 300;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.8;
}

/* Activities Section */
section.activities-section {
    background: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=2000') center/cover;
    padding-bottom: 40px;
}

.activities-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

/* Activities Section */
.activities-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.activity-item {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.activity-icon {
    font-size: 40px;
    color: #00d4aa;
    margin-bottom: 20px;
}

.activity-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
}

.activity-item p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.industry-statement {
    background-color: #f8f9fa;
    padding: 40px;
    border-left: 4px solid #00d4aa;
    max-width: 900px;
    padding-bottom: 20px;
    margin: 0 auto;
}

.industry-statement p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

/* Goals Section */
.goals-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(rgba(248, 249, 250, 0.92), rgba(248, 249, 250, 0.92)),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2000') center/cover fixed;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.goal-item {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateX(10px);
}

.goal-number {
    font-size: 48px;
    font-weight: 200;
    color: #00d4aa;
    margin-right: 20px;
}

.goal-item p {
    font-size: 18px;
    color: #34495e;
    flex: 1;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2000') center/cover;
    color: white;
    position: relative;
}

.philosophy-section .section-header h2 {
    color: white;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000') center/cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-box {
    background-color: rgba(248, 249, 250, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.contact-info-box h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.company-reg {
    color: #666;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h4 {
    color: #00d4aa;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-detail p {
    color: #34495e;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background-color: rgba(248, 249, 250, 0.95);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-method:hover {
    background-color: rgba(232, 236, 239, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.method-icon {
    font-size: 30px;
    margin-right: 20px;
    color: #00d4aa;
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-info h4 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 18px;
}

.method-info p {
    color: #34495e;
    line-height: 1.6;
}

.method-info a {
    color: #00d4aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-info a:hover {
    color: #00b894;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Make activities and goals single column on mobile */
    .activities-cards,
    .goals-grid {
        grid-template-columns: 1fr;
        max-width:400px;
    }
    
    .navbar {
        flex-direction: column;
        gap: 10px;
    }
}