/* Reset */
html {
  scroll-behavior: smooth;
}

/* Add at the top of your style.css */
@font-face {
    font-family: 'BigBold';
    src: url('fonts/bigbold-font-1763141007-0.woff2') format('woff2'),
         url('fonts/bigbold-font-1763141007-0.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: 'BigBold', 'Inter', sans-serif;
}

/* ===== LIGHT THEME ===== */
body {
       background-color: #0f0f0f;
    color: #0a0a0a;
    font-family: 'BigBold', 'Inter', sans-serif;
    transition: background 0.5s ease, color 0.5s ease;
}


.iconWrapper a{
  text-decoration: none;
}

/* Theme Toggle */


.HeaderContainer {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px; /* optional */
}
/* Text */
#typing-text {
    font-family: 'BigBold', 'Inter', sans-serif;
    font-size: 40px;
    color: #e8ab61;
    text-align: center;
    margin-top: 10px;
    min-height: 50px; /* prevents jumping */
}
.project-icons a img {
    width: 30px; /* العرض المطلوب */
    height: 30px; /* الارتفاع المطلوب */
    object-fit: contain; /* يحافظ على نسب الصورة */
}
.titleIntroduction .intro h3 {
    font-size: 50px;
    letter-spacing: 2px;
    text-align: center;
    transition: color 0.5s ease;
}

.titleIntroduction .highligh h2 {
    font-family: 'BigBold', 'Inter', sans-serif;
    font-size: 40px;
    animation: shadowMove 2.2s ease-in-out infinite;
    
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 0px;
    text-align: center;
    text-shadow:
        1px 1px 1px #d79e50,
        2px 2px 1px #e8ab61,
        3px 3px 1px #565656,
        4px 4px 1px #d79e50;
    transition: color 0.5s ease;
}
@keyframes shadowMove {
  0% {
    text-shadow:
      0px 1px 0 #d79e50,
      0px 2px 0 #e8ab61,
      0px 3px 0 #565656;
  }

  50% {
    text-shadow:
      0px 3px 0 #d79e50,
      0px 6px 0 #e8ab61,
      0px 9px 0 #565656;
  }

  100% {
    text-shadow:
      0px 1px 0 #d79e50,
      0px 2px 0 #e8ab61,
      0px 3px 0 #565656;
  }
}
/* RightSidebar */
.rightSidebar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Icon Wrapper with Tooltip */
.iconWrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.iconWrapper1 {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease; /* smooth fade */
}


.iconWrapper1 i {
    font-size: 28px;
    color: #e8ab61;
    cursor: pointer;
    transition: transform 0.35s ease, color 0.35s ease, text-shadow 0.35s ease;
}


.iconWrapper i {
    font-size: 28px;
    color: #e8ab61;
    cursor: pointer;
    transition: transform 0.35s ease, color 0.35s ease, text-shadow 0.35s ease;
}

.iconWrapper i:hover {
    transform: scale(1.3);
    color: #ffffff;
    text-shadow: 0 0 8px #e8ab61, 0 0 12px #e8ab61;
}

.light .iconWrapper i {
    color: #0a0a0a;
}

.light .iconWrapper i:hover {
    color: #e8ab61;
    text-shadow: 0 0 8px #0a0a0a, 0 0 12px #0a0a0a;
}
@media (max-width: 2560) {
  .HeaderContainer {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px; /* optional */
}
  }
/* Tooltip */
.tooltip {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #e8ab61;
    color: #0a0a0a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.iconWrapper:hover .tooltip {
    opacity: 1;
    bottom: 50px;
}

/* Profile Image */
.img img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e8ab61;
    transition: transform 0.5s ease, border-color 0.5s ease;
}
.img img:hover {
    transform: scale(1.05);
}

/* ===========================
   Education Section
=========================== */
/* ===========================
   Education Section
=========================== */
/* ===========================
   Education Section
=========================== */
/* ===========================
   Education Section
=========================== */
/* ===========================
   Education Section
=========================== */
/* ===========================
   Education Section
=========================== */
.educationSection {
    padding: 80px 20px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.educationSection h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #e8ab61;
}

/* ===========================
   Timeline Container
=========================== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto; /* center timeline */
    padding: 0;
}

/* Vertical line in the center */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* center */
    width: 4px;
    background: #e8ab61;
    transform: translateX(-50%);
}

/* ===========================
   Timeline Items
=========================== */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 40px;

    /* Fade-in animation */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

/* Odd items (Left side) */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Even items (Right side) */
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Circle icon */
.timeline-item i {
    position: absolute;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8ab61;
    color: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(232, 171, 97, 0.7);
}

