/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: rgb(23,3,33);
    background-image: url("./images/background.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
}










/* Heading */
.topHeading {
    text-align: center;
    font-size: 40px;
    padding: 30px 0;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
}

/* Neural Privacy Section */
.neural-privacy-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    position: relative;
}

.neural-privacy-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    gap: 20px;
    padding: 20px;
    background: rgb(255, 255, 255);
    border: 1px solid #90caf9;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(70, 130, 180, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
}



/* General Header Styling */
.header {
    background: linear-gradient(90deg, #204b22, #123d23);
    color: white;
    padding: 20px 10px;
    font-family: Arial, sans-serif;
    border-bottom: 4px solid #1C703F;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo and Name Styling */
.logo-and-name {
    flex: 1;
    text-align: left;
}

.company-name {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-name i {
    font-size: 2.5rem;
    color: #FFD700; /* Gold color for the shield icon */
}

.company-name .highlight {
    color: #FFD700; /* Gold highlight for "CORTEX" */
}

.tagline {
    font-size: 1rem;
    margin-top: 5px;
    color: #E8E8E8;
}

/* Contact Info Styling */
.contact-info {
    text-align: right;
    flex: 1;
}

.contact-info h3 {
    margin: 0;
    font-size: 1.5rem;
}

.contact-info h3 i {
    margin-right: 10px;
    color: #FFD700;
}

.contact-info a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info p {
    font-size: 1rem;
    margin-top: 5px;
    color: #E8E8E8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .logo-and-name,
    .contact-info {
        text-align: center;
    }
}








/* Typography */
.overview-title {
    font-size: 28px;
    font-weight: bold;
    color: #0d1b2a;
    text-align: center;
    padding: 10px;
    position: relative;
    background:#90caf9;
    border-radius: 8px;
    animation: slideIn 1s ease-in-out;
}

.overview-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    background: rgba(5, 2, 39, 0.856);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Image Styling */
.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.overview-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}





/* General Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 10px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    text-align: center;
}

.footer-section h2,
.footer-section h3 {
    margin-bottom: 10px;
    color: #4CAF50;
}

.footer-section p,
.footer-section a {
    margin: 5px 0;
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #4CAF50;
}

/* Social Media Icons */
.social-media a {
    margin: 0 10px;
    font-size: 20px;
    color: #4CAF50;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #fff;
}

/* Call-to-Action Buttons */
.cta-button {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #3A9A3C;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
        text-align: left;
        padding: 0 20px;
    }

    .social-media {
        text-align: center;
    }
}















/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .neural-privacy-overview {
        grid-template-columns: 1fr;
    }
}
