/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
	--header-height: 3.5rem;

	/*========== Colors ==========*/
	/*Color mode HSL(hue, saturation, lightness)*/
	/*
  291 , 64 , 48
  hsl(245, 82, 65)
        Purple: hsl(42, 90%, 68%)
        Purple: hsl(250, 66%, 75%)
        Blue: hsl(207, 90%, 72%)
        Pink: hsl(356, 66%, 75%)
        Teal: hsl(174, 63%, 62%)
  */
	--first-hue: 34;
	--sat: 92%;
	--lig: 50%;
	--second-hue: 60;
	--first-color: hsl(var(--first-hue), var(--sat), var(--lig));
	--first-color-alt: hsl(var(--first-hue), var(--sat), 64%); /* -4% */
	--title-color: hsl(var(--second-hue), 15%, 95%);
	--text-color: hsl(var(--second-hue), 8%, 75%);
	--text-color-light: hsl(var(--second-hue), 4%, 55%);
	--body-color: #000000;
	--container-color: hsl(60, 4%, 11%);

	/*========== Font and typography ==========*/
	/*.5rem = 8px | 1rem = 16px ...*/
	--body-font: 'Outfit', sans-serif;
	--biggest-font-size: 1.75rem;
	--h1-font-size: 1.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: 0.938rem;
	--small-font-size: 0.813rem;
	--smaller-font-size: 0.75rem;
	--tiny-font-size: 0.625rem;

	/*========== Font weight ==========*/
	--font-medium: 500;
	--font-semibold: 600;

	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 100;
	--z-modal: 1000;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
	:root {
		--biggest-font-size: 2.5rem;
		--biggest-font-size-second: 3rem;
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: 0.875rem;
		--smaller-font-size: 0.813rem;
	}
}

/*=============== BASE ===============*/
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

body,
button,
input,
textarea {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
}

body {
	background-color: var(--body-color);
	color: var(--text-color);
	transition: 0.4s; /* for light mode animation */
}

h1,
h2,
h3 {
	color: var(--title-color);
	font-weight: var(--font-semibold);
}

/* .auto-input {
	background: linear-gradient(
		to right,
		rgb(89, 200, 247),
		purple,
		rgb(239, 243, 121)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 1.5em;
} */

.auto-input {
	font-size: 1.5em;
}

.uiux-designer {
	background: linear-gradient(
		to right,
		rgb(218, 34, 218),
		rgb(137, 221, 255),
		rgb(253, 169, 183)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	font-weight: bold;
}

.flutter-dev {
	background: linear-gradient(to right, rgb(109, 201, 241), orange);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	font-weight: bold;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
	border: none;
	outline: none;
}

img {
	max-width: 100%;
	height: auto;
}

.mh-about-tag {
	word-break: break-all;
	margin-bottom: 10px;
	margin-top: 10px;
}
.mh-about-tag ul li {
	margin: 0px 6px;
	border-radius: 24px;
	margin-bottom: 10px;
	padding: 4px 0px;
	display: inline-block;
}
.mh-about-tag ul li span {
	border: 1px solid #ffe17f;
	padding: 4px 10px;
	border-radius: 24px;
}
.mh-about-tag ul li span:hover {
	background-color: transparent;
}

/*=============== THEME ===============*/

.change-theme {
	font-size: 1.25rem;
	cursor: pointer;
	transition: 3s;
}
.change-theme:hover {
	color: var(--first-color);
}

/*========== Variables light theme ==========*/

body.light-theme {
	--title-color: hsl(var(--second-hue), 15%, 15%);
	--text-color: hsl(var(--second-hue), 8%, 35%);
	--body-color: #f7f7f7;
	--container-color: #fff;
}

/*========== 
    Color changes in some parts of 
    the website, in light theme
==========*/

.light-theme .scroll-header {
	/* box-shadow: 0 2px 4 px hsla(0, 0%, 1%, 0.1); */
}
.light-theme .nav__menu {
	background-color: hsla(var(--second-hue), 32%, 90%, 0.8);
}

.light-theme .section__subtitle {
	color: var(--text-color);
}

.light-theme .home__title-new {
	color: var(--title-color);
}

.light-theme .home__subtitle-new {
	color: var(--text-color);
}

.light-theme .home__social-link {
	box-shadow: 0 2px 8px hsla(var(--second-hue), 48%, 8%, 0.1);
}

.light-theme .home__social-link::after,
.light-theme .footer__social-link {
	color: var(--title-color);
}

.light-theme .home__social-link,
.light-theme .home__scroll,
.light-theme .button,
.light-theme .button:hover,
.light-theme .active-work,
.light-theme .footer__title,
.light-theme .footer__link,
.light-theme .footer__copy {
	color: var(--title-color);
}

.light-theme .about__box,
.light-theme .skills__content,
.light-theme .services__card,
.light-theme .work__card,
.light-theme .testimonial__card,
.light-theme .contact__card {
	box-shadow: 0 2px 8px hsla(var(--second-hue), 48%, 8%, 0.1);
}

.light-theme::-webkit-scrollbar {
	background-color: #fff;
}

.light-theme::-webkit-scrollbar-thumb {
	background-color: hsl(var(--second-hue), 8%, 54%);
}
.light-theme::-webkit-scrollbar-thumb:hover {
	background-color: hsl(var(--second-hue), 8%, 44%);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
	max-width: 968px;
	margin-left: 1rem;
	margin-right: 1rem;
}

.grid {
	display: grid;
	gap: 1.25rem;
}

.main {
	overflow: hidden;
}

.section {
	padding: 4.5rem 0 1rem;
	scroll-snap-align: center;
}

.section__title,
.section__subtitle {
	text-align: center;
}

.section__title {
	font-size: var(--h2-font-size);
	color: var(--first-color);
	margin-bottom: 2rem;
}

.section__subtitle {
	display: block;
	font-size: 19px;
	color: var(--text-color);
}

/*=============== HEADER & NAV===============*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--body-color);
	z-index: var(--z-fixed);
	transition: 0.4s;
}
.nav {
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav__logo {
	font-weight: var(--font-medium);
	transition: 4s;
}

.purple-text {
	color: rgb(143, 234, 255);
	font-weight: bold; /* Make the font bold */
	font-size: 1.2em; /* Adjust the font size as needed */
}

