/**
* Template Name: iPortfolio - v2.0.2
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Root Variables for Theming
--------------------------------------------------------------*/
:root {
  --primary-color: #149ddd;
  --primary-hover: #37b3ed;
  --text-color: #272829;
  --bg-color: #ffffff;
  --sidebar-bg: #040b14;
  --sidebar-text: #fff;
  --section-bg: #f5f8fd;
  --card-bg: #fff;
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

.dark-theme {
  --text-color: #e4e6eb;
  --bg-color: #18191a;
  --sidebar-bg: #242526;
  --section-bg: #242526;
  --card-bg: #242526;
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: var(--transition);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  margin-bottom: 1.5rem;
}

p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.container {
  max-width: 1140px;
  padding: 0 30px;
}

.section-bg {
  background-color: var(--section-bg);
  transition: var(--transition);
}

.section-title {
  padding-bottom: 30px;
}

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

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

.card {
  background-color: var(--card-bg);
  border: none;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #149ddd;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #2eafec;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  padding: 0 15px;
  background: var(--sidebar-bg);
  overflow-y: auto;
}

#header.header-scrolled {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
  border-radius: 50%;
  transition: var(--transition);
}

#header .profile img:hover {
  transform: scale(1.05);
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a, #header .profile h1 a:hover {
  color: var(--sidebar-text);
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #212431;
  color: var(--sidebar-text);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .profile .social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
}

#main {
  margin-left: 300px;
  transition: var(--transition);
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding-top: 30px;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a i {
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  text-decoration: none;
  color: #fff;
}

.nav-menu a:hover i, .nav-menu .active > a i, .nav-menu li:hover > a i {
  color: #149ddd;
}

/* Mobile Theme Toggle in Navigation */
.nav-menu .theme-toggle-mobile {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  padding-top: 20px;
}

.nav-menu .theme-toggle-mobile:hover {
  background-color: rgba(20, 157, 221, 0.1);
  border-radius: 8px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #149ddd;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: var(--transition);
}

.dark-theme #hero:before {
  background: rgba(0, 0, 0, 0.6);
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
  padding: 40px 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}

#hero .hero-tagline {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 90%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  opacity: 0.95;
}

#hero .typed-container {
  color: #fff;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

#hero p {
  color: #fff;
  margin-bottom: 40px;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
}

#hero p span {
  color: var(--primary-color);
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid var(--primary-color);
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.hero-buttons a {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid var(--primary-color);
  color: #fff;
  text-decoration: none;
}

.hero-buttons a i {
  font-size: 18px;
  margin-left: 8px;
}

.hero-buttons a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-download {
  background: var(--primary-color);
  color: #fff;
}

.hero-buttons .btn-projects {
  background: transparent;
  border-color: #fff;
}

.hero-buttons .btn-contact {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.dark-theme #hero .hero-buttons .btn-projects,
.dark-theme #hero .hero-buttons .btn-contact {
  border-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero .hero-container {
    padding: 30px 20px;
    margin: 0 10px;
    border-radius: 15px;
  }
  
  #hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  #hero .hero-tagline {
    font-size: 20px;
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  #hero .typed-container {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  #hero p {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--text-color);
  margin-bottom: 15px;
}

.about .content h4 {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  margin-top: 25px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
  border-left: 3px solid var(--primary-color);
}

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

.about .content ul li {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 10px;
  color: var(--primary-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .font-italic {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 25px;
}

.about .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 8px 20px;
  transition: var(--transition);
}

.about .btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-3px);
}

.about .badge {
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
}

.about .bg-success {
  background-color: #28a745 !important;
}

.about .text-white {
  color: white !important;
}

