
:root {
	--dark-blue: #0a192f;
	--medium-blue: #112240;
	--light-blue: #233554;
	--accent: #64ffda;
	--white: #e6f1ff;
	--light-gray: #8892b0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background-color: var(--dark-blue);
	color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header & Navigation */
header {
	background-color: rgba(10, 25, 47, 0.95);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding: 20px 0;
	backdrop-filter: blur(10px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
	display: flex;
	align-items: center;
}

.logo::before {
	content: '<';
	color: var(--accent);
	font-weight: 300;
}

.logo::after {
	content: '/>';
	color: var(--accent);
	font-weight: 300;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
	position: relative;
}

.nav-links a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s;
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a:hover {
	color: var(--accent);
}

/* Active navigation link styles */
.nav-links li.active a {
	color: var(--accent);
}

.nav-links li.active a::before {
	width: 100%;
}

.nav-links li.active {
	position: relative;
}

.nav-links li.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--accent);
}

/* Mobile Navigation */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--accent);
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1001;
}

.nav-links.active {
	display: flex !important;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: rgba(10, 25, 47, 0.98);
	backdrop-filter: blur(10px);
	padding: 20px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-links.active li {
	margin: 10px 0;
	text-align: center;
}

.nav-links.active a {
	padding: 10px 20px;
	display: block;
	font-size: 1.1rem;
}

/* Hero Section */
.hero {
	padding: 180px 0 100px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('images/03-laptop.jpg') no-repeat center center/cover;
	opacity: 0.2;
	clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
	max-width: 700px;
	margin-left: 50px;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 20px;
	line-height: 1.1;
}

.typed-text {
	color: var(--accent);
	vertical-align: top;
	line-height: 1em;
	position: relative;
	display: inline-block;
	min-width: 0ch;
}

.typed-text::after {
	content: '|';
	position: absolute;
	right: -10px;
	color: var(--accent);
	animation: blink 0.7s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

.hero h2 {
	font-size: 2.5rem;
	color: var(--light-gray);
	margin-bottom: 30px;
}

.hero p {
	max-width: 600px;
	margin-bottom: 40px;
	color: var(--light-gray);
	font-size: 1.1rem;
	line-height: 1.8;
}

.btn {
	display: inline-block;
	padding: 15px 35px;
	background-color: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: rgba(100, 255, 218, 0.1);
	transition: all 0.3s;
	z-index: -1;
}

.btn:hover::before {
	width: 100%;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
}

/* Sections */
section {
	padding: 100px 0;
}

.section-title {
	margin-bottom: 80px;
	position: relative;
	display: flex;
	align-items: center;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--white);
	display: inline-block;
	margin-right: 20px;
}

.section-title::after {
	content: '';
	display: block;
	width: 300px;
	height: 1px;
	background-color: var(--light-blue);
	margin-left: 20px;
}

/* About Me Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-text {
	position: relative;
}

.about-intro {
	margin-bottom: 25px;
	position: relative;
}

.about-intro h3 {
	font-size: 1.8rem;
	color: var(--accent);
	margin-bottom: 10px;
	font-weight: 600;
}

.accent-line {
	width: 60px;
	height: 3px;
	background: var(--accent);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 25px;
	color: var(--light-gray);
	line-height: 1.8;
	position: relative;
}

.about-text .highlighted {
	background: rgba(100, 255, 218, 0.05);
	padding: 20px;
	border-left: 3px solid var(--accent);
	border-radius: 0 5px 5px 0;
	margin-bottom: 30px;
}

.timeline-item {
	display: flex;
	margin-bottom: 30px;
	position: relative;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 30px;
	bottom: -30px;
	width: 2px;
	background: rgba(100, 255, 218, 0.3);
}

.timeline-item:last-child::before {
	display: none;
}

.timeline-marker {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--dark-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
	z-index: 1;
}

.timeline-content {
	flex: 1;
}

.passion-statement {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 25px;
	border-radius: 8px;
	position: relative;
	margin-top: 20px;
	border: 1px solid rgba(100, 255, 218, 0.1);
}

.quote-icon {
	position: absolute;
	top: -15px;
	left: 20px;
	width: 30px;
	height: 30px;
	background: var(--accent);
	color: var(--dark-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.passion-statement p {
	margin-bottom: 0;
	font-style: italic;
	padding-left: 20px;
}

/* Enhanced Profile Image Styles */
.about-image {
	position: relative;
	text-align: center;
	perspective: 1000px;
}

.image-container {
	position: relative;
	display: inline-block;
	border-radius: 15px;
	transform-style: preserve-3d;
	transition: transform 0.5s ease;
}

.about-image img {
	width: 100%;
	max-width: 380px;
	height: 380px;
	object-fit: cover;
	border-radius: 15px;
	position: relative;
	z-index: 2;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transition: all 0.5s ease;
	filter: grayscale(0.2) contrast(1.1);
}

/* Floating elements */
.floating-element {
	position: absolute;
	width: 50px;
	height: 50px;
	background: var(--medium-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.2rem;
	z-index: 3;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	animation: float 6s ease-in-out infinite;
	border: 2px solid rgba(100, 255, 218, 0.3);
}

.element-1 {
	top: -15px;
	right: -15px;
	animation-delay: 0s;
}

.element-2 {
	bottom: 30px;
	left: -20px;
	animation-delay: 2s;
}

.element-3 {
	top: 50%;
	right: -20px;
	animation-delay: 4s;
}

@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-15px) rotate(10deg); }
}