/* Icon positions */
.timeline-item:nth-child(odd) i {
    right: -15px;
}

.timeline-item:nth-child(even) i {
    left: -15px;
}

/* Timeline content */
.timeline-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    max-width: 90%;
    transition: all 0.3s ease;
}

/* Headings & text */
.timeline-content h3 {
    color: #e8ab61;
    margin-bottom: 5px;
    font-size: 20px;
}

.timeline-content span {
    font-size: 14px;
    color: #ccc;
    display: block;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
}

/* Hover effect */
.timeline-content:hover {
    background-color: rgba(232, 171, 97, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 171, 97, 0.3);
}

/* Certificate link/button */
.certificate-link {
    display: inline-block;
    padding: 8px 18px;
    margin-top: 10px;
    background-color: #e8ab61;
    color: #0f0f0f;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.certificate-link:hover {
    background-color: #d79e50;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.25);
}

/* ===========================
   Responsive Mobile
=========================== */
@media (max-width: 768px) {
    .timeline::before {
        left: 10px;
        width: 3px;
    }

    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left;
        transform: none !important;
        padding-left: 42px;
        padding-right: 12px;
        margin-bottom: 20px;
    }

    .timeline-item i {
        left: 0 !important;
        top: 18px;
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .timeline-content {
        display: block;
        max-width: 100%;
        padding: 10px 12px 10px 42px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content span {
        font-size: 12px;
    }

    .certificate-link {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* ===========================
   Fade-in Animation
=========================== */
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Work Experience Section */
.work-experience {
    padding: 80px 20px;
    background-color: #0f0f0f;
    color: #fff;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.work-experience h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #e8ab61;
}

/* Timeline container */
.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 0;
}

/* Vertical line in the center */
.experience-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #e8ab61;
    transform: translateX(-50%);
}

/* Timeline items */
.experience-item {
    position: relative;
    width:50%;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

/* Left side */
.experience-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Right side */
.experience-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Circle icon */
.experience-item i {
    position: absolute;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e8ab61;
    color: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(232, 171, 97, 0.7);
}

/* Position icon correctly */
.experience-item:nth-child(odd) i {
    right: -15px;
}

.experience-item:nth-child(even) i {
    left: -15px;
}

/* Timeline content */
.experience-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    max-width: 90%;
    text-align: left;
    transition: all 0.3s ease;
}

.experience-content h3 {
    color: #e8ab61;
    margin-bottom: 5px;
    font-size: 18px;
  text-align: left;
}

.experience-content span {
    font-size: 14px;
    color: #ccc;
    text-align: left;
}
.experience-item {
    opacity: 1;
    transform: translateY(0);
}

.experience-content p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
    text-align: left;
}

/* Hover effect */
.experience-content:hover {
    background-color: rgba(232, 171, 97, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 171, 97, 0.3);
}
  .timeline::before {
        left: 10px; /* move vertical line closer to left edge */
        width: 3px;
    }

    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left;
        padding-left: 42px; /* space for icon */
        padding-right: 12px;
        margin-bottom: 20px;
    }

    .timeline-item i {
        left: 0 !important;
        top: 18px;
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .timeline-content {
        display: block;
        max-width: 100%;
        padding: 10px 12px 10px 42px; /* icon space */
    }

    .timeline-content h3 {
        font-size: 16px;
        text-align: left;
    }

    .timeline-content span {
        font-size: 12px;
    }

    .certificate-link {
        padding: 5px 12px;
        font-size: 12px;
    }
/* Fade-in animation */
.experience-item.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ===== Section Styling ===== */
/* ===== Section Styling ===== */
/* Section Styling */
.projects-section {
  padding: 100px 20px;
  background: transparent;
  color: #fff;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.projects-header {
  text-align: center;
  margin-bottom: 50px;
}

.projects-header h2 {
  font-size: 3rem;
  color: #e8ab61;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.filter-btn {
  background: #1c1c1c;
  border: 2px solid #e8ab61;
  color: #e8ab61;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #e8ab61;
  color: #0a0a0a;
  transform: scale(1.05);
}

.projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.projects-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #d79e50;
    text-transform: capitalize; /* Capitalizes first letter of each word */
}

.project-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  background-color: #1c1c1c;
  color: #ccc;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #d79e50;
  color: #333;
}

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

.project-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: auto; /* ensures uniform card height */
 
}

