* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
    background: #0a2a4a;
    color: #fff;
    line-height: 1.6;
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

.mobile-background {
    display: none;
}

.content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

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

header {
    padding: 15px 0;
    background: rgba(10, 42, 74, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 200px;
}

.logo svg {
    width: 100%;
    height: auto;
}

.cls-1, .cls-2 {
    fill: #ffffff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;
}

nav a:hover {
    color: #19c4bb;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #19c4bb;
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
}

.hero {
    text-align: center;
    padding: 150px 0 120px;
    background: linear-gradient(rgba(10, 42, 74, 0.9), rgba(25, 80, 120, 0.9));
    color: white;
    margin-bottom: 80px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-button {
    display: inline-block;
    background: #19c4bb;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #19c4bb;
    box-shadow: 0 5px 15px rgba(25, 196, 187, 0.3);
}

.cta-button:hover {
    background: transparent;
    color: #19c4bb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(25, 196, 187, 0.4);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #19c4bb;
    margin: 15px auto;
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 15px;
    border-left: 4px solid #19c4bb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card i {
    font-size: 2.5rem;
    color: #19c4bb;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #19c4bb;
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.portfolio-item p {
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    width: 180px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step .number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #19c4bb;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
}

.process-step h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    text-align: left;
    backdrop-filter: blur(5px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease;
    color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #19c4bb;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* FIXED: Service dropdown styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Style for dropdown options */
.form-group select option {
    background: #0a2a4a;
    color: #ffffff;
    padding: 10px;
}

.submit-btn {
    background: #19c4bb;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0a2a4a;
    transform: translateY(-2px);
    border: 1px solid #19c4bb;
}

footer {
    text-align: center;
    padding: 40px 0 0;
    margin-top: 60px;
    background: #061d33;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-svg {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 40px 0 20px;
}

.footer-text {
    padding: 20px 0;
    font-size: 1rem;
    background: #061d33;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #19c4bb;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #19c4bb;
    transform: translateY(-3px);
}

.footer-bottom-svg {
    width: 100%;
    background: #0a2a4a;
    display: block;
}

.footer-bottom-svg svg {
    width: 100%;
    height: auto;
    display: block;
}

.logo {
    width: 220px;
    transform: translateY(2px);
}

/* Mobile Styles - CLEAN & MINIMAL */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row;
        gap: 15px;
    }
    
    .logo {
        width: 160px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .process-step {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    header { 
        padding: 12px 0; 
    }
    
    .mobile-menu-btn { 
        display: block; 
        position: absolute;
        right: 20px;
        top: 15px;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(10, 42, 74, 0.98);
        backdrop-filter: blur(12px);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
        animation: fadeSlide 0.3s ease forwards;
    }
    
    @keyframes fadeSlide {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    nav a { 
        font-size: 1.1rem; 
        padding: 12px 20px; 
        display: block;
        text-align: center;
    }
    
    .hero { 
        padding: 120px 0 80px; 
        margin-bottom: 40px;
    }
    
    .stats {
        gap: 25px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 15px;
        flex-direction: column;
    }
    
    /* REMOVED: Mobile background motifs - Keeping it clean and minimal */
    .mobile-background {
        display: none;
    }
    
    #background-canvas {
        display: none;
    }
    
    /* Improved spacing for mobile */
    .about-content p {
        margin-bottom: 20px;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
    
    /* Clean background for mobile */
    body {
        background: #0a2a4a;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .footer-links {
        gap: 10px;
    }
}