/* Base Styles */
:root {
  --primary-color: #0ea5e9;
  --primary-dark: #0369a1;
  --primary-light: #7dd3fc;
  --secondary-color: #080f1e;
  --background-dark: #050b15;
  --background-light: #080f1e;
  --text-light: #f8fafc;
  --text-dark: #64748b;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --accent-color: #8b5cf6;
  --orange-color: #f97316;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 14px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
  --glow: 0 0 15px rgba(14, 165, 233, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  box-shadow: 0 0 15px var(--primary-color);
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
  opacity: 0.4;
}

/* Preloader (Disabled) */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-dark);
  display: none; /* Disabled */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.counter {
  font-size: 8rem;
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.3s ease;
}

/* Particle Background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(5, 5, 5, 0.95);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.navbar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
}

.logo span {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

/* Common Section Styles */
section {
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--primary-color);
}

.section-line {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto;
  position: relative;
}

.section-line::before,
.section-line::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  top: -2px;
}

.section-line::before {
  left: -8px;
}

.section-line::after {
  right: -8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.secondary-btn {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  box-shadow: 5px 5px 10px rgb(255, 0, 0);
}

/* Home Section */
.home-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  overflow: hidden;
}

/* Hero Background Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
  animation: floatShape 10s infinite alternate;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  bottom: -50px;
  left: -50px;
  animation: floatShape 8s infinite alternate-reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--primary-light);
  top: 40%;
  left: 10%;
  animation: floatShape 12s infinite alternate;
}

.home-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.text-content {
  flex: 1;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.2);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1;
}

.title span {
  color: var(--primary-color);
}

.typing-text {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
  color: var(--text-light);
}

.typing {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--orange-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 600;
  animation: neon-pulse 1.5s ease-in-out infinite alternate;
}

.typed-cursor {
  color: var(--orange-color);
  filter: drop-shadow(0 0 5px var(--orange-color));
  animation: neon-pulse 1.5s ease-in-out infinite alternate;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.profile-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-main {
  position: relative;
  width: 400px;
  height: 400px;
}

.profile-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  z-index: 2;
  border: 4px solid rgba(0, 163, 255, 0.1);
}

.profile-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 163, 255, 0.4), rgba(0, 102, 255, 0.4));
  z-index: 1;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  filter: grayscale(20%);
  transition: var(--transition);
}

.profile-main:hover .profile-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  z-index: 3;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.floating-badge:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--primary-color);
  background: rgba(0, 163, 255, 0.1);
}

.badge-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.badge-text span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.badge-1 {
  top: 10%;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.badge-2 {
  bottom: 20%;
  right: -30px;
  animation: float 5s ease-in-out infinite 1s;
}

.badge-3 {
  bottom: 0;
  left: 20px;
  animation: float 6s ease-in-out infinite 0.5s;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, 30px) rotate(10deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-light);
  border-radius: 13px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.scroll-arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
  animation: scrollDown 1.5s infinite;
  opacity: 0;
}

.scroll-arrow span:nth-child(1) {
  animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

/* About Section */
.about-section {
  background-color: var(--background-light);
}

.about-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-img-wrapper {
  position: relative;
  width: 400px;
  height: 480px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  opacity: 0.2;
  z-index: 1;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 0;
}

.floating-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background-color: var(--background-dark);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.experience-box {
  text-align: center;
}

.exp-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.exp-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-top: 0.5rem;
}

.about-text {
  flex: 1;
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.glow-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--orange-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.personal-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-weight: 600;
  color: var(--text-light);
}

.info-value {
  color: var(--text-dark);
}

/* Skills Section */
.skills-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.skills-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  padding-left: 0.75rem;
}

.category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.skill-item {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 163, 255, 0.2);
}

.skill-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.skill-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.skill-progress-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.skill-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease-out;
}

.skill-percentage {
  font-size: 0.875rem;
  color: var(--text-dark);
}

.tools-container {
  margin-top: 3rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 163, 255, 0.2);
}

.tool-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tool-item span {
  font-size: 0.875rem;
  color: var(--text-dark);
  text-align: center;
}

/* Certificates Section */
.certificates-section {
  background-color: var(--background-light);
}

.certificates-grid {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.certificate-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.certificate-card {
  background-color: var(--background-dark);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.certificate-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.certificate-img {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.certificate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.certificate-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.action-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.view-btn {
  background-color: var(--primary-color);
  color: white;
}

.download-btn {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.view-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.download-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

.certificate-card:hover .certificate-actions {
  transform: translateY(0);
}

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

.certificate-info {
  padding: 1.5rem;
  text-align: center;
}

.certificate-info h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.certificate-info p {
  font-size: 0.85rem;
  color: var(--primary-color);
}

/* Achievements & Education Section */
.achievements-section {
  background-color: var(--background-dark);
}

.timeline-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--text-light);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: -2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 3px solid var(--background-dark);
  z-index: 1;
}

.timeline-date {
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
  border-left: 3px solid var(--primary-color);
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.timeline-content .company {
  font-size: 0.875rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--text-dark);
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--background-light);
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 163, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: scale(1.1);
}

.contact-text h3 {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--text-dark);
}

.contact-form-container {
  background-color: var(--background-dark);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-family: 'Space Grotesk', sans-serif;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 163, 255, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.75rem;
  padding: 0 0.25rem;
  background-color: var(--background-dark);
  color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer p {
  color: var(--text-dark);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

.certificate img{
  width: 300px;
}
.certificate{
  padding: 10px;
  margin: 20px 0px 0px 0px;
}