/* Decorative border */
.decorative-border {
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 2px solid var(--accent);
	border-radius: 20px;
	z-index: 1;
	opacity: 0.5;
	transition: all 0.5s ease;
}

/* Mission & Vision Section */
.mission-vision-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.mission-card, .vision-card {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 40px;
	border-radius: 8px;
	border: 1px solid rgba(100, 255, 218, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
	transform: translateY(-5px);
}

.mission-card h3, .vision-card h3 {
	font-size: 1.8rem;
	color: var(--accent);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.mission-card p, .vision-card p {
	color: var(--light-gray);
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Collaboration Types Section */
.collaboration-types {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.collaboration-card {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 40px;
	border-radius: 8px;
	border: 1px solid rgba(100, 255, 218, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.collaboration-card:hover {
	transform: translateY(-5px);
}

.collaboration-card h3 {
	font-size: 1.8rem;
	color: var(--accent);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.collaboration-card ul {
	list-style-type: none;
	margin: 20px 0;
}

.collaboration-card li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	color: var(--light-gray);
}

.collaboration-card li:before {
	content: '▹';
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* Goals Section */
.goals-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.goal-card {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 30px;
	border-radius: 8px;
	border: 1px solid rgba(100, 255, 218, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.goal-card:hover {
	transform: translateY(-5px);
}

.goal-card h3 {
	font-size: 1.5rem;
	color: var(--accent);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.goal-card p {
	color: var(--light-gray);
	line-height: 1.7;
}

/* Collaboration Process Section */
.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.process-step {
	text-align: center;
	padding: 30px;
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	border-radius: 8px;
	border: 1px solid rgba(100, 255, 218, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.process-step:hover {
	transform: translateY(-5px);
}

.step-number {
	width: 50px;
	height: 50px;
	background: var(--accent);
	color: var(--dark-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 20px;
}

.process-step h3 {
	font-size: 1.3rem;
	color: var(--white);
	margin-bottom: 15px;
}

.process-step p {
	color: var(--light-gray);
	line-height: 1.7;
}

/* CTA Section */
.cta-section {
	text-align: center;
	padding: 80px 0;
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	border-radius: 8px;
	border: 1px solid rgba(100, 255, 218, 0.1);
}

.cta-section h2 {
	font-size: 2.5rem;
	color: var(--white);
	margin-bottom: 20px;
}

.cta-section p {
	max-width: 600px;
	margin: 0 auto 40px;
	color: var(--light-gray);
	line-height: 1.7;
}

/* Footer */
footer {
	background: linear-gradient(to right, var(--dark-blue), var(--medium-blue));
	padding: 50px 0 30px;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-bottom: 30px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	color: var(--accent);
	font-size: 1.5rem;
	border-radius: 50%;
	transition: all 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
	transform: translateY(-5px);
	color: var(--white);
	background: var(--accent);
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--accent);
	color: var(--dark-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
	z-index: 100;
}

.back-to-top:hover {
	transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 968px) {
	.about-content,
	.mission-vision-container,
	.collaboration-types {
		grid-template-columns: 1fr;
	}
	
	.hero h1 {
		font-size: 3rem;
	}
	
	.hero h2 {
		font-size: 2rem;
	}
	
	.section-title::after {
		width: 100px;
	}

	.hero-bg {
		width: 100%;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		opacity: 0.1;
	}

	.about-image img {
		max-width: 320px;
		height: 320px;
	}
	
	.floating-element {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
}

/* Fix for centering issues on all screen sizes */
.hero-content {
  margin-left: 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}

.hero h1, .hero h2, .hero p {
  text-align: center;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

/* Only apply left margin on large desktop screens */
@media (min-width: 1200px) {
  .hero-content {
	margin-left: 50px;
	text-align: left;
	max-width: 700px;
	padding: 0;
  }
  
  .hero h1, .hero h2, .hero p {
	text-align: left;
  }
  
  .hero p {
	margin-left: 0;
	margin-right: 0;
  }
  
  .btn {
	margin: 0;
	display: inline-block;
  }
}

/* Adjust background for smaller screens */
@media (max-width: 1200px) {
  .hero-bg {
	width: 100%;
	opacity: 0.1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .hero h1 {
	font-size: 2.5rem;
  }
  
  .hero h2 {
	font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
	flex-direction: column;
	align-items: flex-start;
  }
  
  .section-title::after {
	width: 100%;
	margin-left: 0;
	margin-top: 10px;
  }
  
  .section-title h2 {
	font-size: 2rem;
  }
  
  .nav-links {
	display: none;
  }
  
  .hero {
	text-align: center;
  }
  
  .hero p {
	margin: 0 auto 40px;
  }

  .mission-card, .vision-card, .collaboration-card, .goal-card, .process-step {
	padding: 25px;
  }
}

/* Show hamburger menu on mobile */
@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}
	
	.nav-links {
		display: none;
	}
}

/* Animation for elements when they come into view */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}

/* What I Bring to the Table Section */
.skills-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.skill {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 30px;
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.skill::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background-color: var(--accent);
}

.skill:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.skill i {
	font-size: 3rem;
	color: var(--accent);
	margin-bottom: 20px;
}

.skill h3 {
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.skill p {
	color: var(--light-gray);
}

/* Skills Modal Styles */
.skills-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 25, 47, 0.98);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.skills-modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	width: 90%;
	max-width: 800px;
	max-height: 80vh;
	overflow-y: auto;
	border-radius: 8px;
	padding: 30px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	transform: translateY(50px);
	transition: transform 0.5s ease;
	border: 1px solid rgba(100, 255, 218, 0.1);
}

.skills-modal.active .modal-content {
	transform: translateY(0);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: var(--accent);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.3s;
	z-index: 10;
}

.modal-close:hover {
	color: var(--white);
}

.modal-header {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding-right: 40px;
}

.modal-header i {
	font-size: 2.5rem;
	color: var(--accent);
}

.modal-header h2 {
	font-size: 2rem;
	color: var(--white);
}

.modal-body h3 {
	color: var(--accent);
	margin: 20px 0 10px;
	font-size: 1.3rem;
}

.modal-body p {
	color: var(--light-gray);
	line-height: 1.7;
	margin-bottom: 15px;
}

.skill-detail-list {
	list-style-type: none;
	margin: 15px 0;
}

.skill-detail-list li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	color: var(--light-gray);
}

.skill-detail-list li:before {
	content: '▹';
	position: absolute;
	left: 0;
	color: var(--accent);
}

.skill-level {
	margin: 20px 0;
}

.skill-level-bar {
	height: 8px;
	background-color: var(--light-blue);
	border-radius: 4px;
	margin: 10px 0;
	overflow: hidden;
}

.skill-level-fill {
	height: 100%;
	background-color: var(--accent);
	border-radius: 4px;
	width: 0;
	transition: width 1s ease-in-out;
}

.skill-level-labels {
	display: flex;
	justify-content: space-between;
	color: var(--light-gray);
	font-size: 0.9rem;
}

.view-btn {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(100, 255, 218, 0.1);
	color: var(--accent);
	border: 1px solid rgba(100, 255, 218, 0.3);
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-top: 20px;
}

.view-btn:hover {
	background: rgba(100, 255, 218, 0.2);
	transform: translateY(-2px);
}

.agile-carousel {
	position: relative;
	padding: 0 60px; /* Added padding for arrows */
}

.carousel-container {
	overflow: hidden;
	margin: 0 -15px;
	padding: 15px 0; /* Add padding to prevent hover from being clipped */
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	gap: 30px;
	padding: 15px 0; /* Extra padding for hover effects */
}

.process-step {
	flex: 0 0 calc(25% - 22.5px); /* 4 cards per view, accounting for gap */
	min-width: 0;
	margin: 15px 0; /* Add margin for hover space */
	position: relative; /* For hover effects */
	z-index: 1; /* Ensure hover effects appear above other elements */
}

/* Remove overflow:hidden from cards to let hover effects show */
.process-step {
	overflow: visible !important;
}

/* Add a glow effect that extends beyond the card */
.process-step::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border-radius: 12px;
	background: radial-gradient(circle at center, 
				rgba(100, 255, 218, 0.1) 0%, 
				rgba(100, 255, 218, 0) 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: -1;
}

/* Arrows positioned beside cards */
.carousel-prev,
.carousel-next {
	position: absolute;
	top: 43%;
	transform: translateY(-50%);
	background: var(--medium-blue);
	border: 1px solid rgba(100, 255, 218, 0.3);
	color: var(--accent);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.2rem;
	z-index: 20; /* Higher than cards */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
	left: 0;
}

.carousel-next {
	right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 8px 20px rgba(100, 255, 218, 0.3);
	z-index: 30;
}

.carousel-prev:disabled,
.carousel-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	transform: translateY(-50%);
}

.carousel-prev:disabled:hover,
.carousel-next:disabled:hover {
	transform: translateY(-50%);
	background: var(--medium-blue);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Dots positioned under cards */
.carousel-nav {
	display: flex;
	justify-content: center;
	margin-top: 40px; /* Increased margin for hover space */
}

.carousel-dots {
	display: flex;
	gap: 15px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--light-blue);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: var(--accent);
	transform: scale(1.2);
}

.dot:hover {
	background: var(--accent);
}

/* Responsive Design for Carousel */
@media (max-width: 1200px) {
	.process-step {
		flex: 0 0 calc(33.333% - 20px); /* 3 cards per view */
	}
	
	.agile-carousel {
		padding: 0 60px;
	}
}

@media (max-width: 900px) {
	.process-step {
		flex: 0 0 calc(50% - 15px); /* 2 cards per view */
	}
	
	.agile-carousel {
		padding: 0 50px;
	}
	
	.carousel-prev,
	.carousel-next {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 600px) {
	.process-step {
		flex: 0 0 calc(100% - 0px); /* 1 card per view */
	}
	
	.agile-carousel {
		padding: 0 45px;
	}
	
	.carousel-container {
		margin: 0 -10px;
	}
	
	.carousel-prev,
	.carousel-next {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	/* Reduce hover glow on mobile */
	.process-step::after {
		top: -5px;
		left: -5px;
		right: -5px;
		bottom: -5px;
	}
}

html {
	scroll-behavior: smooth;
}