.gradient-text {
	background: linear-gradient(
		to right,
		rgb(143, 234, 255),
		rgb(254, 171, 185),
		rgb(236, 90, 255)
	);
	font-weight: bold; /* Make the font bold */

	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav__logo:hover {
	color: var(--first-color-alt);
}

.nav__menu {
	position: fixed;
	bottom: 1rem;
	/* background-color: hsla(var(--second-hue), 90%, 68%, 0.1); */
	background-color: hsla(0, 0%, 1%, 0.4);
	width: 90%;
	border-radius: 4rem;
	padding: 1rem 2.25rem;
	backdrop-filter: blur(10px);
	transition: 0.4s;
}

.nav__list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav__link {
	color: var(--text-color);
	font-size: 1.25rem;
	padding: 0.4rem;
	display: flex;
	border-radius: 5rem;
}

/* Active link */

.active-link {
	background: linear-gradient(135deg, #fc8f00, #4674c0);
	color: #fff;
	/* box-shadow: 0 0 16px hsla( var(--first-hue),var(--sat),var(--lig), .4 ); */
}

/* Change background header */
.scroll-header {
	/* box-shadow: 0 4px 4px hsla(0, 0%, 4%, 0.3); */
}

/*=============== HOME ===============*/

.home__container {
	position: relative;
	row-gap: 3.5rem;
	padding-top: 2rem;
}
.home__data {
	text-align: center;
}

.home__education {
	font-weight: var(--font-medium);
}

.home__greeting {
	font-size: 1.2rem;
	display: block;
	color: var(--title-color);
	margin-bottom: 0.25rem;
}
.home__education {
	color: var(--text-color);
	margin-bottom: 2.5rem;
}
.home__name {
	font-size: var(--biggest-font-size);
}
.home__img {
	width: 3060px;
}
.home__handle {
	justify-self: center;
	width: 190px;
	height: 289px;
	background: linear-gradient(
		180deg,
		hsla(var(--first-hue), var(--sat), var(--lig), 1),
		hsla(var(--first-hue), var(--sat), var(--lig), 0.6)
	);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	border-radius: 10rem 10rem 1rem 1rem;
	background-size: cover; /* Ensure the background image covers the entire container */
	background-position: center; /* Center the background image */
	background-repeat: no-repeat; /* Prevent background image from repeating */
}

.home__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
}

.home__social,
.home__scroll {
	position: absolute;
}
.home__social {
	bottom: 5rem;
	left: 0;
	display: grid;
	row-gap: 0.5rem;
}

.home__social-link {
	width: max-content;
	background-color: var(--container-color);
	color: var(--first-color);
	padding: 0.25rem;
	border-radius: 0.25rem;
	display: flex;
	font-size: 1rem;
	transition: 0.4s;
}
.home__social-link:hover {
	background-color: var(--first-color);
	color: #fff;
}
.home__social::after {
	content: '';
	width: 32px;
	height: 2px;
	background-color: var(--first-color);
	transform: rotate(90deg) translate(16px, 3px);
}

.home__scroll {
	color: var(--first-color);
	right: -1.5rem;
	bottom: 4rem;
	display: grid;
	row-gap: 2.25rem;
	justify-items: center;
}
.home__scroll-icon {
	font-size: 1.5rem;
}
.home__scroll-name {
	font-size: var(--smaller-font-size);
	transform: rotate(-90deg);
}

/*=============== BUTTONS ===============*/

.button {
	display: inline-block;
	background-color: var(--first-color);
	color: var(--body-color);
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-weight: var(--font-medium);
	transition: 0.4s;
}
.buttom--download {
	background-color: transparent;
	border: 2px solid var(--first-color);
	color: var(--first-color);
}
.button:hover {
	background-color: var(--first-color-alt);
	color: var(--body-color);
}

/*=============== ABOUT ===============*/

.about__container {
	row-gap: 2.5rem;
}

.about__img {
	width: 320px;
	border-radius: 1.5rem;
	justify-self: center;
}

.about__data {
	text-align: center;
}

.about__info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	margin-bottom: 2rem;
}
.about__box {
	background-color: var(--container-color);
	border-radius: 0.75rem;
	padding: 0.75rem 0.5rem;
}
.about__icon {
	font-size: 1.5rem;
	color: var(--first-color);
	margin-bottom: 0.5rem;
}
.about__title {
	font-size: var(--small-font-size);
}
.about__subtitle {
	font-size: var(--tiny-font-size);
}

