@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf");
}

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --text-color: #333;
  --background-color: #f4f4f4;
  --nav-background-color: rgba(68, 68, 68, 0.5);
  --with-color: #fff;
  --bar-color: #111213;
}

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

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}
/* General layout styling */
#wrapper {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Styling for the renamed class */
.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* General layout styling */
.header-container {
  background-color: var(--bar-color);
  color: var(--with-color);
  padding: 10px 20px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 15px;
  padding-top: 15px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 1;
}

.info-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  margin-right: 15px;
}

.info-list a {
  color: var(--with-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.info-list a:hover {
  text-decoration: underline;
}

#social-links {
  display: flex;
  align-items: center;
}

#social-links a {
  margin-left: 15px;
  color: var(--with-color);
  text-decoration: none;
}

#social-links a:hover {
  opacity: 0.8;
}

#social-links img {
  border: none;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}

#social-links img:hover {
  opacity: 0.8;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

/* Languages styling */
.hidden {
  display: none;
}

.language-switcher {
  position: relative;
  font-family: Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  /* Aligns button and dropdown vertically */
}

#language-toggle {
  background-color: transparent;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s ease;
}

#language-toggle:hover {
  background-color: transparent;
  color: var(--primary-border, #ccc);
}

.language-switcher ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Center horizontally */
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgb(255, 255, 255, 0.3);
  border: 1px solid var(--primary-border, #ccc);
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  /* Initially hidden */
  z-index: 1000;
  overflow: hidden;
}

.language-switcher ul li {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.language-switcher ul li a {
  color: var(--text-color, #333);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.language-switcher ul li:hover {
  background-color: var(--hover-color, #f5f5f5);
}

.language-switcher ul:not(.hidden) {
  display: block;
}

.language-switcher ul li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  text-align: center;
}

.language-switcher ul li:last-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  text-align: center;
}

/* For the hamburger menu icon */
/* Mobile Navigation Styles */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-color, #333);
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
  transition: all 0.3s ease;
}

.menu-toggle .hamburger-icon {
  display: block;
}

.menu-toggle.active .hamburger-icon {
  transform: rotate(90deg);
}

/* Language Switcher Styles */
.language-switcher {
  position: relative;
}

.language-switcher #language-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.language-switcher #language-options {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--background-color, #fff);
  border: 1px solid var(--border-color, #ddd);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  min-width: 80px;
  z-index: 1000;
}

.language-switcher #language-options.hidden {
  display: none;
}

.language-switcher #language-options li {
  padding: 2px;
  margin: 2px;
  text-align: center;
}

.language-switcher #language-options li:hover {
  background-color: var(--hover-background-color, #f0f0f0);
}


/* Navigation styling */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--nav-background-color);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Enhanced Navigation Menu */
nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: var(--with-color);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Refined Menu Toggle */
.menu-toggle .hamburger-icon {
  display: block;
  position: relative;
  width: 25px;
  height: 3px;
  background-color: var(--with-color);
  transition: all 0.3s ease;
}

.menu-toggle .hamburger-icon::before,
.menu-toggle .hamburger-icon::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--with-color);
  transition: all 0.3s ease;
}

#slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}

.slide-title {
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 3px;
  line-height: 1.2;
}

/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.services-section .section-title {
  text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.services-section .section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

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

.services-category {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.services-category:hover {
  transform: translateY(-10px);
}

.services-category h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

.services-category ul {
  list-style-type: none;
  padding: 0;
}

.services-category ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ecf0f1;
  color: #34495e;
}

.services-category ul li:last-child {
  border-bottom: none;
}

#skills {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

#skills .container {
  max-width: 1200px;
  margin: 0 auto;
}

#skills .section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

#skills .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

#skills .skills-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

#skills .skills-domains,
#skills .skills-technologies {
  flex: 1;
}

#skills .domain {
  margin-bottom: 20px;
}

#skills .domain h3 {
  /* font-size: 1.2rem; */
  color: #678cb3fc;
  margin-bottom: 10px;
}

#skills .domain p {
  font-size: 0.9rem;
  /* color: #555; */
  margin-bottom: 5px;

  padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    
}

#skills .domain span {
  font-size: 0.85rem;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

#skills .skills-technologies h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}

