@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&display=swap");

:root {
  --bg-black-900: #f2f2fc;
  --bg-black-100: #fdf9ff;
  --bg-black-50: #e8dfec;
  --text-black-900: #302e4d;
  --text-black-700: #504e70;
  --skin-color-rgb: 236, 24, 57; /* Add this for rgba usage */
    --skin-color: #ec1839; /* Make sure this exists */

}

body {
  line-height: 1.5;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

body.dark {
  --bg-black-900: #151515;
  --bg-black-100: #222222;
  --bg-black-50: #393939;
  --text-black-900: #ffffff;
  --text-black-700: #e9e9e9;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

.section {
  background-color: var(--bg-black-900);
  min-height: 100vh;
  display: block;
  padding: 0 30px;
  opacity: 1;
  position: fixed;
  left: 270px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

.section.back-section {
  z-index: 1;
}

.section.active {
  z-index: 2;
  opacity: 1;
  animation: slideSection 1s ease;
}

@keyframes slideSection {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.hidden {
  display: none !important;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

.section .container {
  padding-top: 60px;
  padding-bottom: 70px;
}

.section-title {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-black-900);
  position: relative;
}

.section-title h2::before {
  content: "";
  height: 4px;
  width: 50px;
  background-color: var(--skin-color);
  position: absolute;
  top: 100%;
  left: 0;
}

.section-title h2::after {
  content: "";
  height: 4px;
  width: 25px;
  background-color: var(--skin-color);
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
}

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

.btn {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 35px;
  color: white;
  border-radius: 40px;
  display: inline-block;
  white-space: nowrap;
  border: none;
  background-color: var(--skin-color);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.shadow-dark {
  box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

/* Aside */
.aside {
  width: 270px;
  background-color: var(--bg-black-100);
  position: fixed;
  left: 0;
  top: 0;
  padding: 30px;
  height: 100%;
  border-right: 1px solid var(--bg-black-50);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.aside .logo {
  position: absolute;
  top: 50px;
  font-size: 30px;
  text-transform: capitalize;
}

.aside .logo a {
  color: var(--text-black-900);
  font-weight: 700;
  padding: 15px 20px;
  font-size: 30px;
  letter-spacing: 5px;
  position: relative;
}

.aside .logo a span {
  font-family: "Clicker Script", cursive;
  font-size: 40px;
}

.aside .logo a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-bottom: 5px solid var(--skin-color);
  border-left: 5px solid var(--skin-color);
  bottom: 0;
  left: 0;
}

.aside .logo a::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-top: 5px solid var(--skin-color);
  border-right: 5px solid var(--skin-color);
  top: 0;
  right: 0;
}

.aside .nav-toggler {
  height: 40px;
  width: 45px;
  border: 1px solid var(--bg-black-50);
  cursor: pointer;
  position: fixed;
  left: 300px;
  top: 20px;
  border-radius: 5px;
  background-color: var(--bg-black-100);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.aside .nav-toggler span {
  height: 2px;
  width: 18px;
  background-color: var(--skin-color);
  display: inline-block;
  position: relative;
}

.aside .nav-toggler.open span {
  background-color: transparent;
}

.aside .nav-toggler span::before {
  content: "";
  height: 2px;
  width: 18px;
  background-color: var(--skin-color);
  position: absolute;
  top: -6px;
  left: 0;
}

.aside .nav-toggler.open span::before {
  transform: rotate(45deg);
  top: 0;
}

.aside .nav-toggler span::after {
  content: "";
  height: 2px;
  width: 18px;
  background-color: var(--skin-color);
  position: absolute;
  top: 6px;
  left: 0;
}

.aside .nav-toggler.open span::after {
  transform: rotate(-45deg);
  top: 0;
}

.aside .nav {
  margin-top: 50px;
}

.aside .nav li {
  margin-bottom: 20px;
  display: block;
}

.aside .nav li a {
  font-size: 16px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid var(--bg-black-50);
  color: var(--text-black-900);
  padding: 5px 15px;
}

.aside .nav li a.active {
  color: var(--skin-color);
}

.aside .nav li a em {
  margin-right: 15px;
}

/* Home */
.home {
  min-height: 100vh;
  display: flex;
  color: var(--text-black-900);
}

.home .home-info {
  flex: 0 0 60%;
  max-width: 60%;
}

h3.hello {
  font-size: 28px;
  margin: 15px 0;
}

h3.hello span {
  font-family: "Clicker Script", cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--skin-color);
}

h3.my-profession {
  font-size: 30px;
  margin: 15px 0;
}

.typing {
  color: var(--skin-color);
}

.home-info p {
  margin-bottom: 70px;
  font-size: 20px;
  color: var(--text-black-700);
}

.home .home-img {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
  position: relative;
}

.home-img::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-bottom: 10px solid var(--skin-color);
  border-right: 10px solid var(--skin-color);
  right: 20px;
  bottom: -40px;
}

.home-img::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 80px;
  border-top: 10px solid var(--skin-color);
  border-left: 10px solid var(--skin-color);
  left: -20px;
  top: -40px;
}

.home .home-img img {
  margin: auto;
  border-radius: 5px;
  height: 400px;
}

/* Enhanced Home Section Styles */
.home .hello .name {
  background: linear-gradient(45deg, var(--skin-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-metrics {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--skin-color);
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 14px;
  color: var(--text-black-700);
  margin-top: 5px;
  font-weight: 500;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-black-700);
  margin-bottom: 25px;
}

.availability-status {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 12px 20px;
  background-color: rgba(var(--skin-color-rgb), 0.1);
  border-radius: 25px;
  border: 1px solid var(--skin-color);
  width: fit-content;
}

.status-indicator {
  width: 12px;
  height: 12px;
  background-color: #4CAF50;
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.status-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--skin-color);
}

.home-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* Floating Tech Elements */
.home-img {
  position: relative;
}

.tech-float {
  position: absolute;
  background-color: var(--bg-black-100);
  border: 2px solid var(--skin-color);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--skin-color);
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tech-float-1 {
  top: 20%;
  right: -10px;
  animation-delay: 0s;
}

.tech-float-2 {
  top: 50%;
  left: -20px;
  animation-delay: 1s;
}

.tech-float-3 {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .impact-metrics {
    justify-content: center;
    gap: 20px;
  }
  
  .home-buttons {
    justify-content: center;
  }
  
  .tech-float {
    display: none;
  }
}

@media (max-width: 626px) {
  .impact-metrics {
    gap: 15px;
  }
  
  .metric-number {
    font-size: 24px;
  }
  
  .home-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .availability-status {
    margin: 20px auto;
  }
}

/* About */


/* Institution logos in timeline */
.institution-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.institution-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--bg-black-50);
  padding: 5px;
  background-color: var(--bg-black-100);
}

.timeline-content {
  flex: 1;
}

/* Achievement badges */
.achievement-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(var(--skin-color-rgb), 0.1);
  border-radius: 20px;
  border: 1px solid var(--skin-color);
}