/* .about__description {
	
} */

.about__description span {
	display: inline-block;
	position: relative;
	font-size: 1.2rem; /* Adjust font size as needed */
	background: linear-gradient(to right, rgb(188, 187, 182), rgb(163, 8, 190));
	background-size: 200% 300%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	display: inline-block;
	font-weight: var(--font-medium);
	animation: colorRun 5s forwards; /* Run once and stop */
	animation-delay: calc(var(--i) * 0.5s); /* Delay based on word index */
}

@keyframes colorRun {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.about__box:hover {
	background-color: transparent;
	outline: 2px solid var(--first-color);
}

/*=============== SKILLS ===============*/

.skills__container {
	justify-content: center;
	grid-template-columns: 350px;
	row-gap: 2rem;
	padding-top: 1rem;
}
.skills__content {
	background-color: var(--container-color);
	padding: 1.5rem;
	border-radius: 1.25rem;
}

.skills__content:hover {
	background-color: transparent;
	outline: 2px solid var(--first-color);
}

.skills__title {
	font-size: var(--normal-font-size);
	font-weight: var(--font-medium);
	color: var(--first-color);
	text-align: center;
	margin-bottom: 1.5rem;
}
.skills__box {
	display: flex;
	justify-content: center;
	column-gap: 2.5rem;
}
.skills__group {
	display: grid;
	align-content: flex-start;
	row-gap: 1rem;
}
.skills__data {
	display: flex;
	column-gap: 0.5rem;
}
.skills .bxs-badge-check {
	font-size: 1rem;
	color: var(--first-color);
}
.skills__name {
	font-size: var(--normal-font-size);
	font-weight: var(--font-medium);
	line-height: 18px;
}
.skills__level {
	font-size: var(--tiny-font-size);
}

/*=============== SERVICES ===============*/

.services__container {
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	padding-top: 1rem;
}

.services__card {
	background-color: var(--container-color);
	padding: 3rem 1.5rem;
	border-radius: 1rem;
}

.services__card:hover {
	background-color: transparent;
	outline: 2px solid var(--first-color);
}
.services__title {
	font-size: var(--h3-font-size);
	margin-bottom: 2.5rem;
}
.services__button {
	color: var(--first-color);
	font-size: var(--small-font-size);
	display: flex;
	align-items: center;
	column-gap: 0.25rem;
	cursor: pointer;
}
.services__button:hover .services__icon {
	transform: translateX(0.25rem);
}

.services__icon {
	font-size: 1rem;
	transition: 0.4s;
}

/* Services modal */

.services__modal {
	position: fixed;
	inset: 0;
	/* background-color: hsla(var(--second-hue),28%,16%,.7); */
	background-color: hsla(0, 0%, 1%, 0.4);
	backdrop-filter: blur(10px);
	padding: 2rem 1rem;
	display: grid;
	place-items: center;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	z-index: var(--z-modal);
}

.services__modal-content {
	position: relative;
	background-color: var(--body-color);
	padding: 4.5rem 1.5rem 2.5rem;
	border-radius: 1.5rem;
}

.services__modal-title,
.services__modal-description {
	text-align: center;
}

.services__modal-title {
	font-size: var(--h3-font-size);
	color: var(--first-color);
	margin-bottom: 1rem;
}
.services__modal-description {
	font-size: var(--small-font-size);
	margin-bottom: 2rem;
}

.services__modal-list {
	display: grid;
	row-gap: 0.75rem;
}
.services__modal-item {
	display: flex;
	align-items: flex-start;
	column-gap: 0.5rem;
}
.services__modal-icon {
	font-size: 1.5rem;
	color: var(--first-color);
}
.services__modal-info {
	font-size: var(--small-font-size);
}
.services__modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: var(--first-color);
	cursor: pointer;
}

