/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid #08214f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3d6ba3;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #3d6ba3;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #2d2d2d;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        3px 3px 0px #000000,
        6px 6px 0px #000000,
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 3px solid #08214f;
}

.hero-subtitle {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3d6ba3;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 
        2px 2px 0px #000000,
        4px 4px 0px #000000,
        0 0 15px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    border: 2px solid #3d6ba3;
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 
        2px 2px 0px #000000,
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border: 2px solid #3d6ba3;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #08214f, #1e4a7c);
    color: #ffffff;
    box-shadow: 
        0 4px 15px rgba(8, 33, 79, 0.6),
        0 0 20px rgba(0, 0, 0, 0.5);
    border: 3px solid #08214f;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(8, 33, 79, 0.8),
        0 0 30px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #1e4a7c, #3d6ba3);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 3px solid #3d6ba3;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
    background: #3d6ba3;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 15px rgba(61, 107, 163, 0.6),
        0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gear-animation {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 4px solid #08214f;
    border-radius: 50%;
    animation: rotate 15s linear infinite;
    box-shadow: 
        0 0 30px rgba(8, 33, 79, 0.8), 
        0 0 50px rgba(0, 0, 0, 0.7),
        0 0 70px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.gear-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid #08214f;
    border-radius: 50%;
    animation: rotate 12s linear infinite reverse;
    box-shadow: 
        inset 0 0 15px rgba(8, 33, 79, 0.6), 
        0 0 20px rgba(8, 33, 79, 0.5),
        0 0 40px rgba(0, 0, 0, 0.6);
}

.gear-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #08214f;
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(8, 33, 79, 0.9), 
        0 0 25px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(0, 0, 0, 0.5);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Styles */
.section-title {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #3d6ba3;
    text-shadow: 2px 2px 0px #000000, 4px 4px 0px #2d2d2d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="metal" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%231a1a1a"/><path d="M0 0h20v2H0zM0 4h20v2H0zM0 8h20v2H0zM0 12h20v2H0zM0 16h20v2H0zM0 18h20v2H0z" fill="%23333" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23metal)"/></svg>');
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(45, 45, 45, 0.8);
    padding: 0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #08214f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 33, 79, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(61, 107, 163, 0.1);
    border-color: #3d6ba3;
    box-shadow: 0 8px 25px rgba(61, 107, 163, 0.4);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 1.3rem;
    color: #3d6ba3;
    margin: 1.5rem 1.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
    text-align: left;
}

/* About Section */
.about {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 50%, #0a0a0a 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="industrial" width="50" height="50" patternUnits="userSpaceOnUse"><rect width="50" height="50" fill="%231a1a1a"/><circle cx="25" cy="25" r="2" fill="%23333" opacity="0.1"/><rect x="20" y="20" width="10" height="10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23industrial)"/></svg>');
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #3d6ba3;
    text-shadow: 2px 2px 0px #000000, 4px 4px 0px #2d2d2d;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #08214f, #1e4a7c, #3d6ba3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(8, 33, 79, 0.4);
    border: 3px solid #3d6ba3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact" width="30" height="30" patternUnits="userSpaceOnUse"><rect width="30" height="30" fill="%230a0a0a"/><path d="M0 0h30v1H0zM0 5h30v1H0zM0 10h30v1H0zM0 15h30v1H0zM0 20h30v1H0zM0 25h30v1H0zM0 29h30v1H0z" fill="%23333" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contact)"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #3d6ba3;
    margin-top: 0.5rem;
}

.contact-details h3 {
    font-family: 'Arial Black', 'Arial', sans-serif;
    color: #3d6ba3;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: #cccccc;
    line-height: 1.6;
}

.contact-details a {
    color: #3d6ba3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.contact-details a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(61, 107, 163, 0.5);
}

/* Form Styles */
.contact-form {
    background: rgba(45, 45, 45, 0.8);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #08214f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #08214f;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3d6ba3;
    background: rgba(61, 107, 163, 0.1);
    box-shadow: 0 0 10px rgba(61, 107, 163, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group select option {
    background: #000000;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 3px solid #08214f;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-family: 'Arial Black', 'Arial', sans-serif;
    color: #3d6ba3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3d6ba3;
    text-shadow: 0 0 5px rgba(61, 107, 163, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gear-animation {
        right: 5%;
        width: 80px;
        height: 80px;
    }

    .gear-animation::before {
        width: 50px;
        height: 50px;
    }

    .gear-animation::after {
        width: 25px;
        height: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #3d6ba3;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5c8cc9;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