.achievement-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.achievement-card i {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.achievement-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.achievement-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.certificate-card {
  display: flex;
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.certificate-logo {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

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

.certificate-details {
  flex: 1;
}

.certificate-details h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.certificate-details p {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-color);
}

.certificate-details strong {
  color: var(--primary-color);
  font-weight: 600;
}

.certificate-actions {
  margin-top: 15px;
}

.btn-verify {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  transition: var(--transition);
}

.btn-verify:hover {
  background-color: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
}

.btn-verify i {
  margin-right: 5px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .certificate-card {
    flex-direction: column;
  }
  
  .certificate-logo {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: #149ddd;
  float: left;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #149ddd;
}

.skills-category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.skills-category-title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(20, 157, 221, 0.2);
}

.skill-card i {
  font-size: 48px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.skill-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--text-color);
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--primary-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 1.2;
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: rgba(20, 157, 221, 0.1);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
  border-radius: 4px;
}

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

.resume .resume-item ul li {
  padding-bottom: 10px;
}

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

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--bg-color);
  border: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #37b3ed;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #149ddd;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #149ddd;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #149ddd;
}

.services .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: #149ddd;
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #149ddd !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 50px;
}


.contact .info {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.contact .info:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact .info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: rgba(20, 157, 221, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email, .contact .info .phone, .contact .info .address {
  margin-bottom: 30px;
}

.contact .info .social-links {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  overflow: hidden;
}

.contact .contact-form-wrapper:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.contact .form-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  padding: 30px;
  text-align: center;
  color: white;
}

.contact .form-header h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.contact .form-header p {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.6;
}

.contact .contact-form {
  padding: 35px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

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

.contact .contact-form .form-group {
  position: relative;
  margin-bottom: 25px;
  padding: 0 15px;
}

.contact .contact-form .form-group.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  background-color: var(--bg-color);
  border: 1px solid #ddd;
  color: var(--text-color);
  padding: 12px 15px;
  transition: 0.3s;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(20, 157, 221, 0.2);
}

.contact .contact-form input {
  height: 48px;
}

.contact .contact-form label {
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 15px;
}

.contact .contact-form label i {
  margin-right: 8px;
  color: var(--primary-color);
  font-size: 16px;
}

.contact .form-actions {
  text-align: center;
  margin-top: 30px;
}

.contact .btn-send {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  border: none;
  padding: 15px 35px;
  color: #fff;
  transition: all 0.4s ease;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 25px rgba(20, 157, 221, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.contact .btn-send:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20, 157, 221, 0.4);
}

.contact .btn-send:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20, 157, 221, 0.3);
}