/*Active modal*/

.active-modal {
	opacity: 1;
	visibility: visible;
}

/*=============== WORK ===============*/

.work__container {
	padding-top: 1rem;
}
.work__filters {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem; /* Replaced column-gap with gap for both axes */
	margin-bottom: 2rem;
	cursor: pointer;
	flex-wrap: wrap; /* Allow wrapping on small screens */
}

.work__items {
	cursor: pointer;
	color: var(--title-color);
	padding: 0.25rem 0.75rem;
	font-weight: var(--font-medium);
	border-radius: 0.5rem;
}
/* apa */
/* apa */
.work__card {
	background-color: #ffffff; /* Fallback */
	padding: 1rem;
	position: relative;
	border-top-left-radius: 3rem;
	border-bottom-right-radius: 3rem;

	/* Gradient Border */
	border: 2px solid transparent;
	background: linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, #fc8f00, #4674c0) border-box;
}

.work__card:hover {
	background: linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, #fc8f00, #4674c0) border-box;
	border: 2px solid transparent;
	outline: none;
}
.work_title {
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #fc8f00, #4674c0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	text-transform: uppercase;
}

.work_subtitle {
	font-size: 14px;
	color: #666; /* Subtle gray for readability */
	margin-bottom: 20px; /* Space between subtitle and button */
}
/* .work__img {
	border-radius: 1rem;
	margin-bottom: 0.75rem;
} */
.work__img {
	border-top-left-radius: 2rem; /* Top-left corner */
	border-bottom-right-radius: 2rem; /* Bottom-right corner */
	margin-bottom: 0.75rem;
}
.work__title {
	font-size: var(--normal-font-size);
	font-weight: var(--font-medium);
	margin-bottom: 0.25rem;
}
.work_button i {
	background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 18px;
	margin-right: 8px;
}

.work_button {
	width: max-content;
	color: var(--first-color);
	font-size: var(--smaller-font-size);
	display: flex;
	align-items: center;
	column-gap: 0.25rem;
}

.work_button:hover .work__icon {
	transform: translateX(0.25rem);
}
.work__icon {
	font-size: 1rem;
	transition: 0.4s;
}

/* Active item work*/

.active-work {
	background: linear-gradient(135deg, #fc8f00, #4674c0);
	color: #fff;
}

/* Swiper class */

.swiper-pagination-bullet {
	background-color: var(--text-color);
}
.swiper-pagination-bullet-active {
	background-color: var(--first-color);
}

/*=============== CONTACT ===============*/

.contact__container {
	row-gap: 3rem;
	padding-bottom: 3rem;
	justify-content: center;
}
.contact__title {
	text-align: center;
	font-size: var(--h3-font-size);
	margin-bottom: 1.5rem;
}

.contact__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.contact__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

.contact__card {
	background-color: var(--container-color);
	padding: 2.5rem;
	border-radius: 0.75rem;
	text-align: center;
	border: 2px solid #fc8f00;
	/* min-width: 500px; removed for mobile responsiveness */
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
}
.contact__card:hover {
	background-color: transparent;
	outline: 2px solid var(--first-color);
}

.contact__card-icon {
	font-size: 2rem;
	color: var(--title-color);
	margin-bottom: 0.25rem;
}

.contact__card--title,
.contact__card-data {
	font-size: var(--small-font-size);
}

.contact__card-title {
	font-weight: var(--font-medium);
}

.contact__card-data {
	display: block;
	margin-bottom: 0.75rem;
}

.contact__button {
	color: var(--first-color);
	font-size: var(--small-font-size);
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.25rem;
	cursor: pointer;
}

.contact__button:hover .contact__button-icon {
	transform: translateX(0.25rem);
}

.contact__button-icon {
	font-size: 1rem;
	transition: 0.4s;
}

.contact__form-div {
	position: relative;
	margin-bottom: 2rem;
	height: 4rem;
}

.contact__form-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid var(--text-color);
	background: none;
	color: var(--text-color);
	outline: none;
	padding: 1.5rem;
	border-radius: 0.75rem;
	z-index: 1;
}

