body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
  /* Hide scrollbar visuals */
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge */
}
#header::-webkit-scrollbar {      /* Chrome/Safari */
  width: 0;
  height: 0;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
}

#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: #fff;
  text-decoration: none;
}

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

#header .profile .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#header .sidebar-copyright {
  margin-top: auto;
  padding: 12px 0 16px 0;
  text-align: center;
  color: #a8a9b4;
  font-size: 12px;
}


#main {
  margin-left: 300px;
}

.container,
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

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

  #main {
    margin-left: 0;
  }

  .container,
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

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

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

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

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

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

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

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/mm.jpg") top center;
  background-size: cover;
}

@media (min-width: 1200px) {
  #hero {

    background-position: center;
  }
}

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

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #0a0202;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #149ddd;
}

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

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}

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

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.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: #fff;
  border: 2px solid #1f5297;
}
/*--------------------------------------------------------------
# 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;
  }
}
/* Add this CSS in your stylesheet or in a <style> tag in the HTML document */
.contact-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: bold;
}

.btn-send {
  background-color: #149ddd;
  color: #fff;
  border: none;
}

.btn-send:hover {
  background-color: #0099cc;
}
/* Add this CSS in your stylesheet or in a <style> tag in the HTML document */
.profile-image {
  max-width: 100px;
  max-height: 100px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.icon-box {
  margin-right: 20px;
  /* Adjust this value to control the horizontal gap */
  display: inline-block;
  /* Display the profiles in a horizontal row */
}

/* Remove the margin from the last icon-box to prevent extra spacing */
.icon-box:last-child {
  margin-right: 0;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .icon-box {
    margin-right: 10px;
    /* Reduce the horizontal gap for smaller screens */
  }
}

/* Add custom CSS for the Coding Profile section */
.coding-profile {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.round-image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.round-image-container img {
  max-width: 100%;

  display: block;
}

.coding-profiles {

  padding: 60px 0;

  .profile {
    text-align: center;
  }
}

.profile-image {
  max-width: 64px;
  /* Adjust the image size as needed */
  display: block;
  margin: 0 auto;
  /* Center the image horizontally */
}

.profile .title {
  font-size: 18px;
  /* Adjust title font size */
  margin-top: 10px;
  /* Add margin as needed */
}

.profile .description {
  font-size: 14px;
  /* Adjust description font size */
}

.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #149ddd;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  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: #050d18;
}

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

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

.twitter i {
  font-size: .7em;
}

.twitter-x i {
  font-size: .8em;
}

.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #149ddd;
  color: #fff;
}

.social-links {
  text-align: center;
}

.social-links a {
  font-size: 34px;
  margin: 0 10px;
}

a.underline {
  text-decoration: underline;
}
/* Profile Views Section */
.profile-views-section {
  text-align: center;
  color: #149ddd;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px; /* Adjust spacing as needed */
}

/* Header Styles */
.profile-views-section h1 {
  font-size: 2rem;
  margin: 0;
}

/* Responsive Font Size */
@media (max-width: 600px) {
  .profile-views-section h1 {
      font-size: 1.5rem;
  }
}
/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .card-img-top {
    height: 300px; /* Adjust height for tablets and smaller devices */
  }

  .card-body {
    padding: 30px; /* Adjust padding for smaller screens */
  }
}

@media (max-width: 768px) {
  .card-img-top {
    height: 250px; /* Smaller height for mobile devices */
  }

  .card-body {
    padding: 20px; /* Further reduce padding for mobile */
  }
}

@media (max-width: 576px) {
  .card-img-top {
    height: 200px; /* Smallest height for very small screens */
  }

  .card-body {
    padding: 15px; /* Minimum padding for small screens */
  }

  .overlay {
    padding: 15px; /* Adjust overlay padding for small screens */
  }
}

/* resume download */
  .custom-btn {
    /* background-color: white; */
    color: #149ddd;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #149ddd;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .custom-btn:hover {
    background-color: #149ddd;
    color: white;
  }
  /* // ... existing code ... */
/* Modern Card-Style Projects Section with Light Blue and White Background */
#projects {
  background-color: white;
  padding: 80px 0;
}

#projects .section-title h2 {
  text-align: left;
  color: #0a192f;
  margin-bottom: 30px;
}

#projects .section-title h2::after {
  left: 0;
  transform: none;
  background: #149ddd;
}

#projects .section-title p {
  text-align: left;
  max-width: 700px;
  margin: 0 0 50px;
  color: #555;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  height: 450px;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
}

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

.project-image {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eaeaea;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-info {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 15px;
}

.project-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
  background-color: transparent;
  color: #149ddd;
  border: 1px solid #149ddd;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-link:hover {
  background-color: #149ddd;
  color: white;
}