.contact .btn-send i {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.contact .btn-send:hover i {
  transform: translateX(5px);
}

.contact .error-message,
.contact .sent-message,
.contact .loading {
  display: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.contact .loading {
  background: rgba(20, 157, 221, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(20, 157, 221, 0.2);
  display: none;
}

.contact .error-message {
  color: #d9534f;
  background: rgba(217, 83, 79, 0.1);
  border: 1px solid rgba(217, 83, 79, 0.2);
}

.contact .sent-message {
  color: #5cb85c;
  background: rgba(92, 184, 92, 0.1);
  border: 1px solid rgba(92, 184, 92, 0.2);
}

/* Floating labels for contact form */
.contact .contact-form .form-floating {
  position: relative;
}

.contact .contact-form .form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 12px 15px;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.contact .contact-form .form-floating input:focus ~ label,
.contact .contact-form .form-floating input:not(:placeholder-shown) ~ label,
.contact .contact-form .form-floating textarea:focus ~ label,
.contact .contact-form .form-floating textarea:not(:placeholder-shown) ~ label {
  opacity: .65;
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

.contact .contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

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

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #149ddd !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

.contact .contact-form .input-focus-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

.contact .contact-form .form-control:focus + .input-focus-effect {
  width: 100%;
}

.contact .contact-form .bx-send {
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

.contact .contact-form button[type="submit"]:hover .bx-send {
  transform: translateX(5px);
}

/* Adjust responsive behavior for tablet and mobile */
@media (max-width: 991px) {
  .contact .contact-form-wrapper,
  .contact .info {
    margin-bottom: 30px;
    height: auto;
  }
  
  .contact .contact-form .form-group.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact .info {
    padding: 20px;
  }
  
  .contact .form-header {
    padding: 25px 20px;
  }
  
  .contact .form-header h3 {
    font-size: 24px;
  }
  
  .contact .form-header p {
    font-size: 15px;
  }
  
  .contact .contact-form {
    padding: 25px 20px;
  }
  
  .contact .btn-send {
    padding: 12px 25px;
    font-size: 15px;
  }

}

.projects .project-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
}

.projects .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.projects .project-card .card-body {
  padding: 25px;
}

.projects .project-card .card-title a {
  font-weight: 700;
  color: var(--text-color);
  font-size: 20px;
  transition: var(--transition);
}

.projects .project-card .card-title a:hover {
  color: var(--primary-color);
}

.projects .project-card .card-text {
  color: var(--text-color);
  margin-bottom: 20px;
}

.projects .tech-badges .badge {
  background: var(--section-bg);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 5px;
  font-size: 12px;
}

.projects .project-links {
  margin-top: 20px;
}

.projects .project-links a {
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  transition: var(--transition);
  margin-right: 10px;
  font-weight: 600;
}

.projects .project-links .btn-github {
  background: #333;
}

.projects .project-links .btn-github:hover {
  background: #444;
}

.projects .project-links .btn-live {
  background: var(--primary-color);
}

.projects .project-links .btn-live:hover {
  background: var(--primary-hover);
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--bg-color);
  border: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
#projects {
  padding: 80px 0;
}

#projects-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

#projects-flters li {
  cursor: pointer;
  margin: 0 8px 15px 8px;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-color);
  border-radius: 50px;
  background: rgba(20, 157, 221, 0.1);
  transition: all 0.3s ease-in-out;
  border: none;
}

#projects-flters li:hover, #projects-flters li.filter-active {
  background: var(--primary-color);
  color: #fff;
}

#projects-flters li:last-child {
  margin-right: 0;
}

.projects-container {
  transition: all 0.4s ease;
}

.projects-item {
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card {
  height: 100%;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-img {
  position: relative;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.6s ease;
}

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

.project-links {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.project-img:hover .project-links {
  right: 15px;
  opacity: 1;
}

.project-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: var(--transition);
}

.project-links a:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

.project-info {
  padding: 25px;
}

.project-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tech-badges .badge {
  background: rgba(20, 157, 221, 0.1);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.project-buttons {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.project-buttons a {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  margin-right: 10px;
  transition: var(--transition);
}

.project-buttons .btn-github {
  background: #333;
  color: #fff;
}

.project-buttons .btn-github:hover {
  background: #000;
}

.project-buttons .btn-live {
  background: var(--primary-color);
  color: #fff;
}

.project-buttons .btn-live:hover {
  background: var(--primary-hover);
}

/*--------------------------------------------------------------
# Personal Interests Section
--------------------------------------------------------------*/
.interests {
  padding: 80px 0;
  background-color: var(--section-bg);
}


.interest-box {
  background-color: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  padding: 35px 30px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 157, 221, 0.1);
}

.interest-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20, 157, 221, 0.15);
  border-color: rgba(20, 157, 221, 0.3);
}

.interest-icon {
  margin: 0 auto 25px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(20, 157, 221, 0.3);
}

.interest-box:hover .interest-icon {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(20, 157, 221, 0.4);
}

.interest-icon i {
  font-size: 38px;
  color: #fff;
  transition: all 0.4s ease;
}

.interest-box:hover .interest-icon i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.interest-box h3 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
}

.interest-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-color);
  opacity: 0.9;
}