.contact__form-tag {
	position: absolute;
	top: -0.75rem;
	left: 1.25rem;
	font-size: var(--smaller-font-size);
	padding: 0.25rem;
	background-color: var(--body-color);
	z-index: 10;
}

.contact__form-area {
	height: 11rem;
}

.contact__form-area textarea {
	resize: none;
}

/*=============== FOOTER ===============*/

.footer {
	background-color: rgb(12, 11, 11);
	/* var(--first-color) */
}

.footer__container {
	padding: 2rem 0 6rem;
}

.footer__title,
.footer__link {
	color: #fff;
}

.footer__title {
	text-align: center;
	align-items: center;
	margin-bottom: 2rem;
}
.footer__list {
	display: flex;
	justify-content: center;
	column-gap: 1.5rem;
	margin-bottom: 2rem;
}
.footer__social {
	display: flex;
	justify-content: center;
	column-gap: 1.5rem;
}

.footer__social-link {
	background-color: var(--body-color);
	color: var(--first-color);
	padding: 0.25rem;
	border-radius: 0.25rem;
	font-size: 1rem;
	display: inline-flex;
}

.footer__copy {
	display: block;
	margin-top: 4.5rem;
	color: #a1a1a1;
	text-align: center;
	font-size: var(--smaller-font-size);
}

/*=============== SCROLL BAR ===============*/

::-webkit-scrollbar {
	width: 0.6rem;
	border-radius: 0.5rem;
	background-color: hsl(var(--second-hue, 8%, 38%));
}

