/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  /* --background-color: #ffffff; Background color for the entire website, including individual sections */
  --default-color: #272829;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #149ddd;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #a8a9b4;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #040b14;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  /* --background-color: #f4fafd;
  --surface-color: #ffffff; */
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .social-links {
  margin: 0 0 20px 0;
}

.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 15px 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

.navmenu a .toggle-dropdown,
.navmenu a:focus .toggle-dropdown {
  font-size: 12px;
  line-height: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a .toggle-dropdown:hover,
.navmenu a:focus .toggle-dropdown:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
  background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}

.hero .hero-content {
  display: inline-block;
  background: linear-gradient(#040b14);
  color: #fff;
  padding: 30px 50px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  max-width: fit-content;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: var(--background-color);
  padding: 40px 0;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.about .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.about .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.about .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.about .section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about .col-lg-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.about .col-lg-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.about img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about .content {
  padding-left: 20px;
}

.about .content h2 {
  font-weight: 700;
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 22px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.about .content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 20px;
  text-align: justify;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about .content ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .content ul li:last-child {
  border-bottom: none;
}

.about .content ul strong {
  margin-right: 15px;
  font-weight: 600;
  color: var(--heading-color);
  min-width: 120px;
  display: inline-block;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
  line-height: 0;
}

/* Skills Section within About */
.about .skills-content {
  margin-top: 40px;
}

.about .skills-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {

  .about .col-lg-4,
  .about .col-lg-8 {
    width: 100%;
    text-align: center;
  }

  .about .content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about .row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about .section-title h2 {
    font-size: 28px;
  }

  .about .section-title p {
    font-size: 15px;
    padding: 0 10px;
  }

  .about .content h2 {
    font-size: 24px;
  }

  .about .content h3 {
    font-size: 20px;
  }

  .about .content ul strong {
    min-width: 100px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about .container {
    padding: 0 10px;
  }

  .about .section-title {
    margin-bottom: 40px;
  }

  .about .content ul li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .about .content ul strong {
    margin-bottom: 5px;
    margin-right: 0;
  }
}


/* ===================================
   SKILLS SECTION - IMPROVED CSS
   =================================== */

/* Section Background */
.skills.section.light-background {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  padding: 5rem 0;
}

/* Section Title */
.skills .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f2e;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.skills .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

/* Skills List - Main Container */
.skills-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

/* Individual Skill Item */
.skills-list li {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 4.5rem;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #374151;
  font-size: 1.05rem;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
}

/* Gradient accent border on left */
.skills-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6, #8b5cf6);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.skills-list li:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 20px 40px -12px rgba(59, 130, 246, 0.2),
    0 8px 16px -8px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
}

.skills-list li:hover::after {
  opacity: 1;
}

/* Icon before list item */
.skills-list li::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Using different icons for each category */
.skills-list li:nth-child(1)::before { content: "☁️"; }
.skills-list li:nth-child(2)::before { content: "📦"; }
.skills-list li:nth-child(3)::before { content: "⚙️"; }
.skills-list li:nth-child(4)::before { content: "🐳"; }
.skills-list li:nth-child(5)::before { content: "🎯"; }
.skills-list li:nth-child(6)::before { content: "💻"; }
.skills-list li:nth-child(7)::before { content: "🔧"; }
.skills-list li:nth-child(8)::before { content: "📋"; }

.skills-list li:hover::before {
  transform: translateY(-50%) scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

/* Strong text styling (Category Labels) */
.skills-list li strong {
  color: #1e293b;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
}

.skills-list li strong::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, transparent);
  transition: width 0.35s ease;
  margin-top: 0.25rem;
}

.skills-list li:hover strong::after {
  width: 100%;
}

/* Skill values styling */
.skills-list li {
  display: flex;
  flex-direction: column;
}

/* ===================================
   SKILLS GRID (Icon-based Layout)
   =================================== */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}

/* Individual Grid Item */
.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.skill-item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px -12px rgba(59, 130, 246, 0.15),
    0 8px 16px -8px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.skill-item img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(145deg, #f8fafc, #eef2f7);
  padding: 0.75rem;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.04),
    inset 0 -2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-item span {
  margin-top: 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.skill-item:hover img {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 
    0 12px 24px rgba(59, 130, 246, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.08);
}

.skill-item:hover span {
  color: #3b82f6;
}

/* ===================================
   ALTERNATIVE: TAG-STYLE SKILLS
   =================================== */

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 1rem 0;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.skill-tag:hover {
  background: linear-gradient(145deg, #3b82f6, #6366f1);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.skill-tag img,
.skill-tag svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

.skills-list li {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.skills-list li:nth-child(1) { animation-delay: 0.1s; }
.skills-list li:nth-child(2) { animation-delay: 0.15s; }
.skills-list li:nth-child(3) { animation-delay: 0.2s; }
.skills-list li:nth-child(4) { animation-delay: 0.25s; }
.skills-list li:nth-child(5) { animation-delay: 0.3s; }
.skills-list li:nth-child(6) { animation-delay: 0.35s; }
.skills-list li:nth-child(7) { animation-delay: 0.4s; }
.skills-list li:nth-child(8) { animation-delay: 0.45s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  .skills-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .skills.section.light-background {
    padding: 3.5rem 0;
  }

  .skills .section-title h2 {
    font-size: 2rem;
  }

  .skills-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .skills-list li {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    font-size: 1rem;
  }

  .skills-list li::before {
    width: 2rem;
    height: 2rem;
    left: 1rem;
    font-size: 1rem;
  }

  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1.25rem;
  }

  .skill-item {
    padding: 1.25rem 0.75rem;
  }

  .skill-item img {
    width: 3rem;
    height: 3rem;
  }

  .skill-item span {
    font-size: 0.8rem;
  }

  .skills-tags {
    gap: 0.5rem;
  }

  .skill-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .skills-list li {
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  }

  .skills-list li::before {
    width: 1.75rem;
    height: 1.75rem;
    left: 0.875rem;
    font-size: 0.9rem;
  }

  .skills-list li strong {
    font-size: 0.9rem;
  }

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

/* ===================================
   DARK MODE SUPPORT (Optional)
   =================================== */

@media (prefers-color-scheme: dark) {
  .skills.section.light-background {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .skills .section-title h2 {
    color: #f1f5f9;
  }

  .skills-list li {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-color: rgba(59, 130, 246, 0.2);
    color: #cbd5e1;
  }

  .skills-list li:hover {
    background: linear-gradient(145deg, #1e293b 0%, #162033 100%);
    border-color: rgba(59, 130, 246, 0.4);
  }

  .skills-list li strong {
    color: #f1f5f9;
  }

  .skill-item {
    background: #1e293b;
    border-color: rgba(59, 130, 246, 0.15);
  }

  .skill-item span {
    color: #cbd5e1;
  }

  .skill-tag {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    color: #cbd5e1;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
  .skills-list li,
  .skill-item,
  .skill-tag,
  .skills-list li::before,
  .skill-item img {
    transition: none;
    animation: none;
  }

  .skills-list li {
    opacity: 1;
  }
}

/* Focus states for keyboard navigation */
.skills-list li:focus-visible,
.skill-item:focus-visible,
.skill-tag:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/

.resume {
  background-color: var(--background-color);
  padding: 40px 0;
}

.resume .section-title {
  margin-bottom: 20px !important;
  padding-bottom: 5px !important;
  padding-top: 7px !important;
}

.resume .section-title p {
  color: var(--secondary-color);
  font-size: 18px;
  margin-top: 10px;
}

/* ===================================
   Linear Layout - Single Column
   =================================== */
.resume .row {
  display: block;
}

.resume .col-lg-6 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px auto;
  padding: 0 15px;
}

.resume .col-lg-6:last-child {
  margin-bottom: 0;
}

/* ===================================
   Resume Title
   =================================== */
.resume .resume-title {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.resume .resume-title::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 70%;
  background: var(--accent-color);
  bottom: -8px;
  left: 0;
}

/* ===================================
   Education Row - Side by Side
   =================================== */
.resume .education-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 15px;
}

.resume .education-row .resume-item {
  margin-bottom: 0;
}

.resume .education-row .resume-item:last-child {
  padding-bottom: 30px;
}

/* ===================================
   Resume Item
   =================================== */
.resume .resume-item {
  padding: 0 0 30px 30px;
  margin-top: -2px;
  border-left: 3px solid var(--accent-color);
  position: relative;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.resume .resume-item:hover {
  transform: translateX(5px);
}

.resume .resume-item h4 {
  line-height: 1.4;
  font-size: 20px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.resume .resume-item:hover h4 {
  color: var(--accent-color);
}

.resume .resume-item h5 {
  font-size: 15px;
  background: rgba(var(--accent-rgb), 0.1);
  padding: 8px 16px;
  display: inline-block;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.resume .resume-item p {
  margin-bottom: 15px;
}

.resume .resume-item p em {
  font-weight: 600;
  color: var(--heading-color);
}

/* Timeline dot */
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -10px;
  top: 5px;
  background: var(--background-color);
  border: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.resume .resume-item:hover::before {
  background: var(--accent-color);
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

/* Interests item - no bottom padding issue */
.resume .interests-item {
  padding-bottom: 0;
}

/* ===================================
   Experience List
   =================================== */
.resume .resume-item ul {
  padding-left: 0;
  list-style-type: none;
}

.resume .resume-item ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  line-height: 1.7;
}

.resume .resume-item ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent-color);
  font-size: 16px;
}

/* ===================================
   Experience Summary
   =================================== */
.resume .experience-summary {
  line-height: 1.7;
  color: var(--text-color);
  font-size: 16px;
  text-align: justify;
  margin-top: 12px;
}

/* ===================================
   Courses List
   =================================== */
.resume .courses-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 10px;
}

.resume .courses-list li {
  padding: 8px 12px;
  margin-bottom: 8px;
  background-color: rgba(var(--accent-rgb), 0.08);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 28px;
}

.resume .courses-list li::before {
  content: "📚";
  position: absolute;
  left: 10px;
  font-size: 14px;
}

.resume .courses-list li:hover {
  background-color: rgba(var(--accent-rgb), 0.15);
  transform: translateX(5px);
}

.resume .courses-list li:last-child {
  margin-bottom: 0;
}

/* ===================================
   Skills Categories (Areas of Interest)
   =================================== */
.resume .skills-categories {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.resume .skill-category {
  margin-bottom: 0;
  padding: 15px;
  background-color: rgba(var(--accent-rgb), 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.resume .skill-category:hover {
  background-color: rgba(var(--accent-rgb), 0.1);
  transform: translateY(-3px);
}

.resume .skill-category h5 {
  margin: 0 0 8px 0;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 16px;
  background: none;
  padding: 0;
}

.resume .skill-category p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 16px;
  text-align: justify;
}

/* ===================================
   Download Resume Button
   =================================== */
.resume .download-resume-container {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.resume .download-resume-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.resume .download-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(102, 126, 234, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 1;
  text-transform: uppercase;
  min-width: 200px;
}

.resume .download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #764ba2 0%, #f093fb 100%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.resume .download-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.6s ease;
  z-index: 0;
}

.resume .download-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.6),
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.resume .download-btn:hover::before {
  left: 0;
}

.resume .download-btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.resume .download-btn:active {
  transform: translateY(-3px) scale(1.02);
}

.resume .download-icon {
  width: 22px;
  height: 22px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  z-index: 2;
}

.resume .download-btn:hover .download-icon {
  transform: translateY(3px) rotate(360deg);
  animation: downloadPulse 1.5s infinite;
}

@keyframes downloadPulse {
  0%, 100% { 
    transform: translateY(3px) rotate(360deg) scale(1); 
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }
  50% { 
    transform: translateY(1px) rotate(360deg) scale(1.1); 
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }
}

.resume .btn-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.resume .download-btn:hover .btn-text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.resume .download-subtitle {
  margin-top: 16px;
  color: var(--text-color);
  font-size: 14px;
  font-style: italic;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.resume .download-resume-container:hover .download-subtitle {
  opacity: 1;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
  .resume .col-lg-6 {
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .resume .education-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .resume .education-row .resume-item:last-child {
    padding-bottom: 0;
  }

  .resume .resume-item {
    padding-left: 20px;
  }

  .resume .resume-item h4 {
    font-size: 18px;
  }

  .resume .resume-item h5 {
    font-size: 14px;
  }

  .resume .skills-categories {
    grid-template-columns: 1fr;
  }

  .resume .download-btn {
    padding: 14px 28px;
    font-size: 14px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .resume .resume-title {
    font-size: 20px;
  }

  .resume .resume-item {
    padding-left: 18px;
  }

  .resume .resume-item::before {
    width: 14px;
    height: 14px;
    left: -8px;
  }

  .resume .resume-item h4 {
    font-size: 16px;
  }

  .resume .download-btn {
    padding: 12px 24px;
    font-size: 13px;
    gap: 10px;
  }
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {
  .resume .resume-item,
  .resume .skill-category,
  .resume .courses-list li,
  .resume .download-btn,
  .resume .download-icon {
    transition: none;
    animation: none;
  }
}

.resume .download-btn:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

/*--------------------------------------------------------------
# Project Section 
--------------------------------------------------------------*/

.projects {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #040b14 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(20, 157, 221, 0.05), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(20, 157, 221, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.projects .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Title */
.projects .section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.projects .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.projects .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #149ddd 0%, #0d7bb8 100%);
  border-radius: 2px;
}

.projects .section-title p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

/* Project Item Card */
.project-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.project-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(20, 157, 221, 0.3);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(20, 157, 221, 0.1);
}

/* Content Wrapper */
.project-item .content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon Box */
.project-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #149ddd, #0d7bb8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(20, 157, 221, 0.25);
  transition: all 0.35s ease;
}

.project-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(20, 157, 221, 0.35);
}

.project-item .icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.project-item .icon img.project-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Title */
.project-item .title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.project-item .title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-item .title a:hover,
.project-item:hover .title a {
  color: #149ddd;
}

/* Description */
.project-item .description {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.project-item .description-content {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* Technologies / Tags */
.project-item .technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-item .tech-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  background: rgba(20, 157, 221, 0.12);
  color: #149ddd;
  border: 1px solid rgba(20, 157, 221, 0.2);
  transition: all 0.25s ease;
}

.project-item .tech-tag:hover {
  background: rgba(20, 157, 221, 0.2);
  border-color: rgba(20, 157, 221, 0.4);
  transform: translateY(-2px);
}

/* Project Link */
.project-item .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #149ddd;
  text-decoration: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.project-item .project-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.project-item .project-link:hover {
  color: #ffffff;
}

.project-item .project-link:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .projects {
    padding: 3rem 1rem;
  }

  .projects .section-title h2 {
    font-size: 2rem;
  }

  .projects .section-title p {
    font-size: 0.95rem;
  }

  .project-item .content {
    padding: 1.5rem;
  }

  .project-item .icon {
    width: 52px;
    height: 52px;
  }

  .project-item .icon i {
    font-size: 1.5rem;
  }

  .project-item .title {
    font-size: 1.2rem;
  }

  .project-item .description-content {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .projects .section-title h2 {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .project-item .content {
    padding: 1.25rem;
  }

  .project-item .technologies {
    gap: 0.4rem;
  }

  .project-item .tech-tag {
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .project-item,
  .project-item .icon,
  .project-item .tech-tag,
  .project-item .project-link i {
    transition: none;
  }
}

.project-item:focus-within {
  outline: 2px solid #149ddd;
  outline-offset: 4px;
}

.project-item .project-link:focus-visible {
  outline: 2px solid #149ddd;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
  background: #f9fafb;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: #222;
}

.contact .info-wrap {
  background-color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 35px;
  border-radius: 14px;
  max-width: 480px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .info-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
}

.contact .info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 28px;
  color: #fff;
  background: #0077b6;
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 119, 182, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.contact .info-item:hover i {
  background: #023e8a;
  transform: translateY(-3px);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
}

.contact .info-item p {
  margin: 0;
  font-size: 16px;
  color: #444;
}

.contact .info-item p a {
  color: #0077b6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact .info-item p a:hover {
  color: #023e8a;
  text-decoration: underline;
}

.contact-intro {
  text-align: center;
  font-size: 30px;
  color: var(--default-color, #333);
  margin-bottom: 30px;
  font-weight: 600;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 50px 0;
  }

  .contact .section-title h2 {
    font-size: 2rem;
  }

  .contact-intro {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact .info-wrap {
    max-width: 100%;
    padding: 30px 25px;
    margin: 0 15px;
  }

  .contact .info-item {
    gap: 14px;
    margin-bottom: 30px;
  }

  .contact .info-item i {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .contact .info-item h3 {
    font-size: 18px;
  }

  .contact .info-item p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 40px 0;
  }

  .contact .section-title h2 {
    font-size: 1.75rem;
  }

  .contact-intro {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .contact .info-wrap {
    padding: 25px 20px;
    margin: 0 10px;
    border-radius: 12px;
  }

  .contact .info-item {
    gap: 12px;
    margin-bottom: 25px;
  }

  .contact .info-item i {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .contact .info-item h3 {
    font-size: 16px;
  }

  .contact .info-item p {
    font-size: 14px;
  }

  .contact .info-item p a {
    word-break: break-all;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .contact .info-wrap,
  .contact .info-item i {
    transition: none;
  }
}