/* Optional: hover effect */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.project-card img {
  width: 100%;
  height: 200px; /* fixed height for all images */
  object-fit: cover; /* maintain aspect ratio and crop if necessary */
  display: block;
}


.project-card h3 {
  font-size: 1.2rem;
  margin: 15px;
  color: #d79e50;
}

.project-card p {
  font-size: 0.95rem;
  margin: 0 15px 15px;
  color: #777;
  flex: 1;     
   overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* limits description to 6 lines */
  -webkit-box-orient: vertical;
}

.project-icons {
  margin: 0 15px 15px;
}

.project-icons i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #111;
}

.project-links {
  display: flex;
  justify-content: flex-end;
  margin: 0 15px 15px;
  margin-top: auto;           /* push links to the bottom */
}

.project-links a {
  margin-left: 15px;
  color: #565656;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.project-links a:hover {
  color: #d79e50;
}
.projects-section {
  padding: 100px 20px;
  background: transparent;
  color: #fff;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.projects-header {
  text-align: center;
  margin-bottom: 50px;
}

.projects-header h2 {
  font-size: 3rem;
  color: #e8ab61;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.filter-btn {
  background: #1c1c1c;
  border: 2px solid #e8ab61;
  color: #e8ab61;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #e8ab61;
  color: #0a0a0a;
  transform: scale(1.05);
}

.course-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.course-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #d79e50;
    text-transform: capitalize; /* Capitalizes first letter of each word */
}

.course-filters {
  text-align: center;
  margin-bottom: 40px;
}

.course-btn {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  background-color: #1c1c1c;
  color: #ccc;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.course-btn.active,
.course-btn:hover {
  background-color: #d79e50;
  color: #333;
}

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

.course-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: auto; /* ensures uniform card height */
 
}

/* Optional: hover effect */
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.course-card img {
  width: 100%;
  height: 200px; /* fixed height for all images */
  object-fit: cover; /* maintain aspect ratio and crop if necessary */
  display: block;
}


.course-card h3 {
  font-size: 1.2rem;
  margin: 15px;
  color: #d79e50;
}

.course-card p {
  font-size: 0.95rem;
  margin: 0 15px 15px;
  color: #777;
     

}

.course-icons {
  margin: 0 15px 15px;
}

.course-icons i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #111;
}

.course-links {
  display: flex;
  justify-content: flex-end;
  margin: 0 15px 15px;
  margin-top: auto;           /* push links to the bottom */
}

.course-links a {
  margin-left: 15px;
  color: #565656;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.course-links a:hover {
  color: #d79e50;
}

@media (max-width: 768px) {
  .projects-section {
    padding: 30px 10px;
  }
    .course-section {
    padding: 30px 10px;
  }
}
.pricing-section {
  padding: 80px 20px;
  background-color: #111;
  color: #eee;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.pricing-section h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #e8ab61;
  font-weight: 700;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background-color: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 5px;
  width: 280px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  border-color: #e8ab61;
}

.popular {
  border-color: #e8ab61;
}

.ribbon {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #e8ab61;
  color: #1a1a1a;
  padding: 6px 20px;
  font-weight: bold;
  font-size: 0.85rem;
  border-radius: 5px;
  transform: rotate(15deg);
}

.price {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e8ab61;
}

.price span {
  font-size: 1rem;
  color: #aaa;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.features li {
  margin: 8px 0;
  display: flex;
  gap: 10px;
}

.available { color: #777; font-weight: bold; }
.not-available { color: #aaa; font-weight: bold; }

.btn-pricing {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e8ab61;
  color: #111;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
}

.btn-pricing:hover {
  background-color: #fff;
  transform: scale(1.05);
}

.feature-compare {
  overflow-x: auto;
}

.feature-compare table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.feature-compare th, .feature-compare td {
  padding: 15px;
  border: 1px solid #333;
}

.feature-compare th {
  background-color: #222;
  color: #e8ab61;
}

.feature-compare td {
  text-align: center;
  color: #eee;
}

@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    gap: 20px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-card.popular {
    transform: scale(1);
  }
}

.project-icons i {
  color: #e8ab61; 
}

/* --- Container --- */
.contact-section {
  padding: 80px 20px;
 background: #111;
  color: #eee;
  font-family: 'Poppins', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* --- Info Panel --- */
.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-details li {
  margin-bottom: 10px;
list-style: none;
}
.contact-details li i{
color: #e8ab61;
}

.social-icons a {
  font-size: 40px; /* size of the icon */
  color: #d79e50; /* LinkedIn blue */
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #d79e50; /* slightly brighter on hover */
}

/* --- Form Panel --- */
.contact-form {
  flex: 1 1 400px;
  background: #111;
  border: 1px solid #d79e50;
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background-color: #222;
  color: #777;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  padding: 15px 30px;
  border: none;
  background: #e8ab61;
  color: #333;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: #e8ab61;
  color: #000;
}
.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 10px; /* space between icon and text */
    font-size: 16px;
}

.contact-info-list li i {
    color: #ff6f61; /* change icon color */
    font-size: 18px;
}

.form-response {
  margin-top: 15px;
  font-size: 14px;
  color: #ffeb3b;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}


.site-footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about h3 {
  color: #e8ab61;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.footer-about p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #e8ab61;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

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

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #e8ab61;
}

.footer-contact p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #e8ab61;
  text-decoration: none;
}

.footer-social a {
  color: #e8ab61;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcd6a;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
  }

  .footer-social a {
    margin: 0 10px;
  }
}
.course-duration-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

