/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000; /* True black background */
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth; /* Smooth scroll behavior */
}
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #000000; /* Same as background */
}
::-webkit-scrollbar-thumb {
    background: #333333; /* Slightly lighter for visibility */
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555555;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #111111; /* Slightly lighter background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 40px;
    border-bottom: 2px solid #333333; /* Darker border */
    position: fixed;
    top: 0;
    left: 0;
    width: 97%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background for fixed header */
    backdrop-filter: blur(10px); /* Blur effect */
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}
header h1 {
    font-size: 3.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: font-size 0.3s ease;
}
nav {
    text-align: left;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-left: 20px;
}
nav ul li:first-child {
    margin-left: 0;
}
nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2em;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}
nav ul li a:hover {
    color: #FFD700; /* Gold color for hover */
    background-color: #222222; /* Slightly lighter background */
}
/* Main content section */
.main-content {
    margin-top: 140px; /* Adjust for fixed navbar */
    padding-top: 20px;
}
.section {
    background-color: #222222; /* Slightly lighter background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    scroll-margin-top: 160px; /* Offset for fixed header */
}
.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    color: #FFD700;
}
.qualities, .box-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.quality, .box {
    background-color: #333333; /* Slightly lighter background */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease;
}
.quality:hover, .box:hover {
    transform: translateY(-10px);
}
.photo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}
.photo-container img {
    width: 20%; 
    height: 20%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #333333; /* Slightly lighter background */
    color: #ffffff;
}
.contact-form button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #FFD700; /* Gold button */
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #FFA500; /* Darker gold on hover */
}
.social-platform {
    text-align: center;
    margin-top: 40px;
}
.social-links a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
    color: #FFD700; /* Gold color for hover */
    transform: scale(1.2);
}
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #111111; /* Slightly lighter background */
    border-top: 2px solid #333333; /* Darker border */
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333333; /* Slightly lighter background */
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
}
.back-to-top.show {
    display: block;
    opacity: 1;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 3em;
    }
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
@media (max-width: 480px) {
    header h1 {
        font-size: 2.5em;
    }
    nav ul li a {
        font-size: 1em;
    }
    .section h2 {
        font-size: 2em;
    }
}
