:root {
	--primary: #ff7a57;
	--secondary: #6c757d;
	--success: #A3C14A;
	--danger: #F85C70;
	--light: #f8f9fa;
	--dark: #343a40;
	--gray: #6c757d;
	--border: #dee2e6;
}

*, ::after, ::before {
	box-sizing: border-box;
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
}

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary);
	color: white;
	padding: 8px;
	text-decoration: none;
	z-index: 100;
}

.skip-link:focus {
	top: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1200 - 320)));
	letter-spacing: .6px;
}

a {
	color: var(--primary);
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	color: #ff3d0b;
	text-decoration: underline;
}

img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
	height: auto;
}

button {
	border-radius: 0;
	cursor: pointer;
}

button, input, textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width:576px) { .container { max-width: 540px; } }
@media (min-width:768px) { .container { max-width: 720px; } }
@media (min-width:992px) { .container { max-width: 960px; } }
@media (min-width:1200px) { .container { max-width: 1140px; } }

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

[class*=col-] {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width:576px) {
	.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width:768px) {
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.33333%; max-width: 33.33333%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-9 { flex: 0 0 75%; max-width: 75%; }
}

#skills .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

#skills .skill-container:nth-child(5) {
	margin-left: auto;
	margin-right: auto;
}

@media (min-width:576px) {
	#skills .skill-container {
		flex: 0 0 50%;
		max-width: 50%;
	}

	#skills .skill-container:nth-child(5) {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + 1.3rem + 2px);
	padding: .65rem .9rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, transform .2s ease;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #ffdfd7;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(255, 122, 87, .25);
	transform: translateY(-2px);
}

textarea.form-control {
	height: auto;
}

.form-group {
	margin-bottom: 1rem;
	position: relative;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 46px;

  padding: 0 26px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  border-radius: 999px;
  border: none;

  cursor: pointer;
  white-space: nowrap; /* 🔥 prevents text cut */

  position: relative;
  overflow: hidden;

  transition: all 0.3s ease;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn:active {
	transform: translateY(-1px);
}

.btn:focus {
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(255, 122, 87, .25);
}

.btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 100%;
	background: rgba(255, 255, 255, 0.5);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:active::after {
	width: 300px;
	height: 300px;
}

.btn-primary {
  padding: 0 50px; /* smaller width */
  background: #ff7a4d;
  color: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(255, 122, 87, 0.7);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(255, 122, 87, 0);
	}
}

.btn-primary:hover {
  background-color: #ff5c31;
  border-color: #ff5224;
  animation: none;
}

.btn-dark {
  padding: 0 90px; /* larger width */
  background: #2f3438;
  color: #fff;
}

.btn-dark:hover {
  background-color: #23272b;
  border-color: #1d2124;
}

.btn.rounded {
	border-radius: 50px !important;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn.w-lg {
	min-width: 160px;
}

.navbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	min-height: 80px;
	background: #fff;
	transition: all .3s ease;
	animation: slideDown 0.5s ease;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.navbar-brand img {
	width: 75px;
	filter: drop-shadow(1px 2px 25px rgba(206, 212, 218, .9));
	transition: transform 0.3s ease;
}

.navbar-brand:hover img {
	transform: rotate(360deg) scale(1.1);
}

.navbar-nav {
	display: flex;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.navbar-nav .nav-link {
	display: block;
	padding: .5rem 1rem;
	font-size: 13px;
	font-weight: 700;
	margin: 0 10px;
	transition: all .3s ease;
	position: relative;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
	width: 80%;
}

.navbar-nav .nav-link:hover {
	color: var(--primary);
	transform: translateY(-2px);
}

.navbar.affix {
	box-shadow: 0 6px 15px rgba(206, 212, 218, .3);
}

.navbar-hidden {
	top: -100px;
}

.navbar-toggler {
	padding: .25rem .75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: .25rem;
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	content: "";
	background: no-repeat center center;
	background-size: 100% 100%;
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
}

.collapse:not(.show) {
	display: none;
}

@media (min-width:992px) {
	.navbar-expand-lg {
		flex-flow: row nowrap;
		justify-content: flex-start;
	}

	.navbar-expand-lg .navbar-nav {
		flex-direction: row;
	}

	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem;
	}

	.navbar-expand-lg .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
	}

	.navbar-expand-lg .navbar-toggler {
		display: none;
	}
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: .25rem;
	box-shadow: 2px 3px 10px rgba(206, 212, 218, .3);
	opacity: 1;
	transform: translateY(0);
}

.card-body {
	flex: 1 1 auto;
	padding: 1.25rem;
}