::-webkit-scrollbar-thumb {
	background-color: hsl(var(--second-hue), 8%, 26%);
	border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
	background-color: hsl(var(--second-hue), 8%, 20%);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */

@media screen and (max-width: 992px) {
	.nav__menu {
		padding: 1rem 1.5rem;
	}

	.home__buttons {
		flex-direction: column;
	}

	.home__handle {
		width: 290px;
		height: 400px;
	}
	.home__img {
		width: 650px;
	}
	.skills__container {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5rem;
	}

	.about__info {
		grid-template-columns: repeat(2, 1fr);
	}

	.skills__box {
		column-gap: 1rem;
	}
	.skills__name {
		font-size: var(--small-font-size);
	}

	.services__container {
		grid-template-columns: repeat(2, 192px);
		column-gap: 3rem;
		justify-content: center;
	}

	.work__items {
		font-size: var(--small-font-size);
	}

	.work__filters {
		column-gap: 0.25rem;
	}
}

/* For medium devices */

@media screen and (min-width: 576px) {
	.nav__menu {
		width: 328px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.skills__container {
		grid-template-columns: 280px;
	}

	.about__info {
		grid-template-columns: repeat(3, 140px);
		justify-content: center;
	}
	.about__description {
		padding: 0 5rem;
	}

	.services__container {
		justify-content: center;
	}
	.skills__content {
		padding: 2rem 4rem;
	}

	.services__container {
		grid-template-columns: 2, 160px;
		justify-content: center;
	}

	.services__modal-content {
		width: 500px;
		padding: 4.5rem 2.5rem 2.5rem;
	}

	.services__modal-description {
		padding: 0 3.5rem;
	}

	.work__container {
		justify-content: center;
	}

	.work__img {
		width: 295px;
	}

	.services__container {
		grid-template-columns: repeat(2, 192px);
		column-gap: 3rem;
	}

	.contact__info {
		grid-template-columns: 1fr;
		justify-content: center;
	}

	.contact__form {
		width: 360px;
		margin: 0 auto;
	}

	.contact__card {
		min-width: 500px;
	}
	.testimonial__card {
		height: auto;
	}
}

@media screen and (min-width: 767px) {
	.work__container {
		grid-template-columns: repeat(2, max-content);
	}
	.services__container {
		grid-template-columns: repeat(2, 192px);
		column-gap: 3rem;
	}

	.contact__container {
		display: flex;
		justify-content: center;
		column-gap: 3rem;
	}
	.skills__container {
		grid-template-columns: repeat(2, 350px);
		column-gap: 3rem;
	}

	.testimonial__card {
		height: auto;
	}
}

/* For large devices */

@media screen and (min-width: 992px) {
	.container {
		margin-left: auto;
		margin-right: auto;
	}
	.section {
		padding: 6.5rem 0 1rem;
	}

	.section__title {
		margin-bottom: 3.5rem;
	}

	.nav {
		height: calc(var(--header-height) + 1rem);
	}

	.home__handle {
		width: 290px;
		height: 400px;
	}

	.home__img {
		width: 650px;
	}
	.home__social-link {
		padding: 0.4rem;
		font-size: 1.25rem;
	}
	.home__social::after {
		transform: rotate(90deg) translate(16px, 0);
	}
	.home__scroll-icon {
		font-size: 2rem;
	}

	.about__container {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		column-gap: 4rem;
	}

	.about__img {
		width: 350px;
	}

	.about__data {
		text-align: initial;
	}
	.about__info {
		justify-content: initial;
	}
	.about__box {
		text-align: center;
		padding: 1rem 1.25rem;
	}

	.about__description {
		padding: 0 4rem 0 0;
		margin-bottom: 2.5rem;
	}

	.services__container {
		grid-template-columns: repeat(3, 192px);
		column-gap: 3rem;
	}

	.services__card {
		padding: 5rem 2rem 1.5rem;
	}

	.work__container {
		grid-template-columns: repeat(2, max-content);
		gap: 3rem;
	}
	.work__card {
		width: 300px;
		padding: 1.25rem;
		position: relative;
	}
	.work__card:active {
		transform: scale(0.98);
		transition: transform 0.2s ease-in-out;
	}

	.work__img {
		margin-bottom: 1rem;
	}
	.work__title {
		margin-bottom: 0.5rem;
	}

	.testimonial__container {
		width: 950px;
	}
	.testimonial__card {
		padding: 1.5rem 2rem;
	}

	.contact__container {
		column-gap: 6rem;
	}
	.footer__social-link {
		font-size: 1.25rem;
		padding: 0.4rem;
		border-radius: 0.5rem;
	}
}

@media screen and (min-width: 1124px) {
	.work__container {
		grid-template-columns: repeat(3, max-content);
		gap: 2rem;
	}
}

input {
	caret-color: var(--first-color);
}

/*=============== EDUCATION ===============*/
.education__container {
	justify-content: center;
	gap: 2rem;
}

.education__card {
	padding: 1.5rem 2rem;
	border-radius: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.education__card-1 {
	background: linear-gradient(180deg, #d4d4d8 0%, #f4f4f5 100%);
}

.education__card-2 {
	background-color: #ffffff;
}

.education__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.education__year {
	background-color: #000000;
	color: #fc8f00;
	padding: 0.4rem 1rem;
	border-radius: 2rem;
	font-size: var(--small-font-size);
	font-weight: var(--font-medium);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.education__status {
	background-color: #ffffff;
	color: #000;
	padding: 0.4rem 1rem;
	border-radius: 2rem;
	font-size: var(--small-font-size);
	font-weight: var(--font-medium);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.education__status.post-grad {
	background-color: #ffedd5;
}

.education__tags {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.education__tag {
	background-color: #ffffff;
	color: #000;
	padding: 0.25rem 1rem;
	border-radius: 2rem;
	font-size: var(--small-font-size);
	font-weight: var(--font-semibold);
}
.education__card-2 .education__tag {
	background-color: #e5e5e5;
}

.education__degree-title {
	font-size: var(--h3-font-size);
	font-weight: 800; /* Extra bold as per design */
	color: #000;
	margin-bottom: 2rem;
	line-height: 1.3;
}

.education__data {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.education__data-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.education__icon-box {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #fc8f00, #4674c0);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.education__icon {
	font-size: 1.2rem;
	color: #fff;
}

.education__text {
	font-size: var(--normal-font-size);
	color: #1f2937;
	font-weight: 500;
}

@media screen and (max-width: 968px) {
	.education__container {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (min-width: 968px) {
	.education__container {
		grid-template-columns: repeat(2, 450px);
	}
}

/*=============== SKILLS NEW DESIGN ===============*/
.skills__container-new {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding-bottom: 2rem;
}

.skills__container-new .section__title {
	margin-bottom: 0.5rem;
}

.skills__outlined-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: transparent;
	-webkit-text-stroke: 1px #fc8f00; /* Yellow outline */
	text-align: center;
	opacity: 0.4;
	margin-bottom: -2rem; /* Overlap slightly */
	z-index: 0;
	letter-spacing: 2px;
}

.skills__section-title {
	font-size: 1.25rem; /* Reduced from var(--h1-font-size) (~2.25rem) */
	color: #fc8f00;
	text-align: center;
	margin-bottom: 1rem;
	position: relative;
	/* text-transform: uppercase; */
}

.skills__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 900px;
	margin: 0 auto;
}

.skill-pill {
	background-color: #ffffff;
	border-radius: 50px;
	padding: 0.6rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	transition: transform 0.3s;
	cursor: default;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skill-pill:hover {
	transform: translateY(-5px);
}

.skill-pill i {
	font-size: 1.5rem;
}

.skill-pill span {
	color: #000;
	font-weight: 600;
	font-size: var(--normal-font-size);
}

/* Icon Colors */
.fa-html5 {
	color: #e34f26;
}
.fa-css3-alt {
	color: #1572b6;
}
.fa-js {
	color: #f7df1e;
}
.fa-react {
	color: #61dafb;
}
.fa-laravel {
	color: #ff2d20;
}
.fa-google {
	color: #4285f4;
} /* Flutter */
.fa-git-alt {
	color: #f05032;
}
.fa-github {
	color: #333;
}
.fa-gitlab {
	color: #fc6d26;
}
.fa-figma {
	color: #f24e1e;
}
.fa-invision {
	color: #ff3366;
}
.bx-data {
	color: #ffa000;
}
.bxl-flutter {
	color: #42a5f5;
}
.bxl-firebase {
	color: #ffca28;
}
.bxl-visual-studio {
	color: #0078d7;
}

.skills__resume-btn {
	background: linear-gradient(135deg, #fc8f00, #4674c0);
	color: #fff;
	padding: 0.8rem 2.5rem;
	border-radius: 50px;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	transition: 0.3s;
	border: none;
}

.skills__resume-btn:hover {
	transform: scale(1.05);
	opacity: 0.9;
}

/*=============== HOME NEW DESIGN ===============*/
.home__container-new {
	text-align: center;
	padding-top: 2rem;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.home__hand-icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 0.5rem;
	animation: wave 2.5s infinite;
	transform-origin: 70% 70%;
}

@keyframes wave {
	0% {
		transform: rotate(0deg);
	}
	10% {
		transform: rotate(14deg);
	}
	20% {
		transform: rotate(-8deg);
	}
	30% {
		transform: rotate(14deg);
	}
	40% {
		transform: rotate(-4deg);
	}
	50% {
		transform: rotate(10deg);
	}
	60% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

.home__title-new {
	font-size: 4.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.home__title-yellow {
	color: #fc8f00;
}

.home__subtitle-new {
	font-size: 1.5rem;
	color: #e5e5e5;
	margin-bottom: 0.5rem;
}

.home__exp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	color: #a3a3a3;
	font-size: 1.2rem;
}

.home__exp-pill {
	background-color: #27272a; /* Dark gray pill */
	color: #fc8f00;
	padding: 0.2rem 0.8rem;
	border-radius: 20px;
	font-weight: bold;
	font-size: 1.1rem;
}

.home__buttons-new {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	margin-bottom: 8rem;
}

.btn-new {
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: 0.3s;
}

.btn-outline-yellow {
	border: 1px solid #fc8f00;
	color: #fc8f00;
	background: transparent;
}
.btn-outline-yellow:hover {
	background: rgba(251, 191, 36, 0.1);
}

.btn-solid-yellow {
	background: linear-gradient(135deg, #fc8f00, #4674c0);
	color: #fff;
	border: none;
}
.btn-solid-yellow:hover {
	opacity: 0.9;
}

/* Home Image & Floating Pills Area */
.home__visual-area {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
	height: 450px; /* Space for image and floating elements */
}

.home__bg-blob {
	position: absolute;
	width: 350px;
	height: 350px;
	background: #fc8f00;
	border-radius: 50%;
	z-index: 0;
	filter: blur(40px);
	opacity: 0.2; /* Subtle glow behind */
}

.home__bg-circle {
	position: absolute;
	width: 380px;
	height: 380px;
	background-color: #fc8f00;
	border-radius: 50%;
	z-index: 1;
	bottom: 0;
}

.home__img-main {
	position: relative;
	z-index: 2;
	width: 380px; /* Adjust based on actual image ratio */
	bottom: 0px;
	border-radius: 500px; /* Fully circular/pill shape */
}

/* Floating Pills */
.float-pill {
	position: absolute;
	background: #fff;
	color: #000;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 3;
	animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Positioning the pills around the central image */
.fp-1 {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}
.fp-2 {
	top: 15%;
	right: 10%;
	animation-delay: 1s;
}
.fp-3 {
	bottom: 25%;
	left: 5%;
	animation-delay: 2s;
}
.fp-4 {
	bottom: 30%;
	right: 5%;
	animation-delay: 1.5s;
}
.fp-5 {
	bottom: 10%;
	right: 20%;
	animation-delay: 0.5s;
} /* Figma/etc */
.fp-6 {
	bottom: 10%;
	left: 20%;
	animation-delay: 2.5s;
}

/* Responsive adjustments for Home */
@media screen and (max-width: 768px) {
	.home__container-new {
		padding: 0 1.5rem;
		overflow-x: clip; /* Prevent horizontal scrollbar from animations */
	}

	.home__visual-area {
		height: 380px;
		transform: scale(0.9); /* Scale down slightly to ensure fit */
	}
	.home__bg-circle,
	.home__bg-blob {
		width: 250px;
		height: 250px;
	}
	.home__img-main {
		width: 250px;
	}
	.float-pill {
		transform: scale(
			0.85
		); /* Slightly larger than 0.8 for readability, but positioned better */
		padding: 0.4rem 0.8rem;
		white-space: nowrap;
	}
	.fp-1 {
		top: 0%;
		left: 0%;
	}
	.fp-2 {
		top: 0%;
		right: 0%;
	}
	.fp-3 {
		bottom: 25%;
		left: -10px; /* Slight negative allowed if container has padding, but kept safe */
	}
	.fp-4 {
		bottom: 25%;
		right: -10px;
	}
	.fp-5 {
		bottom: 5%;
		right: 10%;
	}
	.fp-6 {
		bottom: 5%;
		left: 10%;
	}
}

/*=============== ABOUT NEW DESIGN ===============*/
.about__container-new {
	margin: 0 auto;
	padding: 3rem;
	background: linear-gradient(
		135deg,
		#ff9900 0%,
		#5b7fff 100%
	); /* Orange to Blue gradient */
	border-radius: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__top-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

/* Common Card Styles for Glass effect */
.about__interest-card,
.about__stat-card {
	background: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 2rem;
	padding: 2.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.about__interest-card:hover,
.about__stat-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.65);
}

/* Left: Interest Card Specifics */
.about__section-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: #000; /* Dark text for contrast */
	margin-bottom: 1.5rem;
}
.about__section-label img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: none;
}

.about__pill-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.about__pill {
	background: #fff;
	color: #000;
	padding: 0.4rem 0.9rem;
	border-radius: 50px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Stats Cards (Middle & Right) override/specifics */
.about__stat-card {
	aspect-ratio: auto; /* Allow flexible height */
	height: 100%;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	color: #000; /* Black number for strong contrast on glass */
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

/* Description Card (Bottom) */
.about__bio-card {
	background: #1a1a1a;
	border-radius: 1.5rem;
	padding: 2rem;
	color: #d1d5db; /* Light gray text */
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 2rem;
}

.about__contact-btn-wrapper {
	display: flex;
	justify-content: center;
}

.btn-contact-outline {
	border: 1px solid #fff;
	color: #fff;
	padding: 0.8rem 2.5rem;
	border-radius: 50px;
	font-weight: 600;
	background: transparent;
	transition: 0.3s;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.btn-contact-outline:hover {
	background: #fff;
	color: #000;
}

@media screen and (max-width: 768px) {
	.about__container-new {
		padding: 1.5rem; /* Reduced padding for mobile */
		border-radius: 1.5rem; /* Smaller radius */
		margin: 0 1rem; /* Add side margins so it doesn't touch the edges */
	}
	.about__top-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.about__stat-card {
		aspect-ratio: auto;
		padding: 1.5rem; /* Reduced padding */
	}
	.about__section-label {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.stat-number {
		font-size: 2.5rem;
	}
	/* Override inline styles for the title to fit mobile */
	.skills__outlined-title {
		font-size: 3rem !important;
		margin-bottom: -1.2rem !important;
	}
	.home__title-new {
		font-size: 2.5rem;
	}
	.about__bio-card {
		padding: 1.5rem;
		text-align: left; /* Justify can cause weird gaps on narrow screens */
	}
}