.course-duration-links span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #5c5c5c;
}
.course-duration {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

.duration-item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.duration-label {
  font-weight: 600;
  color: #565656;
}

.duration-value {
  font-weight: 400;
  color: #565656;
}

.course-duration-links i {
  font-size: 0.9rem;
  color: #e8ab61; /* optional accent color */
}

/* --- Responsive --- */
@media (max-width: 950px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .projects-section h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .project-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .project-info h3 {
    font-size: 1.3rem;
  }

  .project-info p {
    font-size: 0.9rem;
  }

  .project-links a {
    font-size: 0.85rem;
    padding: 10px 0;
  }
}


/* Responsive for mobile */
@media (max-width: 768px) {
    .experience-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left;
        padding-left: 50px;
        padding-right: 20px;
    }

    .experience-item i {
        left: 0 !important;
        right: auto !important;
    }

    .experience-timeline::before {
        left: 20px;
    }
}



/* Responsive 768px */
@media (max-width: 768px) {
    .HeaderContainer {
        padding: 70px 20px;
        gap: 30px;
    }
    .img img {
        width: 200px;
        height: 200px;
    }
    .titleIntroduction .highligh h2  {
        font-size: 40px;
    }
    
   
}

/* Responsive 414px */
@media (max-width: 414px) {
    .HeaderContainer {
        padding: 60px 20px;
        gap: 25px;
    }
    .img img {
        width: 170px;
        height: 170px;
    }
    #typing-text{
      font-size: 20px;
   
    }
      
    .project-filters {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-bottom: 60px;
}

}
/* Initial state for elements to animate */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px); /* Start 50px below */
  transition: all 0.8s ease-out;
}

/* When element becomes visible */
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
/* ===== MOBILE FIRST ===== */
/* ===== MOBILE FIRST (414px & below) ===== */
/* ===== EXTRA SMALL PHONES (414px & below) ===== */
@media (max-width: 414px) {
    .HeaderContainer { padding: 50px 15px; }
    .img img { width: 140px; height: 140px; }
  
    .project-cards { grid-template-columns: 1fr; }
    .experience-item { padding-left: 20px; }
    .download-cv-btn { padding: 10px 16px; font-size: 14px; bottom: 20px; right: 15px; }
    .project-filters { gap: 0; margin-bottom: 50px; }
}

/* ===== EXTRA SMALL PHONES (414px & below) ===== */
/* ===== EXTRA SMALL PHONES (414px) ===== */



/* ===== SMALL PHONES (415px to 430px) ===== */

