body {
    font-family: Arial;
    margin: 0;
    background: #f4f4f4;
	height: 100%;
}

nav {
    background: #333;
    padding: 10px;
}

nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
}
/*Below is the comment of the members section*/



.main-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
	
}

.login{
    text-align: right;
}

.login a {
    text-decoration: none;
    padding: 8px 15px;
    background: #333;
    color: white;
    border-radius: 5px;
}

.login a:hover {
    background: #555;
}
.content {
    flex: 1;
	word-wrap: break-word;
    overflow-wrap: break-word;
	max-width: 40%;  
}

.gallery {
    flex: 1;
	position: sticky;
    top: 20px;
	border-left: 2px solid #ddd;
    padding-left: 20px;
	max-width: 40%;  
	
	
}
.gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.gallery-item {
    text-align: right;
	
}




.pic img {
    width: 20%;
    height: auto;
    border-radius: 8px;
	
}
.pic {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images in a row */
    gap: 15px;
}

.pic img {
    width: 60%;        /* 2 images per row */
}



textarea {
    width: 30%;
    height: 80px;
    margin-bottom: 10px;
}

.comment-box {
    background: #f1f1f1;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

button {
    margin-right: 5px;
    cursor: pointer;
}






footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
}
/*footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px;
	height:100px;
	position: fixed;
}
//this is the login in and sign up.
/*.container {
    width: 300px;
    margin: 80px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px #ccc;
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    background: #28a745;
    color: white;
    border: none;
}header("Location: login.php");
exit();

or

header("Location: dashboard.php");
exit();
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.6;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    background:#0f172a;
    color:#fff;
}

.logo h2{
    font-size:24px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:#38bdf8;
}

.admin-btn{
    background:#38bdf8;
    color:#fff;
    padding:10px 18px;
    border-radius:5px;
    text-decoration:none;
}

/* HERO */
.hero{
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    background:linear-gradient(to right, #0f172a, #1e293b);
    color:white;
}

.hero h1{
    font-size:55px;
    margin-bottom:10px;
}

.hero h1 span{
    color:#38bdf8;
}

.hero h3{
    font-size:28px;
    margin-bottom:20px;
    font-weight:400;
}

.hero p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}

.btn{
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.primary-btn{
    background:#38bdf8;
    color:white;
}

.secondary-btn{
    border:1px solid #38bdf8;
    color:#38bdf8;
}

.primary-btn:hover{
    background:#0ea5e9;
}

.secondary-btn:hover{
    background:#38bdf8;
    color:white;
}

/* SECTIONS */
section{
    padding:80px 10%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    color:#0f172a;
}

/* ABOUT */
.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

/* SKILLS */
.skills-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(180px,1fr));
    gap:20px;
}

.skill-card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* PROJECTS */
.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:30px;
}

.project-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.project-info{
    padding:20px;
}

/* CONTACT CTA */
.contact-cta{
    background:#0f172a;
    color:white;
    text-align:center;
}

.contact-cta p{
    margin:20px 0;
}

/* FOOTER */
footer{
    background:#020617;
    color:white;
    text-align:center;
    padding:20px;
}

/* RESPONSIVE 
@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-direction:column;
        text-align:center;
    }

    .hero h1{
        font-size:38px;
    }

    .hero h3{
        font-size:22px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}*/