* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Kupla - Trust Badge */
.trust-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #2ecc71;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: bold;
    z-index: 1000;
    animation: pulse 2s infinite;
    font-size: 14px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    margin: 0;
}

.logo .tagline {
    font-size: 12px;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav a:hover, .nav a.active {
    background: rgba(255,255,255,0.1);
}

/* Buttons */
.btn-primary {
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 25px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    margin-left: 10px;
}

.btn-secondary:hover {
    background: white;
    color: #1a237e;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(26,35,126,0.9), rgba(13,71,161,0.9)), #1a237e;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.trust-item .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-item h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

/* Services */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a237e;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 5px solid #1a237e;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

/* Projects */
.projects-teaser {
    padding: 80px 0;
    background: #f8f9fa;
}

.projects-teaser h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a237e;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.project-card {
    background: #1a237e;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.project-card h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.project-card ul {
    list-style: none;
}

.project-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Projects Full Page */
.page-header {
    background: #1a237e;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.projects-full {
    padding: 80px 0;
}

.project-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #1a237e;
}

.project-section h2 {
    color: #1a237e;
    margin-bottom: 15px;
}

.project-list {
    list-style: none;
}

.project-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Services Full Page */
.services-content {
    padding: 80px 0;
}

.service-detail {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #2ecc71;
}

.service-detail h2 {
    color: #1a237e;
    margin-bottom: 15px;
}

/* Team */
.team-preview, .team-full {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #2ecc71;
}

.team-member h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

.team-member h2 {
    color: #1a237e;
    margin-bottom: 15px;
}

.team-member .contact {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

.team-full .team-member {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-full .certifications ul {
    list-style: none;
    margin-top: 15px;
}

.team-full .certifications li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form label {
    font-weight: bold;
    color: #1a237e;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: #1a237e;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Why Us */
.why-us {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.why-item h3 {
    color: #1a237e;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #0d47a1;
    color: white;
    padding: 50px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 0;
}

.footer-section a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .project-card ul {
        font-size: 14px;
    }
    
    .trust-bubble {
        padding: 8px 16px;
        font-size: 12px;
    }
}