/* Base Styles */
:root {
    --primary-color: #6eb4ff;
    --secondary-color: rgb(234, 234, 246);
    --accent-color: #ff6b6b;
    --text-color: #333;
    --text-light: #777;
    --white: #ffffff;
    --dark: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(24, 20, 20, 0.2)), url('');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: rgb(255, 255, 255);
    padding: 150px ;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeIn 2.5s ease-in;
}

/* Portfolio Details */
.portfolio-details {
    padding: 50px 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.portfolio-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-info div {
    padding: 20px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin: 10px;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
}

.portfolio-info div:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-info h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Content Section */
.content-section {
    background-color: var(--white);
}

.content-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
}

.content-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.content-section ul li {
    background-color: var(--secondary-color);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.content-section ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery {
    padding: 50px 0;
    text-align: center;
    background-color: var(--secondary-color);
}

.gallery h3 {
    margin-bottom: 30px;
    color: var(--dark);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cs_nav_list {
        flex-direction: column;
    }

    .cs_nav_list li {
        margin: 10px 0;
    }

    .portfolio-info {
        grid-template-columns: 1fr;
    }
}