/* ===== MEDIUM PHONES (431px to 540px) ===== */
/* ===== EXTRA LARGE SCREENS (2560px and above) ===== */
@media (min-width: 2560px) {
    /* Header Section */
  .HeaderContainer {
    padding: 200px 150px; /* more space around */
    display: flex;
    flex-direction: row;
    justify-content: center; /* center content horizontally */
    align-items: center;     /* center content vertically */
    gap: 60px;               /* space between items */
    text-align: center;      /* center text inside items */
}

    /* Profile Image */
    .img img {
        width: 400px;
        height: 400px;
        border-width: 6px;
    }

     #typing-text { font-size: 50px; }
    .titleIntroduction .intro h3 { font-size: 60px; }
    .titleIntroduction .highligh h2 { font-size: 50px; }

    /* Projects Section */
    .project-cards {
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
        padding: 0 60px;
    }

    .project-filters {
        justify-content: flex-start;
        gap: 25px;
        margin-bottom: 80px;
    }

    /* Timeline & Experience */
    .timeline::before,
    .experience-timeline::before {
        left: 50%;
        width: 6px;
    }

    .timeline-item,
    .experience-item {
        padding: 30px 60px;
    }

    .timeline-item i,
    .experience-item i {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .timeline-content,
    .experience-content {
        padding: 25px 30px;
        max-width: 80%;
    }

    .timeline-content h3,
    .experience-content h3 {
        font-size: 28px;
    }

    .timeline-content span,
    .experience-content span {
        font-size: 16px;
    }

    .certificate-link {
        padding: 12px 24px;
        font-size: 16px;
    }

    /* Pricing Cards */
    .pricing-card {
        width: 350px;
        padding: 50px 40px;
    }

    .pricing-cards {
        gap: 50px;
    }

    .pricing-section h2 {
        font-size: 4rem;
    }

    /* Footer */
    .footer-container {
        max-width: 2000px;
        gap: 50px;
    }

    .footer-about h3,
    .footer-links h4,
    .footer-contact h4 {
        font-size: 2rem;
    }
}

@media (min-width: 1440px) {
    /* Header Section */
    .HeaderContainer {
        max-width: 2000px;           /* Limit ultra-wide stretch */
        margin: 0 auto;              /* Center the container */
        padding: 120px 80px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;     /* Center content horizontally */
        gap: 80px;                   /* Adjust gap for wider screens */
        text-align: center;           /* Center text */
    }

    /* Profile Image */
    .img img {
        width: 300px;                /* Slightly larger for ultra-wide */
        height: 300px;
        object-fit: cover;
        border-radius: 50%;
    }

    #typing-text { font-size: 45px; }
    .titleIntroduction .intro h3 { font-size: 55px; }
    .titleIntroduction .highligh h2 { font-size: 45px; }

    /* Project Cards Grid */
    .project-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 0 40px;
        max-width: 2000px;
        margin: 0 auto;
    }

    /* Project Filters */
    .project-filters {
        display: flex;
        justify-content: center;      /* Center filters on ultra-wide */
        gap: 20px;
        margin-bottom: 60px;
    }
}


/* ===== SMALL DESKTOP / LARGE TABLETS (769px to 820px) ===== */

@media (max-width: 820px) {
  
  /* Header adjustments */
  .HeaderContainer {
      padding: 60px 30px;
      text-align: center;
      gap: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  /* Profile image */
  .img img {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 50%;
  }
 #typing-text { font-size: 35px; }
    .titleIntroduction .intro h3 { font-size: 45px; }
    .titleIntroduction .highligh h2 { font-size: 35px; }
  /* Project cards grid */
  .project-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      padding: 0 25px;
  }

  /* Experience & skills text */
  .experience-item, 
  .skills-item {
      padding-left: 15px;
      font-size: 16px;
      line-height: 1.5;
  }

  /* Download CV button */
  .download-cv-btn {
      padding: 12px 20px;
      font-size: 16px;
      bottom: 20px;
      right: 20px;
  }

  /* Project filter buttons */
  .project-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 60px;
  }

    /* Timeline vertical line stays centered */
    .timeline::before {
        left: 50%;
        width: 4px;
        transform: translateX(-50%);
    }

    /* Timeline items */
    .timeline-item {
        width: 48%; /* two columns with small gap */
        padding: 18px 20px;
        margin-bottom: 30px;
        box-sizing: border-box;
    }

    /* Left items */
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    /* Right items */
    .timeline-item:nth-child(even) {
        left: 52%;
        text-align: left;
    }

    /* Circle icons */
    .timeline-item i {
        top: 18px;
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    /* Timeline content */
    .timeline-content {
        padding: 12px 15px;
        max-width: 100%;
    }

    /* Headings & text */
    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content span {
        font-size: 13px;
    }

    /* Certificate link */
    .certificate-link {
        padding: 6px 16px;
        font-size: 13px;
    }
  
}