#skills .technologies-list {
  list-style: none;
  padding: 0;
}

#skills .technologies-list li {
  margin-bottom: 15px;
}

#skills .technologies-list span {
  font-size: 0.9rem;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

#skills .bar {
  background-color: #c9ccd1;
  height: 30px;
}

.skills-banner {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skills-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  z-index: 1;
}

.skills-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.skills-banner img:hover {
  transform: scale(1.05);
}

#custom-solutions {
  background: #000; 
  color: #fff; 
  text-align: center;
  padding: 50px 20px;
}

#custom-solutions .container {
  max-width: 1200px;
  margin: 0 auto;
}

#custom-solutions .quote {
      font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

#custom-solutions .quote span {
  font-size: 40px;
  color: #fff;
}

#custom-solutions .solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#custom-solutions .solution-item {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}

#custom-solutions .solution-item img {
  width: 80px; 
  height: 80px; 
  border-radius: 50%; 
  background: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  margin: 0 auto 15px; 
  padding: 15px; 
}

#custom-solutions .solution-item img img {
  width: 40px; 
  height: 40px;
}

#custom-solutions .solution-item p {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

#portfolio {
  background-color: #f9f9f9;
  padding: 80px 0;
}
#skills .container {
  max-width: 1200px;
  margin: 0 auto;
}

#portfolio .section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

#portfolio .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.portfolio-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.portfolio-image img {
 width: 350px;
 height: 330px;
  object-fit: cover;
}

.portfolio-content {
  padding: 20px;
}

.portfolio-content h3 {
  color: #333;
  margin-bottom: 10px;
}

.portfolio-technologies {
  color: #666;
  margin: 10px 0;
  font-style: italic;
}

.portfolio-content .btn-primary {
  display: inline-block;
  margin-top: 10px;
  background-color: #678cb3fc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.portfolio-content .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.static-background {
  background: url('/assets/images/bg_animate_04.jpg') no-repeat center center fixed; 
  background-size: cover;
  height: 400px; 
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.static-background h1 {
  font-size: 2rem; 
  margin: 0;
}

/* About Me Section Styles */
.about-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.about-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-skills h4 {
  color: #444;
  margin-bottom: 15px;
}

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

.about-skills ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555;
}

.about-skills ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}

.about-image {
  flex: 0 0 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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


#about-me {
  background-color: #f9f9f9;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

#about-me .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

#about-me h2 {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
}

#about-me .about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#about-me .about-content .intro,
#about-me .about-content .skills {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#about-me .about-content .intro h3,
#about-me .about-content .skills h3 {
  font-size: 1.6rem;
  color: #444;
  margin-bottom: 15px;
}

#about-me .about-content .intro p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

#about-me .about-content .skills ul li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

#about-me .about-content .skills ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #4CAF50;
  font-size: 1.2rem;
}



#contact {
  background-color: #f4f4f4;
  padding: 50px 0;
  text-align: center;
}

#contact .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

#contact h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2rem;
}

#contact .contact-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.contact-info-item {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.contact-info-item i {
  font-size: 1.2rem;
  color: #678cb3fc;
  margin-bottom: 15px;
}

.contact-info-item h3 {
  color: #333;
  margin-bottom: 10px;
}

.contact-info-item p {
  color: #666;
  font-weight: bold;
}

.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

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

.contact-form .btn-submit {
  background-color: #678cb3fc;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn-submit:hover {
  background-color: black;
}

footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #eef3ef;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7a7c7a;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #7a7c7a;
  transform: scale(1.1);
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-menu-item a {
  color: #aaa;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu-item a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 20px;
}

/* Scroll to Top Button */
#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#scroll-to-top.show {
  opacity: 1;
}

#scroll-to-top:hover {
  background-color: var(--secondary-color);
}

#scroll-to-top i {
  font-size: 20px;
}

/* General Media Queries */
@media (max-width: 1024px) {
  .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .portfolio-image img {
      height: auto;
  }
}