.custom-card {
	border-radius: .25rem;
	transition: all .3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.custom-card .card-body {
	padding: 55px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.custom-card .card-body i {
	display: block;
	font-size: 40px;
	margin-bottom: 18px;
	color: var(--primary);
	transition: all 0.3s ease;
}

.custom-card .card-body h5 {
	margin-bottom: 15px;
	font-weight: 600;
}

.custom-card .card-body p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.6;
}

.custom-card:hover,
.custom-card:active {
	background: var(--primary);
	color: #fff;
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 10px 30px rgba(255, 122, 87, 0.3);
}

.custom-card:hover i,
.custom-card:active i {
	color: #fff;
	animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
	0%, 100% { transform: translateY(0); }
	25% { transform: translateY(-10px); }
	50% { transform: translateY(0); }
	75% { transform: translateY(-5px); }
}
/* 1. THE CONTAINER */
.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(800px);
    animation: powerSlideBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* WORKAROUND PART 1: The Wrapper handles the Floating */
.floating-wrapper {
    display: inline-block;
    animation: float 1.2s ease-in-out infinite;
}
/* Adjusted staggered delays to match the faster speed */
.floating-wrapper:nth-child(1) { animation-delay: 0.2s; }
.floating-wrapper:nth-child(2) { animation-delay: 0.4s; }
.floating-wrapper:nth-child(3) { animation-delay: 0.6s; }

/* ... (Keep your social-item and hover code the same) ... */
/* Stop floating for ALL wrappers when the mouse is anywhere near the social area */
.socials:hover .floating-wrapper {
    animation-play-state: paused;
}


/* UPDATED ANIMATION */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* WORKAROUND PART 2: The Item handles the Growing */
.socials .social-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Grow purely on the item */
.socials .social-item:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.5);
    box-shadow: 0 10px 25px rgba(255, 122, 87, 0.45);
}

/* WORKAROUND PART 3: The Icon handles the Spinning */
.socials .social-item i {
    display: inline-block;
}

.socials .social-item:hover i {
    animation: spin 0.4s linear;
}

/* ANIMATIONS
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
*/
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.img-wrapper {
	position: relative;
	border-radius: .25rem;
	overflow: hidden;
	margin-bottom: 30px;
	display: block;
	opacity: 1;
	transform: scale(1);
}

@keyframes zoomIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.img-wrapper img {
	position: relative;
	width: 100%;
	z-index: 8;
	transition: transform 0.5s ease;
}

.img-wrapper:hover img {
	transform: scale(1.1);
}

.overlay {
	background: rgba(255, 122, 87, .7);
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	height: 100%;
	z-index: 9;
	visibility: hidden;
	opacity: 0;
	transition: all .4s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.img-wrapper:hover .overlay,
.img-wrapper:active .overlay {
	bottom: 0;
	visibility: visible;
	opacity: 1;
}

.overlay-infos {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s;
	transition-delay: .2s;
	color: #fff;
	text-align: center;
}

.img-wrapper:hover .overlay-infos,
.img-wrapper:active .overlay-infos {
	top: 50%;
}

.overlay-infos h5 {
	margin-bottom: 15px;
}

.overlay-infos a {
	display: inline-block;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 2px solid #fff;
	line-height: 35px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.overlay-infos a:hover {
	background: #fff;
	color: var(--primary);
	transform: scale(1.2) rotate(360deg);
}

.contact {
	position: relative;
	border-radius: .3rem;
	border: 1px solid #dee2e6;
	box-shadow: 1px 2px 6px rgba(173, 181, 189, .5);
	padding: 30px;
	max-width: 800px;
	margin: 0 auto 150px;
	z-index: 99;
	background: #fff;
}

.contact .form {
	width: 100%;
}

.contact .form form {
	margin-top: 30px;
}

.contact .contact-infos {
	display: none;
}

@media (max-width:991.98px) {
	.contact {
		padding: 20px;
	}
}

#map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

#map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	opacity: 0.6;
}

.header {
	height: 94vh;
	min-height: 650px;
	border-bottom: 1px solid #dee2e6;
	position: relative;
}

.header .container {
	height: 100%;
	display: flex;
	align-items: center;
}

.header .infos {
	margin-top: 0px;
}

.header .infos .subtitle {
	margin-bottom: 0;
	font-size: 25px;
	font-weight: 500;
	opacity: 1;
}

.header .infos .title {
	margin-bottom: 0;
	font-size: 50px;
	font-weight: 700;
	white-space: nowrap;
	opacity: 1;
}

.header .infos p {
	margin-top: -1px;
	font-size: 20px;
	opacity: 1;
}

.header .infos .buttons {
	opacity: 1;
}

.header .img-holder {
	height: 100%;
	align-self: flex-end;
	flex-grow: 1;
	display: flex;
	align-items: flex-end;
}

.header .img-holder img {
	width: 100%;
	max-width: 620px;
	filter: drop-shadow(0 -4px 20px rgba(206, 212, 218, .4));
	margin-left: auto;
	margin-right: -2rem;
}

.header .widget {
	position: relative;
	max-width: 650px;
	width: 95%;
	margin: 0 auto;
	border-radius: 50px;
	display: flex;
	border: 1px solid #dee2e6;
	padding: 20px 0;
	margin-top: -50px;
	z-index: 999;
	background: #fff;
	box-shadow: 0 0 30px rgba(173, 181, 189, .4);
	opacity: 1;
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.header .widget .widget-item {
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	border-right: 1px solid #dee2e6;
}

.header .widget .widget-item:last-child {
	border-right: 0;
}

.header .widget .widget-item h2,
.header .widget .widget-item p {
	margin: 0;
}

.header .widget .widget-item p {
	opacity: .7;
	font-size: 14px;
}

@media (max-width:991.98px) {
	.header .container {
		justify-content: center;
	}

	.header .infos {
		margin-top: 0;
	}

	.header .img-holder {
		display: none;
	}
}

@media (max-width:768px) {
	.header .infos .title {
		font-size: 35px;
	}
}

@media (max-width:767.98px) {
	.header .widget {
		padding: 10px;
		margin-top: -32px;
	}

	.header .widget .widget-item h2 {
		font-size: 20px;
	}

	.header .widget .widget-item p {
		font-size: 13px;
	}
}

.section {
	position: relative;
	padding: 5rem 0;
	opacity: 1;
	transform: translateY(0);
}

.section:nth-child(even) {
	background: #fff;
}

.subtitle {
	font-size: calc(13px + (15 - 13) * ((100vw - 320px) / (1200 - 320)));
	opacity: .8;
}

.section-title {
	font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1200 - 320)));
}

