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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 3D Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3c72;
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1e3c72;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #1e3c72;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2a4a8a;
}

.btn-outline {
    background: transparent;
    border: 2px solid #1e3c72;
    color: #1e3c72;
}

.btn-outline:hover {
    background: #1e3c72;
    color: #fff;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e3c72;
    font-family: 'Poppins', sans-serif;
}

/* Features */
.features {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #1e3c72;
}

/* Page Header */
.page-header {
    margin-top: 80px;
    background: rgba(30, 60, 114, 0.9);
    color: white;
    text-align: center;
    padding: 60px 0;
    backdrop-filter: blur(5px);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
}

/* Services Detail */
.services-detail {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 4rem;
    margin-right: 30px;
    min-width: 100px;
    text-align: center;
}

.service-content h2 {
    color: #1e3c72;
    margin-bottom: 15px;
}

/* Solutions Grid */
.solutions-grid {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.solution-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.solution-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* About Content */
.about-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.about-content .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #1e3c72;
    margin: 25px 0 10px;
}

.about-text h2:first-of-type {
    margin-top: 0;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.contact-section .container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #1e3c72;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #1e3c72;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

/* Legal Content */
.legal-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 60px 0;
}

.legal-content h2 {
    color: #1e3c72;
    margin: 30px 0 15px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #1e3c72;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .nav-links {
        margin-top: 20px;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .about-content .container {
        flex-direction: column;
    }
    
    .contact-section .container {
        flex-direction: column;
    }
}