/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #030b25;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    background: #02071c;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #4da3ff;
}

.navbar nav a {
    margin: 0 12px;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 14px;
}

.navbar nav a:hover {
    color: #4da3ff;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4da3ff;
    transition: width 0.3s ease;
}

.navbar nav a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: #4da3ff;
    color: #fff;
}

.btn.primary:hover {
    background: #2979ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 163, 255, 0.4);
}

.btn.secondary {
    background: transparent;
    color: #4da3ff;
    border: 2px solid #4da3ff;
}

.btn.secondary:hover {
    background: #4da3ff;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(3, 11, 37, 0.9), rgba(13, 25, 60, 0.8)), url('images/bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #dbe8ff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Section Styles */
.section {
    padding: 80px 0;
}

.section.dark {
    background: #081336;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #4da3ff;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.section p {
    color: #cdd9ff;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: #0c183d;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(77, 163, 255, 0.2);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: #cdd9ff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: #4da3ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #2979ff;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0a1129, #1a2652);
    padding: 80px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.stats-section p {
    color: #cdd9ff;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4da3ff;
    margin-bottom: 10px;
}

.stat-label {
    color: #cdd9ff;
    font-weight: 500;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.industry-item {
    background: #0c183d;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    background: #162447;
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.industry-item span {
    color: #fff;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #0c183d;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(77, 163, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #cdd9ff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #4da3ff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #2979ff;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.contact-card {
    background: #0c183d;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    color: #4da3ff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
}

.contact-item p {
    color: #cdd9ff;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #0c183d;
    color: #fff;
    font-size: 16px;
    transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4da3ff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #789bff;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #02071c;
    padding: 60px 0 20px;
    border-top: 1px solid #1a2652;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #4da3ff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #789bff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #0c183d;
    border-radius: 8px;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #4da3ff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #789bff;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4da3ff;
}

.contact-details p {
    color: #789bff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid #1a2652;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #789bff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #4da3ff;
}

.footer-bottom p {
    color: #789bff;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        padding: 10px 20px;
    }

    .navbar nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .navbar nav a {
        margin: 5px 8px;
        font-size: 13px;
        padding: 5px 8px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar nav a {
        margin: 3px 5px;
        font-size: 12px;
        padding: 3px 6px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .about-card,
    .service-card {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }
}