/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
}

/* Header & Nav */
header {
    background: #0f2027;
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #4facfe;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #00f2fe;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.btn {
    background: #4facfe;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #00f2fe;
}

/* General Sections */
.content-section {
    padding: 80px 50px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    color: #0f2027;
    margin-bottom: 10px;
}

.content-section hr {
    width: 60px;
    height: 4px;
    background: #4facfe;
    border: none;
    margin: 0 auto 40px auto;
}

.gray-bg {
    background-color: #f1f5f9;
    max-width: 100%;
}

/* Robot Cards */
.robot-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.robot-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
}

.robot-card h3 {
    margin-bottom: 15px;
    color: #203a43;
}

/* Team Grid */
.team-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin:0 auto;
}

.member {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.avatar {
    font-size: 50px;
    background: #e2e8f0;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

/* Contact */
#contact>.infobox-section{
    display:flex;
    justify-content: center;
}

.infobox{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-radius: 25px;
    border-color: #4facfe;
    height: 150px;
    width:150px;
    margin: 0 20px;
}

a {
    text-decoration: none;
}

a p {
    color:black;
}

.infobox>img {
    height:100px;
    padding:10px;
}

/* Footer */
footer {
    background: #0f2027;
    color: #7f8c8d;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}