@media (max-width: 768px) {
  /* Header adjustments */
  .HeaderContainer {
      padding: 50px 25px;
      text-align: center;
      gap: 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
  } #typing-text { font-size: 33px; }
    .titleIntroduction .intro h3 { font-size: 42px; }
    .titleIntroduction .highligh h2 { font-size: 33px; }
/* Education Timeline */
    .timeline::before {
        left: 20px; /* move vertical line a bit right */
        width: 4px;
    }

    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left;
        padding-left: 50px; /* space for icon */
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .timeline-item i {
        left: 0 !important;
        top: 20px;
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .timeline-content {
        display: block;
        max-width: 100%;
        padding: 12px 20px 12px 50px; /* icon space */
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content span {
        font-size: 13px;
    }

    .certificate-link {
        padding: 6px 16px;
        font-size: 13px;
    }

    /* Work Experience Timeline */
    .experience-timeline::before {
        left: 20px; /* vertical line */
        width: 4px;
    }

    .experience-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    .experience-item i {
        left: 0 !important;
        top: 20px;
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .experience-content {
        display: block;
        max-width: 100%;
        padding: 15px 20px 15px 50px; /* leave space for icon */
    }

    .experience-content h3 {
        font-size: 18px;
    }

    .experience-content span {
        font-size: 13px;
    }

    .experience-content p {
        font-size: 14px;
        line-height: 1.4;
    }
  /* Profile image */
  .img img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 50%;
  }

  /* Title text */
 .titleIntroduction .highligh h2  {
      font-size: 26px;
      line-height: 1.4;
      margin: 10px 0;
  }
 .titleIntroduction .intro h3 {
        font-size: 30px;
    }
  /* Project cards grid */
  .project-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      padding: 0 20px;
  }

  /* Experience & skills text */
  .experience-item, 
  .skills-item {
      padding-left: 15px;
      font-size: 15px;
      line-height: 1.5;
  }

  /* Download CV button */
  .download-cv-btn {
      padding: 10px 18px;
      font-size: 15px;
      bottom: 15px;
      right: 15px;
  }

  /* Project filter buttons */
  .project-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 50px;
  }
}
/* ===== DESKTOP / LAPTOP (821px to 1024px) ===== */
@media (max-width: 1024px) {
    #typing-text { font-size: 40px; }
    .titleIntroduction .intro h3 { font-size: 50px; }
    .titleIntroduction .highligh h2 { font-size: 40px; }
}
/* ===== FULL DESKTOP / ULTRA WIDE (1441px and above) ===== */



/* Download CV Button */
.download-cv-btn {
    position: fixed;
    right: 20px;
    bottom: 10px;
    background-color: #e8ab61;
    color: #0a0a0a;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 1000;
}

/* Icon inside button */
.download-cv-btn i {
    font-size: 18px;
}

/* Show button */
.download-cv-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover effect */
.download-cv-btn:hover {
    background-color: #d79e50;
    color: #111;
    transform: translateY(-3px);
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .download-cv-btn {
        padding: 10px 16px;
        font-size: 14px;
        bottom: 30px;
        right: 15px;
    }

    .download-cv-btn i {
        font-size: 16px;
    }
}
/* CARD */
/* Section */
.skills-section {
  padding: 40px;
  text-align: center;
 
      max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

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

.skill-card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 160px;
  height: 200px;   /* 🔥 Best height */
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* content top / bar bottom */
  align-items: center;

  transition: 0.3s ease;
  cursor: pointer;
}


.skill-card:hover {
  transform: translateY(-5px);
}

/* Icon above bar */
.skill-icon {
  font-size: 45px;
  margin-bottom: 15px;
  color: #fff;
}

.filter-skills-btn {
  padding: 10px 25px;
  background: #222;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: .3s;
}

.filter-skills-btn.active {
  background: #6c5ce7;
}

/* Progress bar */
.progress {
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
}

.progress div {
  height: 100%;
  width: 0%;
  background: #d79e50;
  transition: width 1.2s ease-in-out;
}
.skills-section {
  padding: 50px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.skills-section p{
  color: #d79e50;
  margin-bottom: 5px;
}
/* Filter Buttons */
.filter-skills-btn {
  padding: 10px 25px;
  background: #222;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 5px; /* add spacing between buttons */
}
.course-time {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;

  padding-left: 12px; /* 👈 left spacing */

  font-size: 0.8rem;
  color: #b3b3b3;
}
.course-duration {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

.duration-item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.duration-label {
  font-weight: 600;
  color: #333;
}

.duration-value {
  font-weight: 400;
  color: #555;
}
.course-duration-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

.course-duration-links span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  
}



.time-item {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.time-item .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777;
}

.time-item .value {
  font-weight: 500;
  color: #e5e5e5;
}

.divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
}

.course-source {
  font-size: 0.85rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.filter-skills-btn.active {
  background: #d79e50;
}

/* Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  justify-items: center; /* center cards */
  gap: 25px;
  margin-top: 30px;
}
.skills-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d79e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* Skill Card */
/* Skill Card */
.skill-card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 160px;          /* fixed width */
  transition: 0.3s ease;
  display: flex;          /* flex to stack vertically */
  flex-direction: column; /* stack icon + bar */
  align-items: center;
  cursor: pointer;     /* center horizontally */
}

