/* Shared styles for all pages */
:root {
    --primary: #181c24;
    --accent: #00c3ff;
    --bg: #10131a;
    --card: #23283a;
    --shadow: 0 4px 24px rgba(0,0,0,0.25);
    --text: #e0e6f0;
    --text-light: #b0b8c9;
}
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}
header {
    background: linear-gradient(90deg, #23283a 60%, #00c3ff 100%);
    color: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    position: relative;
}
header .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
header .logo i {
    font-size: 2.2rem;
    color: #00c3ff;
    background: #23283a;
    border-radius: 50%;
    padding: 0.5rem;
}
nav {
    margin-top: 1.5rem;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffe082;
}
.hero {
    margin: 2rem auto 0 auto;
    max-width: 900px;
    background: var(--card);
    box-shadow: var(--shadow);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    animation: fadeIn 1.2s;
    color: var(--text);
}
.hero img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    border: 3px solid var(--accent);
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
}
main {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 1186px) {
    main { grid-template-columns: 1fr; }
}
section {
    background: var(--card);
    box-shadow: var(--shadow);
    border-radius: 1.2rem;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-left: 1.5rem;
    margin-top: 1.5rem;
    margin-right: 1.5rem;
    animation: fadeInUp 1s;
    color: var(--text);
    position: relative;
    overflow: hidden;
}
section .section-img {
    width: 200px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--accent);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
section h2, section h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
ul {
    padding-left: 1.5rem;
    margin: 100;
}
ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.5;
}
footer {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    margin-top: 2rem;
    border-radius: 1.2rem 1.2rem 0 0;
}
.socials {
    margin: 1rem 0;
}
.socials a {
    color: #00c3ff;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.2s;
}
.socials a:hover {
    color: #ffe082;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
.about-us-img {
    border-radius:4%
}