*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	text-align: center;
}

header {
	width: 100%;
	height: 4.0rem;
	background-color: #fff;
	position: fixed;
	color: #000;
	border-bottom: 2px solid #555;
}
.hideAll, .response-container {
    display: none;
}

h2 {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1.5%;
}

h3 {
	font-size: 1rem;
	margin-top: 2%;
}

h4 {
	font-size: 4rem;
	line-height: 1.5;
	text-align: start;
	font-weight: 600;
}

p {
	font-size: 1.1rem;
}

.header-container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.header-container>div {
	height: 4.0rem;
	line-height: 4.0rem;
}

.header-container div span {
	margin-left: 20px;
	cursor: pointer;
}

.click-home{
	cursor: pointer;
}

main {
	padding-top: 5rem;
}

section {
	padding-top: 10%;
}

.home-page {
	background-color: rgb(252, 252, 251);
	width: 60.0rem;
	margin: 0 auto;
}

.project-page {
	background-color: white;
	font-size: 26px;
	width: 60.0rem;
	margin: 0 auto;
	padding: 49px;
}

.project-container {
	display: flex;
	justify-content: space-between;
}

.project-card {
	background-color: aquamarine;
	padding: 1.0rem;
	height: 16.0rem;
	margin-top: 2.0rem;
	width: 31.5%;
}

.hideAll {
	display: none;
}

.logo {
	font-weight: 700;
	font-size: 1.1rem;
}

nav a {
	text-decoration: none;
	color: var(--muted);
	margin-left: 16px;
	font-size: 0.95rem;
}

main {
	max-width: 1100px;
	margin: 0 auto;
}

#banner {
	padding-top: 5%;
}

#banner .content {
	background: #e0e0e3;
	height: 40vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#banner h1 {
	font-size: 1.5rem;
}

.placeholder {
	background: #bfc3c7;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2b2f31;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 8px;
}

.project {
	padding: 16px;
	min-height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
    cursor: pointer;
}

.project .box {
	background: #e0e0e3;
	height: 180px;
}

.project h3 {
	margin: 0;
	font-size:20px;
}

.project p {
	margin: 0;
	font-size: 0.9rem
}

#skills div {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
}

#contact .content {
	background: #e0e0e3;
	padding: 5%;
}

form {
	width: 50%;
	margin: 0 auto;
}

form input,
textarea {
	width: 100%;
}

footer {
	margin-top: 36px;
	text-align: center;
	color: var(--muted);
	font-size: 0.9rem;
}

.main-project {
	display: flex;
	height: 40vh;
	justify-content: start;
	gap: 30px;
    text-align: left;
}

.main-project img {
	max-width: 100%;
	height: auto;
	display: block;
}

.main-project h2{
    margin-bottom:15px;
}

.main-project ul li {
    font-size:1.1rem;
    list-style:disc;
    margin-left: 20px;
}

.about-project {
	display: flex;
	height: 40vh;
	justify-content: start;
	gap: 30px;
    text-align: left;
    margin-top: 5%;
    margin-bottom: 5%;
}

.about-project img {
	max-width: 100%;
	height: auto;
	display: block;
}

.about-project h2{
    margin-bottom:15px;
}
.main-mbox{
width:1000px;
height:auto;
}
/* Ultra Premium Background */
body {
    background: linear-gradient(140deg, #ff9ecd 0%, #ffd6e8 30%, #c4e0ff 70%, #d9fff2 100%);
    background-size: 300% 300%;
    animation: bgShift 12s ease infinite;
    overflow-x: hidden;
}

/* Smooth gradient animation */
@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Blurry glowing circles */
.bg-bubble {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    z-index: -1;
    animation: floatBubble 10s ease-in-out infinite;
}

.b1 {
    width: 280px;
    height: 280px;
    background: #ffb3d9;
    top: -40px;
    left: -50px;
}

.b2 {
    width: 350px;
    height: 350px;
    background: #bcd7ff;
    bottom: 5%;
    right: -60px;
}

.b3 {
    width: 220px;
    height: 220px;
    background: #c4ffe8;
    top: 40%;
    right: 15%;
}

/* Floating animation */
@keyframes floatBubble {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-35px); }
    100% { transform: translateY(0px); }
}