.project-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .project-card {
    height: 430px;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
/* // ... existing code ... */
/* About Section Styling */
.about {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.about-image-container {
  flex: 0 0 300px;
}

.about-image-wrapper {
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}

.about-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 10px 10px 0 0;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-social {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 15px;
}

.social-icon {
  background-color: #f5f5f5;
  color: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #149ddd;
  color: white;
  transform: translateY(-3px);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-header {
  margin-bottom: 30px;
}

.about-header h3 {
  color: #0a192f;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-tagline {
  color: #555;
  font-size: 1.1rem;
  font-style: italic;
  padding-left: 2px;
}

.about-tabs {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Updated Tab Navigation */
.tab-nav {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  background: none;
  border: none;
  padding: 15px 25px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  flex: 1;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #149ddd;
  transition: width 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
  color: #149ddd;
}

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

/* Updated Tab Content */
.tab-content {
  display: none;
  padding: 25px;
  animation: fadeIn 0.5s ease;
}

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

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

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

.info-item i {
  font-size: 28px;
  color: #149ddd;
}

/* Company logo in Experience */
.info-item .company-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.info-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0a192f;
}

.info-text p {
  color: #555;
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #eaeaea;
  left: 0;
  top: 0;
}

.timeline-item {
  position: relative;
  padding-bottom: 25px;
}

.timeline-dot {
  position: absolute;
  left: -29px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #149ddd;
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  padding-left: 15px;
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #0a192f;
}

.about-contact {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-link {
  color: #149ddd;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s;
}

.contact-link:hover {
  color: #0a192f;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }
  
  .about-image-container {
    margin-bottom: 30px;
  }
  
  .tab-nav {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .info-item {
    flex-direction: column;
  }
  
  .info-item i {
    margin-bottom: 10px;
  }
}
/* Modern Skills Section Styling */
.skills {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.skills-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.skill-category {
  padding-bottom: 30px;
}

.category-title {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #149ddd;
}

.category-title i {
  color: #149ddd;
  font-size: 24px;
  margin-right: 15px;
}

.category-title h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

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

.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(20, 157, 221, 0.15);
}

.skill-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.skill-card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  text-align: center;
}

/* Animation for skill cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skill-card {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.skill-grid:nth-child(1) .skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-grid:nth-child(1) .skill-card:nth-child(2) { animation-delay: 0.15s; }
.skill-grid:nth-child(1) .skill-card:nth-child(3) { animation-delay: 0.2s; }
.skill-grid:nth-child(1) .skill-card:nth-child(4) { animation-delay: 0.25s; }
.skill-grid:nth-child(1) .skill-card:nth-child(5) { animation-delay: 0.3s; }
.skill-grid:nth-child(1) .skill-card:nth-child(6) { animation-delay: 0.35s; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .skill-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .skill-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
  }
  
  .skill-card {
    padding: 15px 10px;
  }
  
  .skill-card img {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 576px) {
  .category-title h3 {
    font-size: 1.3rem;
  }
  
  .skill-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
  }
  
  .skill-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .skill-card span {
    font-size: 0.85rem;
  }
}
/* Light Terminal-Themed Coding Profiles Section */
.coding-profiles {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.terminal-container {
  max-width: 850px;
  margin: 40px auto;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.terminal-header {
  background-color: #f1f1f1;
  padding: 12px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.terminal-title {
  color: #333;
  font-size: 0.95rem;
  font-family: 'Consolas', 'Monaco', monospace;
  font-weight: 600;
}

.terminal-body {
  padding: 20px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Consolas', 'Monaco', monospace;
}

.command-line {
  margin-bottom: 20px;
  display: flex;
  font-size: 0.95rem;
}

.prompt {
  color: #149ddd;
  margin-right: 5px;
  font-weight: 600;
}

.command {
  color: #333;
}

.terminal-output {
  margin-bottom: 25px;
}

.profile-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 15px 0;
}

.profile-tile {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}

.profile-tile:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  border-color: #149ddd;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-container {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.profile-tile:hover .icon-container {
  border-color: #149ddd;
  box-shadow: 0 5px 15px rgba(20, 157, 221, 0.15);
}

.icon-container img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.profile-details {
  flex-grow: 1;
}

.profile-name {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-cmd {
  color: #666;
  font-size: 0.85rem;
  font-family: 'Consolas', 'Monaco', monospace;
}

.cmd-keyword {
  color: #149ddd;
  font-weight: 600;
}

.cmd-symbol {
  color: #333;
}

/* Typing animation */
.typing {
  overflow: hidden;
  white-space: nowrap;
}

.typing-cmd {
  display: inline-block;
  animation: typing 3.5s steps(30, end) infinite;
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid transparent;
}

.cursor {
  display: inline-block;
  width: 10px;
  height: 18px;
  background-color: #149ddd;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes typing {
  0% { width: 0 }
  70% { width: 100% }
  90% { width: 100% }
  100% { width: 0 }
}

@keyframes blink {
  from, to { background-color: transparent }
  50% { background-color: #149ddd }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .profile-tiles {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .terminal-container {
    margin: 30px 15px;
  }
  
  .terminal-header {
    padding: 10px 15px;
  }
  
  .profile-tile {
    padding: 12px;
  }
  
  .icon-container {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
  
  .profile-name {
    font-size: 0.9rem;
  }
  
  .profile-cmd {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .profile-tiles {
    grid-template-columns: 1fr;
  }
  
  .command-line {
    font-size: 0.85rem;
  }
  
  .terminal-title {
    font-size: 0.8rem;
  }
}