.achievement-badge em {
  color: var(--skin-color);
  font-size: 16px;
}

.achievement-badge p {
  margin: 0;
  border: none;
  padding: 0;
}

/* Tech icons in skills */
.skill-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tech-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Add hover effects */
.institution-logo:hover,
.tech-icon:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}









.about .about-content {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .about-text h3 {
  text-align: justify;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--text-black-900);
}

.about .about-content .about-text h3 span {
  color: var(--skin-color);
}

.about .about-content .about-text p {
  text-align: justify;
  font-size: 16px;
  line-height: 25px;
  color: var(--text-black-700);
}

.about .about-content .personal-info {
  flex: 0 0 60%;
  max-width: 60%;
  margin-top: 40px;
}

.about .about-content .personal-info .info-item {
  flex: 0 0 50%;
  max-width: 50%;
}

.about .about-content .personal-info .info-item p {
  font-weight: 600;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-black-900);
  border-bottom: 1px solid var(--bg-black-50);
}

.about .about-content .personal-info .info-item p span {
  font-weight: 400;
  color: var(--text-black-700);
  margin-left: 4px;
  display: inline-block;
}

.about .about-content .personal-info .buttons {
  margin-top: 30px;
}

.about .about-content .personal-info .buttons .btn {
  margin-top: 10px;
}

.about .about-content .skills {
  flex: 0 0 40%;
  max-width: 40%;
  margin-top: 40px;
}

.about .about-content .skills .skill-item {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 25px;
}

.about .about-content .skills .skill-item h5 {
  line-height: 40px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-black-900);
  text-transform: capitalize;
}

.about .about-content .skills .skill-item .progress {
  background-color: var(--bg-black-50);
  height: 7px;
  width: 100%;
  border-radius: 4px;
  position: relative;
}

