/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Navigation Bar */
nav {
    background: black;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    color: cyan;
    margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    transition: 0.3s;
}

nav ul li a:hover {
    background-color: cyan;
    color: black;
}

/* Hero Section with Robotics Frame */
.hero {
    background: url('../images/robotic-hero.png') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.robot-frame {
    background: rgba(0, 255, 255, 0.1);
    padding: 20px;
    border: 2px solid cyan;
    border-radius: 10px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px cyan; }
    to { box-shadow: 0 0 20px cyan; }
}

.cta-button {
    background-color: cyan;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
}

/* Services Section */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    background: cyan;
    color: black;
}

/* Popup Styling */
.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: black;
    padding: 20px;
    border: 2px solid cyan;
    box-shadow: 0 0 15px cyan;
    z-index: 10;
}

.popup-content {
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
/* Page Header */
.page-header {
    background: url('../images/services-banner.jpg') center/cover no-repeat;
    text-align: center;
    padding: 60px 20px;
    color: white;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.service-item {
    background: rgba(0, 255, 255, 0.2);
    padding: 20px;
    font-size: 18px;
    border: 1px solid cyan;
    cursor: pointer;
    transition: 0.3s;
}

.service-item:hover {
    background: cyan;
    color: black;
}
/* Page Header */
.page-header {
    background: url('../images/services-banner.jpg') center/cover no-repeat;
    text-align: center;
    padding: 60px 20px;
    color: white;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.service-item {
    background: rgba(0, 255, 255, 0.2);
    padding: 20px;
    font-size: 18px;
    border: 1px solid cyan;
    cursor: pointer;
    transition: 0.3s;
}

.service-item:hover {
    background: cyan;
    color: black;
}
/* Page Header */
.page-header {
    background: url('../images/services-banner.jpg') center/cover no-repeat;
    text-align: center;
    padding: 60px 20px;
    color: white;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
    text-align: center;
}

.service-item {
    background: rgba(0, 255, 255, 0.2);
    padding: 20px;
    font-size: 18px;
    border: 1px solid cyan;
    cursor: pointer;
    transition: 0.3s;
}

.service-item:hover {
    background: cyan;
    color: black;
}

/* Popup Styling */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
}

.popup-content {
    text-align: center;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
    color: red;
}
/* About Page Styling */
.hero-about {
    background: url('../images/about-bg.jpg') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0ff;
    text-shadow: 2px 2px 10px rgba(0, 255, 255, 0.8);
}

.about-content {
    background: #0a0a0a;
    color: #ddd;
    padding: 50px;
    text-align: center;
}

.about-content h2 {
    color: #0ff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    background: rgba(0, 255, 255, 0.2);
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.about-content ul li:hover {
    background: rgba(0, 255, 255, 0.5);
    transform: scale(1.1);
}
/* Style for select dropdown */
.input-box select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Improve spacing for inputs */
.input-box {
    margin-bottom: 15px;
}

.input-box input,
.input-box select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
/* Login & Signup Page Styling */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
}

.login-container form {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    width: 350px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.login-container h2 {
    color: #0ff;
    margin-bottom: 20px;
}

.input-box {
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn {
    background: #0ff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #00aaff;
}
/* Style for select dropdown */
.input-box select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Improve spacing for inputs */
.input-box {
    margin-bottom: 15px;
}

.input-box input,
.input-box select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
/* Signup Form Styling */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    margin-top: 80px; /* Prevents overlap with navbar */
}

.form-container form {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    width: 350px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.form-container h2 {
    color: #0ff;
    margin-bottom: 20px;
}

.input-box {
    margin-bottom: 15px;
}

.input-box input, 
.input-box select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.input-box select {
    appearance: none;
    cursor: pointer;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn {
    background: #0ff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #00aaff;
}
/* Contact Page Styling */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 40px;
}

.contact-container h2 {
    color: #0ff;
    margin-bottom: 20px;
}

.contact-container form {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.input-box {
    margin-bottom: 15px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.input-box textarea {
    height: 100px;
    resize: none;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn {
    background: #0ff;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #00aaff;
}