.interest-badge {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(20, 157, 221, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 12px;
  border-radius: 50px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .interests .row {
    margin-bottom: 25px;
  }
  
  .interest-box {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  
  .interest-icon {
    width: 70px;
    height: 70px;
  }
  
  .interest-icon i {
    font-size: 32px;
  }
  
  .interest-box h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .interest-icon {
    width: 60px;
    height: 60px;
  }
  
  .interest-icon i {
    font-size: 28px;
  }
  
  .interest-box {
    padding: 20px 15px;
  }
}

@media (max-width: 576px) {
  .interest-icon {
    width: 55px;
    height: 55px;
  }
  
  .interest-icon i {
    font-size: 24px;
  }
  
  .interest-box {
    padding: 18px 12px;
  }
  
  .interest-box h3 {
    font-size: 20px;
  }
}

.interest-achievement {
  background-color: rgba(20, 157, 221, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  transition: var(--transition);
  border: 1px solid rgba(20, 157, 221, 0.1);
}

.interest-achievement img {
  border-radius: 10px;
  max-height: 180px;
  margin: 0 auto 15px;
  display: block;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-color);
  transition: var(--transition);
}

.interest-achievement:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(20, 157, 221, 0.15);
  background-color: rgba(20, 157, 221, 0.12);
}

.interest-achievement:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.achievement-details h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 600;
}

.achievement-details p {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-color);
  font-style: italic;
}

@media (max-width: 768px) {
  .interest-achievement {
    padding: 10px;
  }
  
  .interest-achievement img {
    max-height: 180px;
  }
}

/*--------------------------------------------------------------
# Modern About Section Styles
--------------------------------------------------------------*/
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(20, 157, 221, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

.location-badge i {
  font-size: 16px;
  color: var(--primary-color);
}

.availability-dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  margin: 0 5px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Profile Image Wrapper */
.profile-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.profile-img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-img-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--primary-color), #00a8cc);
  border-radius: 25px;
  z-index: 1;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.profile-img-wrapper:hover::before {
  transform: rotate(3deg);
  opacity: 0.9;
}

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

/* Tech Stack Float */
.tech-stack-float {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.tech-stack-float i {
  font-size: 24px;
  background: var(--card-bg);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.tech-stack-float i:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Modern Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 5px;
  border: none;
  cursor: pointer;
}

.btn-modern.primary {
  background: linear-gradient(135deg, var(--primary-color), #00a8cc);
  color: white;
}

.btn-modern.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(20, 157, 221, 0.3);
  color: white;
}

.btn-modern.secondary {
  background: var(--card-bg);
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}

.btn-modern.secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Role Badge */
.role-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(20, 157, 221, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin: 15px 0 25px 0;
  letter-spacing: 0.5px;
}

/* Contact Info Modern */
.contact-info-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-item i {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 3px;
}

.info-item div {
  flex: 1;
}

.info-item strong {
  display: block;
  font-size: 12px;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-item span {
  display: block;
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
}

/* Professional Summary */
.professional-summary {
  margin: 30px 0;
}

.professional-summary h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.professional-summary p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

/* Tech Stack Section */
.tech-stack-section {
  margin-top: 25px;
}

.tech-stack-section h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  padding: 8px 16px;
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-pill.primary {
  background: rgba(20, 157, 221, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}

.tech-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Achievements Section */
.achievements-section {
  margin: 40px 0;
}

.achievements-section h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-color);
}

.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.achievement-card-modern {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #00a8cc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.achievement-card-modern:hover::before {
  transform: scaleX(1);
}

.achievement-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  background: rgba(20, 157, 221, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.achievement-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.metric {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}

.metric-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}

.metric-unit {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

.achievement-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.achievement-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 15px;
}

.tech-used {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-used span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border-radius: 15px;
}

/* Additional Info Cards */
.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h4 i {
  color: var(--primary-color);
}

.info-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text-color);
}

.info-card strong {
  color: var(--primary-color);
}

.focus-area {
  font-size: 13px;
  color: #6c757d;
  font-style: italic;
}

.verify-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.verify-link:hover {
  color: var(--primary-hover);
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info-modern {
    grid-template-columns: 1fr;
  }
  
  .achievement-cards {
    grid-template-columns: 1fr;
  }
  
  .additional-info {
    grid-template-columns: 1fr;
  }
  
  .tech-stack-float {
    gap: 10px;
  }
  
  .tech-stack-float i {
    font-size: 20px;
    padding: 8px;
  }
}