.about .about-content .skills .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
  background-color: var(--skin-color);
}

.about .about-content .skills .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -40px;
  font-weight: 400;
  line-height: 40px;
  color: var(--text-black-900);
}

.about .about-content .education,
.about .about-content .experience {
  flex: 0 0 50%;
  max-width: 50%;
  margin-top: 30px;
}

.about .about-content h3.title {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--text-black-900);
}

.about .about-content .timeline-box {
  flex: 0 0 100%;
  max-width: 100%;
}

.about .about-content .timeline {
  background-color: var(--bg-black-100);
  padding: 30px 15px;
  border: 1px solid var(--bg-black-50);
  border-radius: 10px;
  width: 100%;
  position: relative;
}

.about .about-content .timeline .timeline-item {
  position: relative;
  padding-left: 37px;
  padding-bottom: 50px;
}

.about .about-content .timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.about .about-content .timeline .timeline-item::before {
  content: "";
  width: 1px;
  height: 100%;
  left: 7px;
  top: 0;
  position: absolute;
  background-color: var(--skin-color);
}

.about .about-content .timeline .circle-dot {
  position: absolute;
  left: 0;
  top: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: var(--skin-color);
}

.about .about-content .timeline .timeline-date {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-black-700);
}

.about .about-content .timeline .timeline-date .fa {
  margin-right: 5px;
}

.about .about-content .timeline .timeline-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: var(--text-black-900);
}

.about .about-content .timeline .timeline-text {
  line-height: 25px;
  font-size: 16px;
  text-align: justify;
  color: var(--text-black-700);
}