.skill-container {
	padding-bottom: 20px;
	opacity: 1;
	transform: translateX(0);
}

@keyframes slideInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.skill-container h6 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--primary);
}

.progress {
	position: relative;
	margin-bottom: 10px;
	height: 30px;
	background-color: #eaf0fc;
	border-radius: .25rem;
	overflow: hidden;
}

.progress-bar {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	font-weight: 700;
	background-color: var(--primary) !important;
	line-height: 1;
	padding: 0;
	transition: width 1s ease;
}

.progress-bar.filled {
	animation: progressPulse 0.5s ease;
}

@keyframes progressPulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(255, 122, 87, 0.7);
	}
	50% {
		box-shadow: 0 0 0 10px rgba(255, 122, 87, 0);
	}
}

.progress-bar.bg-primary {
	background: linear-gradient(90deg, var(--primary), #ff5c31) !important;
}

.progress-bar span,
.progress-bar .skill-text {
	color: #fff !important;
	font-weight: 700;
	z-index: 2;
	font-size: 15px;
	line-height: 1;
}

.skill-container .progress-bar {
	width: 0;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, .4);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 600px;
	position: relative;
	border-radius: 10px;
	animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
	from {
		transform: translateY(-100px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.close-btn {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: 700;
	background: transparent;
	border: none;
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	transition: all 0.3s ease;
}

.close-btn:hover {
	color: #000;
	transform: rotate(90deg);
}

.page-footer {
	background: #fcfdff;
}

.page-footer .row {
	height: 100px;
	align-items: center;
}

.page-footer p {
	margin-bottom: 0;
}

.page-footer .socials {
	max-width: 210px;
	margin-left: auto;
}

@media (max-width:767.98px) {
	.page-footer {
		padding: 20px 0;
	}

	.page-footer .row {
		text-align: center;
		height: auto;
	}

	.page-footer .socials {
		margin: auto;
	}
}

#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	top: 0;
	left: 0;
}

.animated-background {
	background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #91eae4);
	background-size: 800% 800%;
	animation: gradient 15s ease infinite;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: .2;
}

@keyframes gradient {
	0% { background-position: 0 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0 50%; }
}

.img-thumbnail {
	padding: .25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: .25rem;
	max-width: 100%;
	height: auto;
}
.header .infos {

  align-items: center;
  gap: 2px;
  margin-bottom: 1px;
}
.buttons {

  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 1px;
}

@media (max-width: 576px) {
    .header .infos .buttons .btn {
        width: 100%; /* Makes buttons full width on phone */
        margin-bottom: 10px; /* Adds space when they stack */
    }
}
/* --- THE SUPER FAST REVEAL WITH BOUNCE --- */
.reveal-text {
    opacity: 0;
    transform: translateY(800px);
    animation: powerSlideBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes powerSlideBounce {
    0% {
        opacity: 0;
        transform: translateY(800px);
    }
    70% {
        transform: translateY(-25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.infos .subtitle { animation-delay: 0.2s; }
.infos .title    { animation-delay: 0.5s; }
.infos p         { animation-delay: 0.7s; }
.infos .buttons  { animation-delay: 0.9s; }
.socials         { animation-delay: 1.1s; }
/* Utility Classes */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-md-left { text-align: left !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.m-0 { margin: 0 !important; }
.mt-3, .my-3 { margin-top: 1rem !important; }
.mt-4, .my-4 { margin-top: 1.5rem !important; }
.mt-5, .my-5 { margin-top: 3rem !important; }
.mb-3, .my-3 { margin-bottom: 1rem !important; }
.mb-4, .my-4 { margin-bottom: 1.5rem !important; }
.mb-5, .my-5 { margin-bottom: 3rem !important; }
.ml-auto { margin-left: auto !important; }
.p-0 { padding: 0 !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.pl-md-4 { padding-left: 1.5rem !important; }
.position-relative { position: relative !important; }
.fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; }
.border { border: 1px solid #dee2e6 !important; }
/* ══════════════════════════════════════════════════════
   RESPONSIVE — mobile/desktop switching
   ══════════════════════════════════════════════════════ */

/* Hide mobile elements on desktop (≥576px) */
@media (min-width: 576px) {
    .about-mobile { display: none !important; }
    .svc-mobile   { display: none !important; }
    .skill-mobile { display: none !important; }
    .port-mobile  { display: none !important; }
}

/* Hide desktop elements on mobile (<576px) */
@media (max-width: 575.98px) {
    .about-desktop { display: none !important; }
    .svc-desktop   { display: none !important; }
    .skill-desktop { display: none !important; }
    .port-desktop  { display: none !important; }
}

/* ── About mobile ── */
.about-mobile { display: flex; flex-direction: column; }
.about-mobile-top { display: flex; align-items: center; gap: 14px; }
.about-mobile-img { width: 85px; height: 85px; object-fit: cover; object-position: top; border-radius: 10px; border: 2px solid var(--primary); flex-shrink: 0; }
.about-mobile-meta .title    { font-size: 18px !important; font-weight: 700; white-space: normal !important; }
.about-mobile-meta .subtitle { font-size: 13px; color: var(--primary); }

/* ── Service mobile ── */
.svc-mobile { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.svc-list-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1.5px solid rgba(255,122,87,0.15); border-radius: 12px; padding: 14px; cursor: pointer; transition: all 0.25s; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.svc-list-card:active { background: var(--primary); }
.svc-list-card:active .svc-list-icon,
.svc-list-card:active .svc-list-name,
.svc-list-card:active .svc-list-desc { color: #fff; }
.svc-list-icon { width: 44px; height: 44px; background: rgba(255,122,87,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); flex-shrink: 0; }
.svc-list-name { font-size: 13px; font-weight: 700; color: #222; margin-bottom: 3px; }
.svc-list-desc { font-size: 12px; color: #888; line-height: 1.4; margin: 0; }

/* ── Skills accordion mobile ── */
.skill-mobile { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.acc-item { background: rgba(255,122,87,0.03); border: 1px solid rgba(255,122,87,0.15); border-radius: 10px; overflow: hidden; }
.acc-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--primary); margin: 0; }
.acc-arrow { font-size: 11px; color: var(--primary); }
.acc-body { padding: 0 14px 12px; }

/* ── Portfolio carousel mobile ── */
.port-mobile { width: 100%; overflow: hidden; }
.port-track  { display: flex; transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.port-page   { flex: 0 0 100%; min-width: 100%; box-sizing: border-box; padding: 0 4px; }
.port-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.port-card   { display: flex; flex-direction: column; }
.port-card .img-wrapper { width: 100%; border-radius: 8px; overflow: hidden; margin-bottom: 0 !important; }
.port-card .img-wrapper img { width: 100%; height: 110px; object-fit: contain; display: block; background: #f8f8f8; }
.port-label  { font-size: 11px; font-weight: 700; color: #444; text-align: center; margin: 6px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.port-dots   { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.port-dot    { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,122,87,0.25); border: none; padding: 0; cursor: pointer; transition: all 0.3s; -webkit-appearance: none; }
.port-dot.active { width: 24px; border-radius: 4px; background: var(--primary); }
.port-hint   { text-align: center; font-size: 11px; color: rgba(255,122,87,0.55); margin: 8px 0 0; }