/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: #e6e6e6;
        }

        header .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        header .logo span {
            color: #ffd700;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 10px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            padding: 5px 10px;
            transition: background-color 0.3s;
        }
                nav ul li a.active {
    background-color: #FFD700;
    color: #fff !important;
    border-radius: 5px;
}

        nav ul li a:hover,
        nav ul li a.login-btn {
            background-color: #FFD700;
            color: #fff;
            border-radius: 5px;
        }

        footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}


/* Section Styles */
.banner {
    text-align: center;
    padding: 40px 20px;
    background-color: #e0e0e0;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.banner p {
    font-size: 1.2rem;
}

/* Grid Styles */
.grid {
    display: grid;
    gap: 20px;
    padding: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-item {
    background-color: #e0e0e0;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}

.grid-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Card Styles */
.card {
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card .image {
    height: 150px;
    background-color: #ccc;
}

.card .desc {
    background-color: #000;
    color: #fff;
    padding: 10px;
    font-weight: bold;
}

/* Location Section */
.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.location-container .map {
    flex: 2;
    background-color: #aaa;
    height: 300px;
    border-radius: 10px;
}

.location-container .desc {
    flex: 3;
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}
        /* About Section */
        .about-section {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 50px 100px;
            gap: 50px;
        }
        
        .profile {
            text-align: center;
        }
        
        .profile-picture {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid #e5e5e5;
        }
        
        .profile h2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .profile p {
            font-size: 18px;
            color: #555;
            margin-bottom: 20px;
        }
        
        .contact-btn {
            background-color: #2a0a75;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .contact-btn:hover {
            background-color: #1d084e;
        }
        /* Background Skill */
.background-skill {
    width: 100px;
    height: 100px;
    background-color: #e5e5e5;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.background-skill h2 {
    font-size: 20px;
    color: #333;
}
/* Responsiveness */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .location-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .card {
        width: 100%;
    }
}

footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-container p {
    margin: 0;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 10px;
    color: #FFD700;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}


/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header .logo {
        margin-bottom: 10px;
    }

    .banner h1 {
        font-size: 1.8rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .grid {
        padding: 10px;
        gap: 10px;
    }

    .grid-item {
        font-size: 0.9rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 1.5rem;
    }

    .banner p {
        font-size: 0.8rem;
    }

    .grid-item {
        font-size: 0.8rem;
        padding: 10px;
    }
}