@media (max-width: 768px) {
  /* Contact Section */
  .contact-info {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  
  .contact-info-item {
      width: 100%;
      max-width: 350px;
  }

  /* About Section */
  .about-content {
      flex-direction: column;
      gap: 30px;
  }

  .about-image {
      flex: 0 0 250px;
  }

  /* Footer Section */
  .footer-content {
      flex-direction: column;
      align-items: center;
  }

  .footer-section {
      text-align: center;
      width: 100%;
      margin-bottom: 20px;
  }

  /* Header Section */
  .header-top {
      flex-direction: column;
      align-items: center;
      padding: 15px 10px;
      gap: 15px;
  }

  .header-top .logo {
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .header-top .logo img {
      max-width: 120px;
      height: auto;
  }

  /* Info List */
  .info-list {
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  .info-list li {
      margin: 5px 0;
      text-align: center;
  }

  /* Social Links */
  #social-links {
      justify-content: center;
      width: 100%;
      margin-top: 10px;
  }

  #social-links a {
      margin: 0 10px;
      font-size: 16px;
  }

  #social-links img {
      width: 24px;
      height: 24px;
  }

  /* Navigation */
  nav {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
  }

  .menu-toggle {
      display: block;
      position: relative;
      width: 40px;
      height: 30px;
  }

  .hamburger-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 25px;
      height: 3px;
      background-color: var(--white-color);
      transition: all 0.3s ease;
  }

  .hamburger-icon::before,
  .hamburger-icon::after {
      content: '';
      display: block;
      position: absolute;
      width: 25px;
      height: 3px;
      background-color: var(--white-color);
      transition: all 0.3s ease;
  }

  .hamburger-icon::before {
      top: -8px;
  }

  .hamburger-icon::after {
      bottom: -8px;
  }

  .menu-toggle.active .hamburger-icon {
      background-color: transparent;
  }

  .menu-toggle.active .hamburger-icon::before {
      top: 0;
      transform: rotate(45deg);
  }

  .menu-toggle.active .hamburger-icon::after {
      bottom: 0;
      transform: rotate(-45deg);
  }

  .nav-menu {
      display: none;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--background-color, #fff);
      flex-direction: column;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      z-index: 100;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
  }

  .nav-menu.show {
      display: flex;
      max-height: 500px;
      padding: 10px 0;
  }

  .nav-menu li {
      width: 100%;
      text-align: center;
      padding: 10px 0;
      border-bottom: 1px solid var(--border-color, #ddd);
  }

  .nav-menu li:last-child {
      border-bottom: none;
  }

  .nav-menu li a {
      display: block;
      width: 100%;
      padding: 10px 20px;
      text-decoration: none;
      color: var(--text-color, #333);
      transition: background-color 0.3s ease;
  }

  .nav-menu li a:hover {
      background-color: var(--hover-background-color, #f0f0f0);
  }

  /* Portfolio Section */
  .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 15px;
  }

  .portfolio-content {
      padding: 15px;
  }

  .portfolio-content h3 {
      font-size: 1.2rem;
  }

  .portfolio-content p {
      font-size: 0.9rem;
  }

  .portfolio-technologies {
      font-size: 0.8rem;
  }

  #slider-container {
      height: 400px;
  }

  .slide-title {
      font-size: 1.8rem;
  }

  #skills .skills-wrapper {
      flex-direction: column;
      gap: 20px;
  }

  #skills .skills-domains,
  #skills .skills-technologies {
      width: 100%;
      flex: none;
  }

  #skills .section-title {
      font-size: 1.6rem;
  }

  #skills .section-subtitle {
      font-size: 1rem;
  }

  #skills .domain p,
  #skills .technologies-list span {
      font-size: 0.85rem;
  }

  #skills .technologies-list li {
      margin-bottom: 10px;
  }

  #skills .bar {
      height: 20px;
  }

  /* Social Icons Centering */
    .social-icons {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
  body {
      font-size: 12px;
  }

  .header-top {
      font-size: 14px;
      padding-top: 10px;
      margin-bottom: 10px;
  }

  .info-list a {
      font-size: 12px;
  }

  #social-links a {
      margin-left: 10px;
  }

  nav ul li a {
      font-size: 12px;
      padding: 8px 10px;
  }

  /* Portfolio Section */
  #portfolio .section-title {
      font-size: 1.5rem;
  }

  #portfolio .section-subtitle {
      font-size: 1rem;
  }

  .portfolio-content {
      padding: 10px;
  }

  .portfolio-content .btn-primary {
      font-size: 0.8rem;
      padding: 8px 12px;
  }
}
