* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #0d47a1;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Hero Section - Full Width Background */
.hero {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.94) 0%, rgba(224, 224, 224, 0.94) 100%),
                url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2000') center/cover;
    color: #1a237e;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 56px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    font-weight: 700;
    color: #0d47a1;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    color: #424242;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Main Content */
main {
    background-color: #ffffff;
}

/* Full Width Section Wrappers */
.section-wrapper {
    width: 100%;
    position: relative;
    padding: 100px 0;
}

/* About Section - Full Width Background */
.about-wrapper {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('https://images.unsplash.com/photo-1565043666747-69f6646db940?q=80&w=2000') center/cover;
}

/* Activities Section - Full Width Background */
.activities-wrapper {
    background: linear-gradient(rgba(248, 249, 250, 0.93), rgba(248, 249, 250, 0.93)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?q=80&w=2000') center/cover;
}

/* Goals Section - Full Width Background */
.goals-wrapper {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2000') center/cover fixed;
}

/* Philosophy Section - Full Width Dark Background */
.philosophy-wrapper {
    background: linear-gradient(rgba(26, 35, 126, 0.92), rgba(26, 35, 126, 0.92)),
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=2000') center/cover;
}

/* Contact Section - Full Width Background */
.contact-wrapper {
    background: linear-gradient(rgba(248, 249, 250, 0.94), rgba(248, 249, 250, 0.94)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000') center/cover;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3949ab;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
}

.lead {
    font-size: 18px;
    margin-bottom: 20px;
}

.mission {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-left: 4px solid #3949ab;
    margin: 20px 0;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.subtitle {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.activity-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.activity-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 20px;
}

.industry-focus {
    margin-top: 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border-left: 4px solid #3949ab;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

/* Goals List */
.goals-list {
    list-style: none;
    padding-left: 0;
}

.goals-list li {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 15px 20px 50px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
    font-size: 18px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.goals-list li:hover {
    transform: translateX(5px);
}

.goals-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: #4caf50;
    font-size: 24px;
    font-weight: bold;
}

/* Philosophy Section Special Styles */
.philosophy-wrapper .section-title,
.philosophy-wrapper .section-content p {
    color: white;
}

.philosophy-wrapper .section-title::after {
    background-color: #64b5f6;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #1a237e;
    margin-bottom: 10px;
}

.company-details {
    color: #666;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    color: #1a237e;
    margin-bottom: 5px;
}

.contact-item p {
    margin-left: 20px;
}

.contact-item a {
    color: #3949ab;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #0d47a1;
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer p {
    margin-bottom: 5px;
    opacity: 0.9;
}

/* Full Width Section Wrappers with better distinction */
.section-wrapper {
    width: 100%;
    position: relative;
    padding: 100px 0;
}

/* Add subtle pattern overlay for texture */
.section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0,0,0,0.03) 35px, rgba(0,0,0,0.03) 70px);
    pointer-events: none;
}

/* About Section - White with subtle blue tint */
.about-wrapper {
    background: linear-gradient(rgba(255, 255, 255, 0.765), rgba(252, 253, 255, 0.95)),
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2000') center/cover;
    border-top: 1px solid rgba(26, 35, 126, 0.1);
    padding: 120px 0 80px 0;
    position: relative;
    margin-top: -40px;
}

.about-wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #bcc3c5;
    transform: skewY(2deg);
    transform-origin: top right;
}

/* Activities Section - Light gray background */
.activities-wrapper {
    background: linear-gradient(rgba(245, 247, 250, 0.76), rgba(245, 247, 250, 0.94)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?q=80&w=2000') center/cover;
    position: relative;
}

/* Add decorative element between sections */
.activities-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3949ab, transparent);
}

/* Goals Section - White background */
.goals-wrapper {
    background: linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.96)),
                url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2000') center/cover fixed;
    box-shadow: inset 0 1px 0 rgba(26, 35, 126, 0.08);
    padding: 120px 0 80px 0;
    position: relative;
    margin-top: -40px;
}

.goals-wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #1a227ee9;
    transform: skewY(2deg);
    transform-origin: top right;
}

/* Philosophy Section - Dark blue gradient */
.philosophy-wrapper {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.76) 0%, rgba(26, 35, 126, 0.95) 100%),
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=2000') center/cover;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

/* Contact Section - Light with gradient */
.contact-wrapper {
    background: linear-gradient(180deg, rgba(248, 249, 252, 0.76) 0%, rgba(240, 242, 247, 0.94) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000') center/cover;
    border-top: 1px solid rgba(26, 35, 126, 0.08);
    margin-top: -40px;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.92) 0%, rgba(13, 71, 161, 0.92) 100%),
                url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2000') center/cover;
    color: #1a237e;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: -1px; /* Prevent gap */
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Update content boxes for better contrast */
.activity-card {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 35, 126, 0.08);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: rgba(57, 73, 171, 0.2);
}

/* Section titles with more presence */
.section-title {
    font-size: 42px;
    color: #1a237e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Add divider elements between some sections */
.section-divider {
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(26, 35, 126, 0.03), transparent);
    position: relative;
}



/* Ensure philosophy section text is white */
.philosophy-wrapper .section-title,
.philosophy-wrapper .section-content p {
    color: white;
}

.philosophy-wrapper .section-title::after {
    background-color: #64b5f6;
}

/* Adjust content positioning to account for skews */
#about, #activities, #goals, #philosophy, #contact {
    position: relative;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item p {
        margin-left: 0;
    }
    
    .goals-list li {
        padding-left: 40px;
    }
    
    .goals-list li::before {
        left: 10px;
    }
    
    .section-wrapper {
        padding: 60px 0;
    }
    .hero::after,
    .about-wrapper::after,
    .activities-wrapper::after,
    .goals-wrapper::after,
    .philosophy-wrapper::after {
        height: 40px;
    }
    
    .section-wrapper {
        padding: 80px 0 60px 0;
        margin-top: -20px;
    }
    
    .hero {
        padding: 100px 0 60px 0;
    }
}