.skill-card:hover {
  transform: translateY(-5px);
}

/* Icon above bar */
.skill-icon {
  font-size: 45px;
  color: #d79e50;
  margin-bottom: 15px; /* spacing between icon and progress bar */
    /* show pointer on hover */

}

/* Scroll Progress Bar */
#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background-color: #d79e50;
  z-index: 9999;
  transition: width 0.25s ease;
}

/* Scroll Up Arrow */
#scrollArrow {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: transparent;
color: #d79e50;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  opacity: 0.7;
  transition: opacity 0.3s;
  display: none; /* initially hidden */
}

#scrollArrow:hover {
  opacity: 1;
}

/* Scroll Down Arrow */
/* Scroll Down Arrow */
/* Scroll Down Arrow */
#scrollDownArrow {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: transparent;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  opacity: 0.7;
  transition: opacity 0.3s;
  display: none; /* hidden initially */
}

#scrollDownArrow:hover {
  opacity: 1;
}


#scrollDownArrow:hover {
  opacity: 1;
}
/* WhatsApp floating icon */
#whatsappIcon {
    position: fixed;
    bottom: 60px;       /* distance from bottom */
    right: 30px;        /* distance from right */
    background-color: #d79e50; /* WhatsApp green */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    font-size: 24px;
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
}

#whatsappIcon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}


@media (max-width: 540px) {
  /* Header adjustments */
  .HeaderContainer {
      padding: 50px 20px;
      text-align: center;
      gap: 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
  } #typing-text { font-size: 28px; }
    .titleIntroduction .intro h3 { font-size: 36px; }
    .titleIntroduction .highligh h2 { font-size: 28px; }
  /* Profile image */
  .img img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border-radius: 50%;
  }
    /* Adjust timeline vertical line */
    .timeline::before {
        left: 15px; /* Slightly from the edge */
        width: 3px;
    }

    /* Timeline items full width */
    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 20px;
        margin-bottom: 30px;
    }
 /* Adjust timeline vertical line */
    .experience-timeline::before {
        left: 15px; /* move slightly from edge */
        width: 3px;
    }

    /* Timeline items full width */
    .experience-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 20px;
        margin-bottom: 30px;
    }

    /* Circle icons on left */
    .experience-item i {
        left: 0 !important;
        top: 20px;
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    /* Timeline content adjustments */
    .experience-content {
        display: block;
        max-width: 100%;
        padding: 15px 20px 15px 50px; /* padding-left accounts for icon */
    }

    /* Headings & text */
    .experience-content h3 {
        font-size: 18px;
    }

    .experience-content span {
        font-size: 13px;
    }

    .experience-content p {
        font-size: 14px;
        line-height: 1.4;
    }
    /* Circle icons on left */
    .timeline-item i {
        left: 0 !important;
        top: 20px;
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    /* Timeline content adjustments */
    .timeline-content {
        display: block;
        max-width: 100%;
        padding: 15px 20px 15px 50px; /* padding-left accounts for icon */
    }

    /* Headings & text */
    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content span {
        font-size: 13px;
    }

    /* Certificate link */
    .certificate-link {
        padding: 7px 16px;
        font-size: 13px;
    }
  /* Title text */
.titleIntroduction .highligh h2 {
      font-size: 24px;
      line-height: 1.35;
      margin: 10px 0;
  }
 .titleIntroduction .intro h3 {
        font-size: 28px
    }
  /* Project cards grid */
  .project-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 20px;
  }

  /* Experience & skills text */
  .experience-item, 
  .skills-item {
      padding-left: 15px;
      font-size: 15px;
      line-height: 1.4;
  }

  /* Download CV button */
  .download-cv-btn {
      padding: 11px 18px;
      font-size: 15px;
      bottom: 18px;
      right: 18px;
  }

  /* Project filter buttons */
  .project-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 55px;
  }
}

@media (max-width: 430px) {
  /* Header adjustments */
  .HeaderContainer {
      padding: 35px 15px;
      text-align: center;
      gap: 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
 .titleIntroduction .intro h3 { font-size: 24px; }
    .titleIntroduction .highligh h2 { font-size: 30px; }
  /* Profile image */
  .img img {
      width: 130px;
      height: 130px;
      object-fit: cover;
      border-radius: 50%;
  }

  /* Title text */

 .titleIntroduction .intro h3 {
        font-size: 25px
    }
  /* Project cards grid */
  .project-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 0 12px;
  }

  /* Experience & skills text */
  .experience-item, 
  .skills-item {
      padding-left: 12px;
      font-size: 13.5px;
      line-height: 1.4;
  }

  /* Download CV button */
  .download-cv-btn {
      padding: 9px 15px;
      font-size: 13.5px;
      bottom: 12px;
      right: 12px;
  }

  /* Project filter buttons */
  .project-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      margin-bottom: 45px;
  }
}