/* Language Switcher Styles */
.language-switcher {
  position: absolute;
  top: 10px;
  right: 90px;
  z-index: 999;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-switcher select {
  font-size: 16px;
  padding: 5px;
}



/* Service */
.service .container {
  padding-bottom: 40px;
}

.service .service-item {
  margin-bottom: 30px;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.service .service-item .service-item-inner {
  background-color: var(--bg-black-100);
  border: 1px solid var(--bg-black-50);
  border-radius: 10px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.35s ease;
}

.service .service-item .service-item-inner:hover {
  box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

.service .service-item .service-item-inner .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.service .service-item .service-item-inner .icon .fa {
  font-size: 40px;
  line-height: 60px;
  color: var(--skin-color);
  transition: all 0.3s ease;
}

.service .service-item .service-item-inner:hover .icon {
  background-color: var(--skin-color);
}

.service .service-item .service-item-inner:hover .icon .fa {
  font-size: 25px;
  color: #ffffff;
}

.service .service-item .service-item-inner h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: var(--text-black-900);
}

.service .service-item .service-item-inner p {
  font-size: 16px;
  color: var(--text-black-700);
  line-height: 25px;
}























/*Technnologies*/
/* Enhanced filter buttons for more categories */
.tech-filter-btn {
  font-size: 13px;
  padding: 10px 18px;
  margin: 5px 6px;
  white-space: nowrap;
}

/* Better responsive for more filter buttons */
@media (max-width: 768px) {
  .tech-filter {
    text-align: left;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
  
  .tech-filter-btn {
    display: inline-block;
    margin: 5px 4px;
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* Logo adjustments for different sources */
.tech-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  border-radius: 8px;
  padding: 2px;
}

/* Special handling for logos with backgrounds */
.tech-card-inner .tech-logo[src*="make.com"],
.tech-card-inner .tech-logo[src*="n8n"],
.tech-card-inner .tech-logo[src*="flowiseai"] {
  background-color: white;
  padding: 6px;
  border-radius: 10px;
}

/* Grid adjustments for more cards */
@media (max-width: 1200px) {
  .tech-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .tech-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ========================= Enhanced Technology Section Styles ========================= */

/* Search input styling */
.tech-search {
  transition: all 0.3s ease;
  background-color: var(--bg-black-100);
  color: var(--text-black-900);
}

.tech-search:focus {
  border-color: var(--skin-color);
  box-shadow: 0 0 0 3px rgba(var(--skin-color-rgb), 0.1);
}

/* Skill stats styling */
.skill-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px !important;
}

.skill-stats span {
  background-color: var(--bg-black-100);
  padding: 5px 12px;
  border-radius: 15px;
  border: 1px solid var(--bg-black-50);
  font-size: 13px !important;
}

/* Expanded card styling */
.tech-card.expanded .tech-card-inner {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--skin-color);
  z-index: 10;
  position: relative;
}

.tech-card.expanded .tech-description {
  max-height: none !important;
  transition: max-height 0.3s ease;
}

/* Staggered animation for filter */
.tech-card {
  transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.tech-card.hide {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
}

/* Logo loading state */
.tech-logo {
  transition: all 0.3s ease;
}

.tech-logo:not([src]) {
  background-color: var(--bg-black-50);
  opacity: 0.5;
}

/* Special category indicators */
.tech-card[data-category*="expert"] .tech-header::after {
  content: "⭐";
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 16px;
}

.tech-card[data-category*="automation"] .tech-header::before {
  content: "🤖";
  position: absolute;
  top: -5px;
  left: -5px;
  font-size: 14px;
}

/* Mobile enhancements */
@media (max-width: 768px) {
  .skill-stats {
    font-size: 12px !important;
  }
  
  .skill-stats span {
    margin: 2px !important;
    padding: 3px 8px;
    font-size: 11px !important;
  }
  
  .tech-search {
    width: 100%;
    margin: 10px 0;
  }
}

/* Dark mode support */
body.dark .tech-search {
  background-color: var(--bg-black-50);
  color: var(--text-black-900);
  border-color: var(--bg-black-50);
}

body.dark .skill-stats span {
  background-color: var(--bg-black-50);
  border-color: var(--bg-black-50);
}










/* ========================= Modern Technologies Section ========================= */
.techno .section-title h2 {
  margin-bottom: 50px;
}

/* Filter Buttons */
.tech-filter {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.tech-filter-btn {
  background-color: var(--bg-black-100);
  color: var(--text-black-900);
  border: 1px solid var(--bg-black-50);
  padding: 12px 24px;
  margin: 0 8px 10px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.tech-filter-btn:hover,
.tech-filter-btn.active {
  background-color: var(--skin-color);
  color: white;
  border-color: var(--skin-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Technologies Grid */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tech-card {
  flex: 0 0 calc(33.33% - 15px);
  max-width: calc(33.33% - 15px);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.tech-card.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.tech-card-inner {
  background-color: var(--bg-black-100);
  border: 1px solid var(--bg-black-50);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--skin-color), #ff6b35);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--skin-color);
}

.tech-card-inner:hover::before {
  transform: scaleX(1);
}

/* Technology Header */
.tech-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.tech-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.tech-info {
  flex: 1;
}

.tech-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black-900);
  margin: 0 0 5px 0;
}

.tech-category {
  font-size: 12px;
  color: var(--text-black-700);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Skill Level Badge */
.tech-level {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-level.expert {
  background-color: #28a745;
  color: white;
}

.tech-level.advanced {
  background-color: var(--skin-color);
  color: white;
}

.tech-level.intermediate {
  background-color: #ffc107;
  color: #212529;
}

.tech-level.learning {
  background-color: #6c757d;
  color: white;
}

/* Progress Bar */
.tech-progress {
  background-color: var(--bg-black-50);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--skin-color), #ff6b35);
  border-radius: 3px;
  transition: width 1s ease;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Statistics */
.tech-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.stat-item {
  background-color: rgba(var(--skin-color-rgb, 24, 84, 180), 0.1);
  color: var(--skin-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(var(--skin-color-rgb, 24, 84, 180), 0.2);
}

/* Description */
.tech-description {
  font-size: 13px;
  color: var(--text-black-700);
  line-height: 1.5;
  margin: 0;
}

/* Dark Mode Support */
body.dark .tech-card-inner {
  background-color: var(--bg-black-50);
  border-color: var(--bg-black-50);
}

body.dark .tech-card-inner:hover {
  background-color: var(--bg-black-100);
}

/* Responsive Design */
@media (max-width: 991px) {
  .tech-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 626px) {
  .tech-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .tech-filter-btn {
    margin: 5px 4px;
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .tech-header {
    gap: 12px;
  }
  
  .tech-logo {
    width: 35px;
    height: 35px;
  }
}
/* Technologies Section */
.techno .container {
  padding-bottom: 40px;
}

.techno .techno-item {
  margin-bottom: 30px;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.techno .techno-item .techno-item-inner {
  background-color: var(--bg-black-100);
  /* Light mode background */
  border: 1px solid var(--bg-black-50);
  border-radius: 10px;
  padding: 30px 15px;
  text-align: center;
  transition: all 0.35s ease;
}

/* Hover effect for each technology item */
.techno .techno-item .techno-item-inner:hover {
  box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

/* Icon Style */
.techno .techno-item .techno-item-inner .icon {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 30px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Icon color */
.techno .techno-item .techno-item-inner .icon .fa {
  font-size: 40px;
  line-height: 60px;
  color: var(--skin-color);
  /* Light mode icon color */
  transition: all 0.3s ease;
}

/* Hover effect for icon in technologies */
.techno .techno-item .techno-item-inner:hover .icon {
  background-color: var(--skin-color);
}

.techno .techno-item .techno-item-inner:hover .icon .fa {
  font-size: 25px;
  color: #ffffff;
}

/* Technology Name */
.techno .techno-item .techno-item-inner h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: var(--text-black-900);
  /* Light mode text color */
}

/* Technology Description */
.techno .techno-item .techno-item-inner p {
  font-size: 16px;
  color: var(--text-black-700);
  /* Light mode description color */
  line-height: 25px;
}

/* Dark Mode Adjustments */
body.dark .techno .techno-item .techno-item-inner {
  background-color: var(--bg-black-50);
  /* Dark mode background */
}

body.dark .techno .techno-item .techno-item-inner h4 {
  color: var(--text-black-700);
  /* Dark mode technology name color */
}

body.dark .techno .techno-item .techno-item-inner p {
  color: var(--text-black-700);
  /* Dark mode description color */
}

body.dark .techno-item .techno-item-inner:hover .icon .fa {
  font-size: 25px;
  color: #ffffff;
}
body.dark .techno .techno-item .techno-item-inner .icon .fa {
  color: var(--skin-color);
  /* Icon color in dark mode */
}



/* Progress bar container adjustments */
.techno .techno-item .techno-item-inner .techno-list {
  display: block;
}

.techno .techno-item .techno-item-inner .techno-list .skill-item {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.techno .techno-item .techno-item-inner .techno-list .skill-item h5 {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-black-900);
}

.techno .techno-item .techno-item-inner .techno-list .skill-item .progress {
  background-color: var(--bg-black-50);
  height: 8px;
  /* Adjust the height for better display */
  width: 100%;
  border-radius: 4px;
  position: relative;
}

.techno .techno-item .techno-item-inner .techno-list .skill-item .progress .progress-in {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 4px;
  background-color: var(--skin-color);
  transition: width 0.5s ease-in-out;
}

.techno .techno-item .techno-item-inner .techno-list .skill-item .skill-percent {
  position: absolute;
  right: 0;
  top: -25px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-black-900);
}



/* Logo of technologies */
.tech-logo {
  margin-top: 0;
  margin-right: 15px;
  /* Add spacing between the logo and the text */
  display: inline-flex;
  align-items: center;
}

/* Image inside the logo container */
.tech-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 10px;
  /* Space between the logo and the name */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .techno .techno-item {
    flex: 0 0 50%;
    /* Two items per row for tablets */
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .techno .techno-item {
    flex: 0 0 100%;
    /* One item per row for mobile */
    max-width: 100%;
  }
}




























/* Portfolio */

/* Portfolio Filter */
.portfolio-filter {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  text-align: center;
}

.filter-item {
  background-color: var(--bg-black-100);
  color: var(--text-black-900);
  border: 1px solid var(--bg-black-50);
  padding: 10px 20px;
  margin: 0 5px 10px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-item:hover,
.filter-item.active {
  background-color: var(--skin-color);
  color: white;
  border-color: var(--skin-color);
}

/* Portfolio Grid */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
}

.portfolio-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.portfolio-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.portfolio-item-inner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

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

.portfolio-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.05);
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Tech Stack Tags */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.tech-tag {
  background-color: var(--skin-color);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

/* Portfolio Actions */
.portfolio-actions {
  display: flex;
  gap: 10px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 20px;
  background-color: var(--skin-color);
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-small.disabled {
  background-color: #666;
  cursor: not-allowed;
}

.btn-small.disabled:hover {
  transform: none;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: var(--bg-black-100);
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.close {
  color: var(--text-black-700);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--skin-color);
}

/* Responsive Design */
@media (max-width: 991px) {
  .portfolio-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 626px) {
  .portfolio-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .filter-item {
    margin: 5px 3px;
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .tech-stack {
    gap: 5px;
  }
  
  .portfolio-actions {
    flex-direction: column;
    gap: 8px;
  }
}
.portfolio .container {
  padding-bottom: 40px;
}

.portfolio .portfolio-heading {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

.portfolio .portfolio-heading h2 {
  color: var(--text-black-900);
  font-weight: 500;
}

.portfolio .portfolio-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 30px;
  transition: 0.3s;
}

.portfolio .portfolio-item:hover {
  transform: scale(1.15);
}

.portfolio .portfolio-item-inner {
  border: 6px solid var(--bg-black-100);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.portfolio .portfolio-item-inner .portfolio-img img {
  width: 100%;
  height: 200px;
  display: block;
}






/* ========================= Blog Section ========================= */
.blog .section-subtitle {
  text-align: center;
  color: var(--text-black-700);
  font-size: 16px;
  margin-top: 10px;
  font-style: italic;
}

/* Blog Controls */
.blog-controls {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-filter-btn {
  background-color: var(--bg-black-100);
  color: var(--text-black-900);
  border: 1px solid var(--bg-black-50);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background-color: var(--skin-color);
  color: white;
  border-color: var(--skin-color);
  transform: translateY(-2px);
}

/* Blog Search */
.blog-search {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-search-input {
  padding: 12px 45px 12px 20px;
  border: 1px solid var(--bg-black-50);
  border-radius: 25px;
  background-color: var(--bg-black-100);
  color: var(--text-black-900);
  font-size: 14px;
  width: 250px;
  outline: none;
  transition: all 0.3s ease;
}

.blog-search-input:focus {
  border-color: var(--skin-color);
  box-shadow: 0 0 0 3px rgba(var(--skin-color-rgb), 0.1);
}

.blog-search .fa-search {
  position: absolute;
  right: 18px;
  color: var(--text-black-700);
  font-size: 14px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
}

.blog-item {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.blog-item-inner {
  background-color: var(--bg-black-100);
  border: 1px solid var(--bg-black-50);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-item-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: var(--skin-color);
}

/* Blog Image */
.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-item-inner:hover .blog-img img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--skin-color);
  color: white;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  min-width: 50px;
}

.blog-date .day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.blog-date .month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Blog Content */
.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.blog-category {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-category.projects {
  background-color: #e3f2fd;
  color: #1976d2;
}

.blog-category.tutorials {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

.blog-category.insights {
  background-color: #e8f5e8;
  color: #388e3c;
}

.blog-category.journey {
  background-color: #fff3e0;
  color: #f57c00;
}

.reading-time {
  color: var(--text-black-700);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  margin-bottom: 15px;
}

.blog-title a {
  color: var(--text-black-900);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--skin-color);
}

.blog-excerpt {
  color: var(--text-black-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* Blog Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-tags .tag {
  background-color: var(--bg-black-50);
  color: var(--text-black-700);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

/* Blog Footer */
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.read-more {
  color: var(--skin-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--text-black-900);
  transform: translateX(5px);
}

.blog-share {
  position: relative;
}

.blog-share .fa-share-alt {
  color: var(--text-black-700);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-share .fa-share-alt:hover {
  background-color: var(--skin-color);
  color: white;
}

.share-options {
  position: absolute;
  top: -45px;
  right: 0;
  background-color: white;
  border: 1px solid var(--bg-black-50);
  border-radius: 8px;
  padding: 8px;
  display: none;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-share:hover .share-options {
  display: flex;
}

.share-options a {
  color: var(--text-black-700);
  padding: 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.share-linkedin:hover {
  background-color: #0077b5;
  color: white;
}

.share-twitter:hover {
  background-color: #1da1f2;
  color: white;
}

/* Load More Button */
.blog-load-more {
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 20px;
}

.load-more-btn {
  background-color: transparent;
  color: var(--skin-color);
  border: 2px solid var(--skin-color);
}

.load-more-btn:hover {
  background-color: var(--skin-color);
  color: white;
}

/* Blog Modal */
.blog-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  overflow-y: auto;
}

.blog-modal-content {
  background-color: var(--bg-black-100);
  margin: 2% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.blog-modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--bg-black-50);
  position: sticky;
  top: 0;
  background-color: var(--bg-black-100);
  z-index: 1001;
}

.blog-modal-close {
  color: var(--text-black-700);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.blog-modal-close:hover {
  color: var(--skin-color);
}

.blog-modal-body {
  padding: 30px;
  line-height: 1.8;
  color: var(--text-black-900);
}

/* Responsive Design */
@media (max-width: 991px) {
  .blog-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .blog-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .blog-filters {
    justify-content: center;
  }
  
  .blog-search-input {
    width: 100%;
  }
}

@media (max-width: 626px) {
  .blog-filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-img {
    height: 150px;
  }
  
  .blog-modal-content {
    width: 95%;
    margin: 1% auto;
  }
  
  .blog-modal-body {
    padding: 20px;
  }
}

/* Dark Mode Support */
body.dark .blog-modal-content {
  background-color: var(--bg-black-50);
}

body.dark .blog-modal-header {
  background-color: var(--bg-black-50);
  border-color: var(--bg-black-50);
}







/* Contact */

/* Contact Links Styling */
.contact-info-item a {
  color: var(--text-black-700);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-info-item a:hover {
  color: var(--skin-color);
  transform: translateY(-2px);
}

/* Phone and Email hover effects */
.contact-info-item a[href^="tel:"]:hover,
.contact-info-item a[href^="mailto:"]:hover {
  text-decoration: underline;
}

/* Social links hover effects */
.contact-info-item a[href*="github"]:hover,
.contact-info-item a[href*="linkedin"]:hover {
  font-weight: 600;
}

/* Contact form enhancements */
.contact-form {
  position: relative;
}

.form-status {
  display: none;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-status.loading {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Loading spinner for submit button */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.contact-title {
  color: var(--skin-color);
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.contact-sub-title {
  color: var(--text-black-900);
  text-align: center;
  font-size: 15px;
  margin-bottom: 60px;
}

.contact .contact-info-item {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  margin-bottom: 60px;
}

.contact .contact-info-item .icon {
  display: inline-block;
}

.contact .contact-info-item .icon .fa,
.fa-solid,
.fa-brands {
  font-size: 25px;
  color: var(--skin-color);
}

.contact .contact-info-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-black-900);
  text-transform: capitalize;
  margin: 15px 0 5px;
}

.contact .contact-info-item p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: var(--text-black-700);
}

.contact .contact-form {
  flex: 0 0 100%;
  max-width: 100%;
}

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

.contact .contact-form .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.contact .contact-form .form-item {
  margin-bottom: 30px;
}

.contact .contact-form .form-item .form-control {
  width: 100%;
  height: 50px;
  padding: 10px 25px;
  border-radius: 25px;
  border: 1px solid var(--bg-black-50);
  background-color: var(--bg-black-100);
  font-size: 16px;
  color: var(--text-black-700);
  transition: all 0.3s ease;
}

.contact .contact-form .form-item .form-control:focus {
  box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

.contact .contact-form .form-item textarea.form-control {
  height: 140px;
}

.contact .contact-form .btn {
  height: 50px;
  padding: 0 50px;
}

@media (max-width: 1199px) {
  .aside {
    left: -270px;
  }

  .aside.open {
    left: 0;
  }

  .aside .nav-toggler {
    display: flex;
    left: 30px;
  }

  .aside .nav-toggler.open {
    left: 300px;
  }

  .section {
    left: 0;
  }

  .section .container {
    padding-top: 70px;
  }

  .section.open {
    left: 270px;
  }

  .about .about-content .personal-info .info-item p span {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 1029px) {
  .about .about-content .personal-info,
  .about .about-content .skills {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .home .home-info {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home .home-img {
    display: none;
  }

  .service .service-item,
  .portfolio .portfolio-item,
  .contact .contact-info-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .about .about-content .education,
  .about .about-content .experience {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 626px) {
  .about .about-content .personal-info .row {
    display: block;
  }

  .service .service-item,
  .portfolio .portfolio-item,
  .contact .contact-info-item,
  .contact .contact-form .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}



/* TEMPORARY - ADD AT THE VERY END OF style.css */
.blog.section {
  background-color: #f2f2fc !important;
  min-height: 100vh !important;
  display: block !important;
}

.blog-item-inner {
  background-color: #fdf9ff !important;
  border: 2px solid #ec1839 !important;
  border-radius: 15px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
}

.blog-filter-btn {
  background-color: #fdf9ff !important;
  border: 1px solid #e8dfec !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  margin: 5px !important;
  cursor: pointer !important;
}

.blog-filter-btn.active {
  background-color: #ec1839 !important;
  color: white !important;
}