@media (max-width: 414px) {
  /* Header adjustments */
  /* Timeline vertical line */
    .experience-timeline::before {
        left: 12px; /* slightly off the edge */
        width: 3px;
    }
   #typing-text { font-size: 26px; margin: 0px; padding: 0px; }
    .titleIntroduction .intro h3 { font-size: 0; }
    .titleIntroduction .highligh h2 { font-size: 26px;  }
    /* Timeline items full width */
    .experience-item {
        width: 100% !important;
        left: 0 !important;
        text-align: left !important;
        padding-left: 45px;
        padding-right: 15px;
        margin-bottom: 25px;
    }

    /* Circle icons on left */
    .experience-item i {
        left: 0 !important;
        top: 18px;
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    /* Timeline content */
    .experience-content {
        display: block;
        max-width: 100%;
        padding: 12px 15px 12px 45px; /* leave space for icon */
    }

    /* Headings & text */
    .experience-content h3 {
        font-size: 16px;
    }

    .experience-content span {
        font-size: 12px;
    }

    .experience-content p {
        font-size: 13px;
        line-height: 1.3;
    }
  .HeaderContainer {
      padding: 30px 15px;
      text-align: center;
      gap: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  /* Profile image */
  .img img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
  }

  /* Title text */

 .titleIntroduction .intro h3 {
        font-size: 24px;
    }
  /* Project cards grid */
  .project-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 0 10px;
  }

  /* Experience & skills text */
  .experience-item, 
  .skills-item {
      padding-left: 10px;
      font-size: 13px;
      line-height: 1.4;
  }

  /* Download CV button */
  .download-cv-btn {
      padding: 8px 14px;
      font-size: 13px;
      bottom: 10px;
      right: 10px;
  }

  /* Project filter buttons */
  .project-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
      margin-bottom: 40px;
  }
}
@media (max-width: 412px) {
  /* Header adjustments */
  .HeaderContainer {
      padding: 38px 15px;
      text-align: center;
      gap: 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
    #typing-text { font-size: 25px; }
    .titleIntroduction .intro h3 { font-size: 31px; }
    .titleIntroduction .highligh h2 { font-size: 28px; margin:none;}
  /* Profile image */
  .img img {
      width: 135px;
      height: 135px;
      object-fit: cover;
      border-radius: 50%;
  }

  /* Title text */

 .titleIntroduction .intro h3 {
        font-size: 25px
    }
  /* Project cards grid */
  .project-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
      padding: 0 12px;
  }

  /* Experience & skills text */
  .experience-item, 
  .skills-item {
      padding-left: 12px;
      font-size: 14px;
      line-height: 1.4;
  }

  /* Download CV button */
  .download-cv-btn {
      padding: 10px 15px;
      font-size: 14px;
      bottom: 12px;
      right: 12px;
  }

  /* Project filter buttons */
  .project-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      margin-bottom: 45px;
  }
}
@media (max-width: 360px) {
  /* Header adjustments */
  .HeaderContainer {
      padding: 30px 12px;
      text-align: center;
      gap: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
     #typing-text { font-size: 22px; }
    .titleIntroduction .intro h3 { font-size: 28px; }
    .titleIntroduction .highligh h2 { font-size: 30px;  }
  /* Profile image */
  .img img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
  }

  /* Title text */
  
 .titleIntroduction .intro h3 {
        font-size: 22px
    }
  /* Project cards grid */
  .project-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 0 10px;
  }

  /* Experience & skills text */
  .experience-item, 
  .skills-item {
      padding-left: 10px;
      font-size: 13px;
      line-height: 1.4;
  }

  /* Download CV button */
  .download-cv-btn {
      padding: 8px 14px;
      font-size: 13px;
      bottom: 10px;
      right: 10px;
  }

  /* Project filter buttons */
  .project-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
      margin-bottom: 40px;
  }
}
#gmailIcon {
    position: fixed;
    bottom: 70px; /* slightly higher from bottom */
    right: 30px;  /* distance from right */
  width: 50px;
    height: 50px;/* equal height */
  
    color: #d79e50;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* perfectly circular */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3); /* soft shadow */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}


#gmailIcon.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
}