* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
/* Hamburger Menu Button */
/* Hamburger Menu Button */
.mainicon {
  display: none; /* Hide the hamburger icon on desktop */
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

/* SVG Hamburger Icon */
.hamburger-icon {
  transition: transform 0.3s ease;
}

/* Lines in the Hamburger Icon */
.hamburger-icon .line {
  transition: all 0.3s ease;
  transform-origin: center; /* Ensure rotations happen around the center */
}

/* Transform into "X" when menu is open */
#click:checked + .mainicon .hamburger-icon .top {
  transform: translateY(8px) rotate(45deg); /* Rotate and move top line */
}

#click:checked + .mainicon .hamburger-icon .bottom {
  transform: translateY(-8px) rotate(-45deg); /* Rotate and move bottom line */
}

#click:checked + .mainicon .hamburger-icon .middle {
  opacity: 0; /* Hide the middle line */
}

/* Menu Container (Hidden by Default) */
.header-ul {
  display: flex; /* Always show the navbar on desktop */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Show the menu when the checkbox is checked */
#click:checked ~ .header-ul {
  right: 0; /* Slide the menu into view */
}

/* Menu Links */
.header-ul .nav-link {
  font-size: 2.0rem;
  color: #e0e0e0; /* Light text */
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.header-ul .nav-link:hover {
  color: #ffd109; /* Yellow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide the desktop navbar on mobile */
  .header-ul {
    position: fixed;
    top: 0;
    right: -100%; /* Hide the menu off-screen */
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a; /* Dark background */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }}


body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #1a1a1a; /* Dark background */
    color: #e0e0e0; /* Light text */
    scroll-behavior: smooth;
  }
  
  h1, h2, h3 {
    color: #ffd109; /* Yellow for headings */
  }

  h2{
    font-size: 5.75rem;
    letter-spacing: 0.75px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header */
/* Loader (Optional) */
.loader_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a; /* Dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader {
    border: 4px solid #4CAF50; /* Green border */
    border-top: 4px solid #ffd109; /* Yellow border */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Header */
  .container-new {
    
    padding: 0 70px;
  }
  
  .page-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
  }
  .logo-new {
    font-size: 24px;
    font-weight: 800;
}

  
  .logo-new a {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Rock Salt', sans-serif;
    color: #4CAF50; /* Green color */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .logo-new a:hover {
    color: #ffd109; /* Yellow on hover */
    transform: scale(100.05); /* Slight zoom effect */
  }
  @media (max-width: 768px) {
    .header-ul {
      display: none; /* Hide desktop navbar links */
      flex-direction: column;
      position: absolute;
      top: 80px; /* Adjust based on header height */
      left: 0;
      width: 100%;
      margin-top: 20px;
      background-color: #1a1a1a; /* Dark background */
      gap: 15px;
      z-index: 1000;
    }
  
    #click:checked ~ .header-ul {
      display: flex; /* Show navbar links when menu is toggled */
    }
  
    .mainicon {
      display: flex; /* Show mobile menu toggle */
    }
  }


  /* Mobile Menu Toggle */
  #click {
    display: none;
  }
  @media (max-width: 768px) {
    .mainicon {
        display: block;
    }
}
  .mainicon {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .menu-new i {
    font-size: 32px;
    color: #e0e0e0; /* Light text */
    transition: transform 0.3s ease;
  }
  
  #click:checked ~ .menu-new i {
    transform: rotate(90deg); /* Rotate icon when menu is open */
  }
  
  /* Navbar Links */
  .header-ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .header-ul a {
    font-size: 24px;
    color: #e0e0e0; /* Light text */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .header-ul a:hover {
    color: #ffd109; /* Yellow on hover */
  }

  
  
  .lets_talk_btn {
    padding: 10px 20px;
    background: linear-gradient(45deg, #4CAF50, #45a049); /* Green gradient */
    color: #1a1a1a; /* Dark text */
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .lets_talk_btn:hover {
    background: linear-gradient(45deg, #ffd109, #e6b800); /* Yellow gradient */
    transform: translateY(-2px); /* Slight lift effect */
  }
  
  /* Hero Section */
  .typewriter {
    display: inline-block; /* Ensure the container doesn't affect layout */
    overflow: hidden; /* Hide overflow */
    border-right: 2px solid #7ed957; /* Cursor effect */
    white-space: nowrap; /* Keep text on one line */
    margin: 0 auto; /* Center the text */
    letter-spacing: 0.15em; /* Adjust spacing */
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    height: 1.2em; /* Fixed height to prevent layout shift */
  }
  
  .typewriter-text {
    display: inline-block; /* Ensure the text doesn't affect layout */
    width: 100%; /* Fixed width to prevent layout shift */
  }
  
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes blink-caret {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: #7ed957;
    }
  }
  
  .main-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
  }
  
  .detail-new {
    max-width: 50%;
  }
  
  .detail-new h1 {
    font-size: 48px;
    margin: 10px 0;
  }
  
  .detail-new p {
    font-size: 18px;
    color: #b0b0b0; /* Light gray text */
  }
  
  
  /* Responsive Design */
@media (max-width: 768px) {
  .mainicon {
    display: block;
  }

  .header-ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a; /* Dark background */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
  }

  #click:checked ~ .header-ul {
    right: 0;
  }

  .detail-new {
    max-width: 100%;
    text-align: center;
    padding: 20px;
  }

  .hero-image {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }

  .hero-section {
    position: relative;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 2;
  }

  .hero-text {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-in-out;
  }

  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
  }

  .hero-text .btn {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .hero-text .btn:hover {
    background-color: #ff3b2f;
  }

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


  header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 99999999;
    transition: background-color 0.3s ease;
  }
  
  header.scrolled {
    background-color: #1a1a1a; /* Dark background when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow when scrolled */
  }
  
  .logo a {
    padding: 10px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #ffd109; /* Yellow for logo */
  }
  
  .menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .nav-link {
    position: relative;
    color: #e0e0e0; /* Light text */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffd109; /* Yellow underline */
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%; /* Expand underline on hover */
  }
  
  .nav-link.active {
    color: #ffd109; /* Yellow for active link */
  }
  
  .nav-links a {
    font-size: 18px;
    color: #e0e0e0; /* Light text */
  }
  
  /* Hero Section */
  .hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 20px 0px 20px;
  background-color: #1a1a1a; /* Dark background */
  color: #e0e0e0; /* Light text */
}
  
.hero-content {
    max-width: 800px; /* Full width on mobile */
    width: 100%;
  }
  
  .hero-content h1 {
    font-size: 59px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 25px;
    color: #b0b0b0; /* Light gray text */
}
.hero-content h1 span {
    color: #7ed957; /* Green color for "George" */
  }
  .hero-content p {
    color: #b0b0b0; /* Light gray text */
    margin: 20px 0;
  }

  .my-projects {
    color: #1a1a1a; /* Dark text */
    background: #4CAF50; /* Green background */
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 0 50px;
    border-radius: 10px;
    border: none;
    outline: none;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease-out 0s;
    height: 70px;
    width: 240px;
    margin: 20px 0;
  }
    
    .my-projects:hover {
      background-color: #45a049; /* Darker green on hover */
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    }
    
    .my-projects:active {
      transform: translateY(0);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

/* Social Icons Section */
.social-icons a {
    font-size: 24px;
    margin: 10px 0;
    line-height: 1.2;
}

.social-icons a:hover svg {
  transform: translateY(-5px); /* Slight lift on hover */
}

.social-icons a:hover {
    color: #ffd109; /* Yellow on hover */
}

/* If you want to specifically target the GitHub icon */
.social-icons a.github-icon {
    color: #ffffff; /* White color for GitHub icon */
}

.social-icons a.github-icon:hover {
    color: #ffd109; /* Yellow on hover */
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center-align items horizontally */
    padding: 40px 20px; /* Reduced padding for better spacing */
    text-align: center; /* Center-align text */
    background-color: #333; /* Dark background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    position: relative; /* Enable positioning for overlapping */
    overflow: hidden; /* Hide overflow from overlapping */
  }

  .hero-image {
    display: none;
    width: 180px; /* Slightly larger image */
    height: 180px; /* Slightly larger image */
    border-radius: 50%; /* Circular image */
    overflow: hidden; /* Ensure the image doesn't overflow */
    margin-bottom: -40px; /* Overlap with text */
    z-index: 1; /* Ensure image is above the background */
    position: relative; /* Enable positioning */
  }

  .hero-image img {
    width: 100%; /* Ensure the image fills the container */
    height: 100%; /* Ensure the image fills the container */
    object-fit: cover; /* Maintain aspect ratio */
  }

  .hero-content {
    text-align: center; /* Center-align text */
    position: relative; /* Enable positioning */
    z-index: 2; /* Ensure text is above the image */
    background-color: rgba(51, 51, 51, 0.9); /* Semi-transparent background */
    padding: 20px; /* Add padding for better spacing */
    border-radius: 10px; /* Rounded corners */
    margin-top: 30px; /* Overlap with image */
    width: 100%; /* Full width */
  }

  .hero-content h1 {
    font-size: 2.5rem; /* Larger font size for emphasis */
    line-height: 1.1; /* Tighter line spacing */
    margin-bottom: 10px; /* Add spacing below the heading */
    color: #ffd109; /* Yellow for headings */
  }

  .hero-content h1 span {
    color: #7ed957; /* Green color for "George" */
  }

  .hero-content p {
    font-size: 1.25rem; /* Slightly larger font size for readability */
    margin-bottom: 20px; /* Add spacing below the paragraph */
    color: #b0b0b0; /* Light gray text */
  }

  .my-projects {
    width: 100%; /* Full width */
    max-width: 240px; /* Limit button width */
    margin: 0 auto; /* Center the button horizontally */
    padding: 12px 24px; /* Add padding for better touch targets */
    font-size: 1rem; /* Slightly larger font size for buttons */
    text-align: center; /* Center-align button text */
    background: linear-gradient(45deg, #4CAF50, #45a049); /* Green gradient */
    color: #1a1a1a; /* Dark text */
    border: none;
    border-radius: 30px; /* Rounded corners */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }

  .my-projects:hover {
    background: linear-gradient(45deg, #4dff00, #ffd109); /* Yellow gradient on hover */
    transform: translateY(-3px); /* Slight lift */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  }

  .social-new {
    display: flex;
    justify-content: center; /* Center-align icons */
    gap: 15px; /* Small gap between icons */
    margin-top: 20px; /* Add spacing */
  }

  .social-new a {
    font-size: 1.5rem; /* Smaller icon size */
    color: #e0e0e0; /* Light text color */
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .social-new a:hover {
    color: #ffd109; /* Yellow on hover */
    transform: translateY(-3px); /* Slight lift on hover */
  }

  .social-new svg {
    width: 40px; /* Smaller icon size */
    height: 40px; /* Smaller icon size */
  }
}
/* Services Section */
/* Services Section */
/* Services Section */
.services {
  padding: 0px 0; /* Generous padding for a spacious feel */
  background-color: #1a1a1a; /* Dark background */
  color: #e0e0e0; /* Light text */
}

.services-heading {
  font-size: 50px; /* Larger heading for emphasis */
  text-align: center;
  margin-bottom: 4rem; /* Increased spacing below heading */
  color: #ffd109; /* Yellow for heading */
  font-weight: 700; /* Bold heading */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 2px; /* Add spacing between letters */
  position: relative; /* For underline effect */
}

.services-heading::after {
  content: '';
  position: absolute;
  width: 80px; /* Length of the underline */
  height: 4px; /* Thickness of the underline */
  background-color: #4CAF50; /* Green underline */
  bottom: -15px; /* Position below the heading */
  left: 50%; /* Center the underline */
  transform: translateX(-50%); /* Center the underline */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 40px; /* Increased gap for better spacing */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  background-color: #262626; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 15px; /* Rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #444; /* Subtle border for depth */
  text-align: center; /* Center-align content */
}

.service-card:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
  border-color: #4CAF50; /* Green border on hover */
}

.service-icon {
  font-size: 3rem; /* Larger icon size */
  color: #4CAF50; /* Green for icons */
  margin-bottom: 1.5rem; /* Spacing below icon */
}

.service-title {
  font-size: 2.0rem;
  margin-bottom: 1.5rem;
  color: #e0e0e0; /* Light text for titles */
  font-weight: 600; /* Semi-bold title */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px; /* Add spacing between letters */
}

.service-description {
  font-size: 1.5rem;
  line-height: 1.8; /* Increased line height for readability */
  color: #b0b0b0; /* Light gray text */
}

/* Responsive Design */
@media (max-width: 768px) {
  .services {
    padding: 50px 0; /* Generous padding for a spacious feel */
  }
  .services-heading {
    font-size: 40px; /* Smaller heading on mobile */
  }

  .service-title {
    font-size: 1.8rem; /* Smaller title on mobile */
  }

  .service-description {
    font-size: 1.4rem; /* Smaller description on mobile */
  }

  .services-grid {
    gap: 20px; /* Reduced gap on mobile */
  }

  .service-card {
    padding: 20px; /* Reduced padding on mobile */
  }
}

@media (max-width: 480px) {
  .services {
    padding: 50px 0; /* Generous padding for a spacious feel */
  }
  .services-grid {
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}


  /* About Me Section */
.about {
    padding: 50px 20px;
    background-color: #333; /* Darker background */
  }
  
  .about-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200 px;
    margin: 0 auto;
  }
  .about-me-img-box-ab img {
    width: 50%;
  }
  
  .about-text {
    max-width: 50%;
  }
  
  .about-timeline {
    max-width: 50%;
  }
  
  .timeline-item {
    margin-bottom: 20px;
  }
  
  .timeline-item h3 {
    font-size: 20px;
    margin: 0;
    color: #ffd109; /* Yellow for headings */
  }
  
  .timeline-item p {
    font-size: 16px;
    color: #b0b0b0; /* Light gray text */
  }
/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem; /* Even larger font size for mobile */
    line-height: 1.1; /* Tighter line spacing */
    margin-bottom: 10px; /* Reduced spacing below the heading */
    text-align: left; /* Align heading to the left */
    width: 100%; /* Full width */
  }

  .hero-content p {
    font-size: 1.25rem; /* Smaller font size for mobile */
  }

  .my-projects {
    font-size: 0.9rem; /* Smaller font size for mobile */
    padding: 0 30px;
    height: 60px;
    width: 200px;
  }

  .about-content {
    flex-direction: column; /* Stack content vertically */
    gap: 20px;
  }

  .about-text,
  .about-timeline {
    max-width: 100%; /* Full width on mobile */
  }

  .timeline-item h3 {
    font-size: 1.25rem; /* Smaller font size for mobile */
  }

  .timeline-item p {
    font-size: 0.9rem; /* Smaller font size for mobile */
  }
}


  
  /* Skills Section */
/* Skills Section */
.container_sk {
  padding: 0 6.4rem;
  margin: 0 auto;
  max-width: 1500px; /* Set maximum width to 1500px */
  width: 100%; /* Ensure it takes full width up to 1500px */
}

.section-skills {
  position: relative;
  background-color: #1a1a1a;
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
}

.subheading_sk {
  display: block;
  color: #ffd109;
  margin-bottom: 4rem;
  letter-spacing: 0.75px;
  text-align: center;
  font-size: 40px; /* Adjusted for better readability */
  font-weight: 700;
}

/* Skills Row (Containers in a Single Row) */
.skills-row {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 3rem; /* Space between containers */
  justify-content: center; /* Center containers horizontally */
  max-width: 1800px; /* Set maximum width to 1500px */
  width: 100%; /* Ensure it takes full width up to 1500px */
  padding: 0 2rem; /* Add padding for better spacing on smaller screens */
}

/* Skills Container */
.skills-container {
  background-color: #262626; /* Slightly lighter than section background */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  flex: 1; /* Allow containers to grow and fill space */
  max-width: 400px; /* Increase container width to fit more content */
  min-width: 300px; /* Ensure containers don't get too small */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skills-container:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* Category Headings */
.skills-category {
  font-size: 23px; /* Larger font size for headings */
  font-weight: 700;
  color: #ffd109; /* Yellow for headings */
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Skills List (Single Column) */
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* Increase space between skill items */
}

/* Skill Items */
.skill-item {
  display: flex;
  align-items: center;
  padding: 1.5rem; /* Increase padding for larger containers */
  background-color: #333; /* Darker background */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}

.skill-item img {
  width: 60px; /* Fixed width for all images */
  height: 60px; /* Fixed height for all images */
  margin-right: 1.5rem; /* Increase space between icon and text */
  object-fit: contain; /* Ensure images scale proportionally without stretching */
}

.skill-item p {
  font-size: 18px; /* Increase font size for skill names */
  margin: 0;
  color: #e0e0e0; /* Light text */
}

/* Responsive Design */
@media (max-width: 69rem) {
  .container_sk {
    padding: 0 4rem;
  }

  .skills-container {
    padding: 1.5rem;
    max-width: 350px; /* Adjust container width for medium screens */
  }
}

@media (max-width: 52rem) {
  .container_sk {
    padding: 0 2rem;
  }

  .subheading_sk {
    font-size: 2rem;
  }

  .skills-category {
    font-size: 1.8rem; /* Adjust heading size for smaller screens */
  }

  .skill-item img {
    width: 60px; /* Adjust icon size for smaller screens */
    height: 60px;
  }

  .skill-item p {
    font-size: 18px; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 36.5rem) {
  .container_sk {
    padding: 0 1.5rem;
  }

  .subheading_sk {
    font-size: 45px;
  }

  .skills-container {
    padding: 1rem;
    max-width: 100%; /* Full width on small screens */
    min-width: 250px; /* Ensure containers don't get too small */
  }

  .skill-item img {
    width: 50px; /* Adjust icon size for smaller screens */
    height: 50px;
  }

  .skill-item p {
    font-size: 18px; /* Adjust font size for smaller screens */
  }
}
  
  /* Portfolio Section -----------------------------------------------------------------------------*/
  .section-portfolio {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 0rem 0;
  }
  
  .container-pt {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 3.4rem;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .portfolio {
    padding: 40px 0;
    background-color: #333;
    margin-top: 4.6rem;
  }
  
  /* Portfolio Top Part Layout */
  .portfolio-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
  
  .portfolio-heading {
    text-align: left;
    margin-right: 2rem;
    padding-left: 40px; /* Push subheading and heading to the right */
  }
  
  .subheading_pt {
    display: block;
    color: #ffd109;
    margin-bottom: 0.5rem;
    letter-spacing: 0.75px;
    font-size: 70px; /* Increased font size */
    font-weight: 700;
  }
  
  .heading-secondary {
    font-size: 1.7rem;
    line-height: 1.2;
    color: #b0b0b0;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: left; /* Align heading-secondary to the left */
  }
  
  /* Filter Section */
  .filter-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
  }
  
  /* Filter Dropdown */
  .container-f {
    position: relative;
    display: inline-block;
    min-width: 200px;
  }
  
  .select-btn-f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background-color: #333;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  .select-btn-f:hover {
    background-color: #444;
  }
  
  .btn-text-f {
    font-size: 1rem;
    color: #e0e0e0;
  }
  
  .arrow-dwn-f {
    margin-left: 0.5rem;
    color: #e0e0e0;
  }
  
  .list-items-f {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 10;
  }
  
  .list-items-f.active {
    display: block;
  }
  
  .item-f {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .item-f:hover {
    background-color: #444;
  }
  
  .checkbox-f {
    margin-right: 0.8rem;
  }
  
  .check-icon {
    color: #ffd109;
    font-size: 0.9rem;
  }
  
  .item-text-f {
    font-size: 1rem;
    color: #e0e0e0;
  }
  
  /* Filter Buttons */
  .filter-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 20;
  }
  
  .apply-filter-btn,
  .clear-filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: #ffd109;
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .apply-filter-btn:hover,
  .clear-filter-btn:hover {
    background-color: #e6b800;
  }

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr)); /* 2 columns at most */
  gap: 20px; /* Consistent gap between items */
  padding: 20px; /* Add padding inside the grid */
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background-color: #1a1a1a; /* Dark background */
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure all cards have the same height */
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.portfolio-text-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align title and description to the top */
  margin-bottom: 20px; /* Space between text and image */
  height: 80px; /* Fixed height for the top container */
}

.portfolio-title {
  font-size: 1.8rem;
  padding: 10px 10px;
  text-align: left;
  margin-bottom: 10px;
  font-weight: bold;
  color: #ffd109; /* Yellow for titles */
  margin: 0; /* Remove default margin */
  padding-right: 10px; /* Small padding between title and description */
  flex: 1; /* Allow title to take available space */
}

.portfolio-tech {
  font-size: 14px;
  font-weight: bold;
  color: #4CAF50; /* Green for tech stack */
  margin: 0; /* Remove default margin */
  text-align: left; /* Align to the left */
}

.portfolio-description {
  font-size: 1.5rem;
  color: #b0b0b0; /* Light gray text */
  margin: 0; /* Remove default margin */
  text-align: left; /* Align to the right */
  flex: 2; /* Allow description to take available space */
  padding-right: 10px; /* Small padding between description and button */
}

.portfolio-image {
  width: 100%; /* Full width of the card */
  height: 250px; /* Fixed height for all images */
  overflow: hidden; /* Ensure the image doesn't overflow */
  border-radius: 10px; /* Optional: Add rounded corners */
  position: relative; /* For positioning the image */
}

.icon_tech_g {
  padding-bottom: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image fills the container without distortion */
  transition: transform 0.3s ease;
}

.portfolio-card:hover .icon_tech_g {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.portfolio-button-area {
  text-align: center; /* Center the button */
}

.portfolio-btn {
  align-items: center;
  justify-content: center;
  padding: 12px 24px; /* Reduced padding for a smaller button */
  background: linear-gradient(145deg, #4CAF50, #ffd000); /* Green gradient */
  color: #1a1a1a; /* Dark text */
  border: none;
  border-radius: 8px; /* Rounded corners */
  font-size: 14px;
  font-weight: 600;
  border-radius: 500px;
  width: auto;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin: 15px 5px 0px auto; /* Push the button to the right */
  float: right; /* Alternative to margin-left: auto */
}
/* GitHub Button */
.portfolio-btn[href*="github"] {
  background: #24292e;
  color: white;
  border-color: #24292e;
}

/* Power BI Button */
.portfolio-btn[href*="powerbi"] {
  background: #f2c811;
  color: #000;
  border-color: #f2c811;
}

/* Tableau Button */
.portfolio-btn[href*="tableau"] {
  background: #5b6abf;
  color: white;
  border-color: #5b6abf;
}

.portfolio-btn:not([href*="github"]):not([href*="powerbi"]):not([href*="tableau"]) {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}


.portfolio-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.portfolio-btn:active {
  transform: translateY(0); /* Reset lift on click */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Reset shadow on click */
}

.portfolio-btn::after {
  margin-left: 10px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.portfolio-btn:hover::after {
  transform: translateX(5px); /* Move arrow to the right on hover */
}

/* View More Button */
.Port-btn {
  text-align: center;
  margin-top: 30px;
}

.port-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50; /* Green background */
  color: #1a1a1a; /* Dark text */
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.port-btn:hover {
  background-color: #45a049; /* Darker green on hover */
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.page-btn {
  padding: 10px 20px;
  background: linear-gradient(45deg, #225726, #046d07); /* Green gradient */
  color: #1a1a1a; /* Dark text */
  border: none;
  border-radius: 30px; /* Rounded corners like .portfolio-btn */
  font-size: 15px;
  font-weight: 600; /* Match font weight */
  text-transform: uppercase; /* Match text transform */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth transition */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.page-btn:hover {
  background: linear-gradient(45deg, #4CAF50, #45a049); /* Reverse gradient on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.page-btn.active {
  background: linear-gradient(45deg, #4dff00, #ffd109); /* Yellow gradient for active page */
  color: #1a1a1a; /* Dark text */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Media Queries for Mobile Devices */

/* Media Queries for Mobile Devices */
@media (max-width: 768px) {
  /* General Adjustments */
  .container-pt {
    padding: 0 20px; /* Reduce padding for smaller screens */
  }

  /* Portfolio Top Section */
  .portfolio-top {
    flex-direction: column; /* Stack heading and filter vertically */
    align-items: center; /* Center-align items */
    text-align: center; /* Center text */
  }

  .portfolio-heading {
    text-align: center;
    margin-right: 0; /* Remove right margin */
    margin-bottom: 20px; /* Add space below heading */
  }

  .subheading_pt {
    padding-top: 10px;
    left: 0; /* Remove left shift */
  }

  .heading-secondary {
    text-align: center; /* Center-align text */
  }

  /* Filter Section */
  .filter-section {
    flex-direction: column; /* Stack filter dropdown and buttons vertically */
    align-items: center; /* Center-align items */
    gap: 10px; /* Reduce gap between elements */
  }

  .container-f {
    width: 100%; /* Full width for dropdown */
  }

  .select-btn-f {
    width: 100%; /* Full width for dropdown button */
  }

  .filter-buttons {
    width: 100%; /* Full width for buttons */
    justify-content: center; /* Center-align buttons */
  }

  .apply-filter-btn,
  .clear-filter-btn {
    width: 48%; /* Equal width for buttons */
    font-size: 0.9rem; /* Reduce font size */
  }

  /* Portfolio Grid */
  .portfolio-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 15px; /* Reduce gap between cards */
    padding: 0; /* Remove padding */
  }

  .portfolio-card {
    padding: 15px; /* Reduce padding */
  }

  .portfolio-title {
    font-size: 2.5rem; /* Reduce font size */
    text-align: center; /* Center-align title */
  }

  .portfolio-tech {
    font-size: 0.9rem; /* Reduce font size */
    text-align: center; /* Center-align tech stack */
  }

  .portfolio-description {
    font-size: 1.5rem; /* Reduce font size */
    text-align: center; /* Center-align description */
  }

  .portfolio-btn {
    align-content: center;
    text-align: center;
    padding: 12px 16px;
    height: 50px;
    width: 100%; /* Full width for button */
    font-size: 14px; /* Reduce font size */
    margin: 10px 0; /* Add margin */
  }
}


  /* Contact Section-----------------------------------------------------*/
  /* Base Styles */
/* Base Styles */
.contact {
  padding: 50px 0px 150px;
  background-color: var(--color-4); /* Dark background */
  position: relative;
}

.contact_wrapper__tvaVr {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Contact Heading Container */
.contact-heading-container {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Space between heading and image */
  margin-bottom: 20px;
}

.contact_wrapper__tvaVr h1 {
  font-size: 60px;
  color: var(--text-color-3);
  margin: 0; /* Remove default margin */
  text-align: center;
  z-index: 2;
}

.contact_object__VBBQI {
  width: 80px; /* Adjust image size */
  height: auto; /* Maintain aspect ratio */
  animation: float 3s ease-in-out infinite; /* Add a floating animation */
}

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

.contact_heading {
  font-size: 18px;
  color: #e0e0e0; /* Light text */
  margin-bottom: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea,
.contact select {
  height: 60px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #c6e9c8; /* Darker border */
  border-radius: 10px;
  background-color: #333; /* Darker background */
  color: #e0e0e0; /* Light text */
  font-family: inherit; /* Match the font family of the form */
}

.contact textarea {
  resize: vertical; /* Allow vertical resizing */
  min-height: 150px;
}

.contact button {
  padding: 10px;
  font-size: 16px;
  background: linear-gradient(45deg, #4dff00, #ffd109); /* Green background */
  color: #1a1a1a; /* Dark text */
  border: none;
  border-color: rgba(239, 241, 246, 0.192);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #ffd000; /* Darker green on hover */
}

/* Dropdown Styling */
.contact select {
  appearance: none; /* Remove default arrow */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e0e0e0'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e"); /* Custom arrow */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  cursor: pointer; /* Show pointer cursor on hover */
}

.contact select:focus {
  border-color: #4CAF50; /* Green border on focus */
  outline: none;
}

/* Placeholder Option Styling */
.contact select option[disabled] {
  color: #888; /* Gray color for the placeholder text */
}

.contact select option {
  background-color: #333; /* Dark background for options */
  color: #e0e0e0; /* Light text for options */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .contact_wrapper__tvaVr h1 {
    font-size: 40px; /* Smaller font size for mobile */
  }

  .contact_heading {
    font-size: 16px; /* Smaller font size for mobile */
    margin: 0px 20px 0px 20px;
  }

  .contact input,
  .contact textarea,
  .contact select {
    font-size: 14px; /* Smaller font size for mobile */
    padding: 20px; /* Smaller padding for mobile */
    margin: 0px 20px 0px 20px;
  }

  .contact button {
    font-size: 20px; /* Smaller font size for mobile */
    padding: 8px; /* Smaller padding for mobile */
    height: 40px;
    margin: 0px 20px 0px 20px;
  }

  .contact_object__VBBQI {
    width: 60px; /* Smaller image for mobile */
  }

  .contact-heading-container {
    gap: 10px; /* Reduce space between heading and image */
  }
}

@media screen and (max-width: 992px) {
  .contact_wrapper__tvaVr h1 {
    font-size: 50px; /* Adjusted font size for tablets */
  }

  .contact_heading {
    font-size: 17px; /* Adjusted font size for tablets */
  }

  .contact_object__VBBQI {
    width: 70px; /* Adjusted image size for tablets */
  }
}

@media screen and (max-width: 1200px) {
  .contact_wrapper__tvaVr h1 {
    font-size: 55px; /* Adjusted font size for smaller desktops */
  }
}

@media screen and (max-width: 1400px) {
  .contact_wrapper__tvaVr h1 {
    font-size: 60px; /* Adjusted font size for larger screens */
  }
}
  
  /* Footer */
  .custom-shape-divider-bottom-1652512758 .shape-fill {
    fill: #1a1a1a;
}

.section-footer {
    padding: 2 rem 0;
    background-color: #1a1a1a; /* Dark background */
    text-align: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
  }
  
  .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo-box {
    margin-block: auto;
  }
  
  .footer-temp-logo {
    font-size: 4.2rem;
    font-family: 'Rock Salt', sans-serif;
    color: #ffd109; /* Yellow for logo */
  }
  
  .footer-text-box {
    flex: 1;
    margin-left: 50px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12.2rem;
  }
  
  .heading-ter {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd109; /* Yellow for headings */
    margin-bottom: 1.2rem;
  }
  
  .footer-link-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .footer-link {
    font-size: 1.8rem;
    color: #e0e0e0; /* Light text */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #4CAF50; /* Green on hover */
  }
  
  /* Copyright */
  .copy-right1 {
    font-size: 16px;
    color: #b0b0b0; /* Light gray text */
    background-color: #1a1a1a; /* Darker background */
    padding: 20px;
    text-align: center;
    margin-top: 3.2rem;
  }
  
  .copy-right2 {
    color: #ffd109; /* Yellow for links */
    text-decoration: none;
  }
  
  .copy-right2:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .flex {
      flex-direction: column;
      gap: 3.2rem;
    }
  
    .footer-text-box {
      margin-left: 0;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      column-gap: 0;
      row-gap: 2rem;
    }
  
    .footer-temp-logo {
      font-size: 3.2rem;
    }
  
    .footer-link {
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 480px) {
    .footer-temp-logo {
      font-size: 2.8rem;
    }
  
    .footer-link {
      font-size: 1.4rem;
    }
  }

  /* Timeline Styles */
.col-lg-12,
.col-lg-v {
  margin-top: 40px;
}

.col-lg-12 svg,
.col-lg-v svg {
  display: block;
  margin: 0 auto;
}

.line {
  stroke: #fff; /* Darker stroke */
  stroke-width: 2;
}

.circle {
  stroke: #333; /* Darker stroke */
  stroke-width: 2;
}

.text {
  font-size: 16px;
  font-weight: bold;
  fill: #ffd109; /* Yellow for text */
}

.text-small {
  font-size: 14px;
  fill: #b0b0b0; /* Light gray text */
}

/* Timeline Styles */
/* Horizontal Timeline (Desktop) */
.timeline-horizontal {
    margin-top: 40px;
    text-align: center;
  }
  
  .timeline-horizontal svg {
    width: 100%;
    max-width: 750px;
    height: auto;
  }
  
  .timeline-horizontal .line {
    stroke: #4CAF50; /* Green line */
    stroke-width: 2px;
  }
  
  .timeline-horizontal .circle {
    stroke: #4CAF50; /* Green circle */
    stroke-width: 5px;
    fill: #1a1a1a; /* Dark background */
    transition: fill 0.3s ease;
  }
  
  .timeline-horizontal .circle:hover {
    fill: #7ed957; /* Green on hover */
  }
  
  .timeline-horizontal .text {
    font-size: 16px;
    font-weight: bold;
    fill: #e0e0e0; /* Light text */
  }
  
  .timeline-horizontal .text-small {
    font-size: 14px;
    fill: #b0b0b0; /* Light gray text */
  }
  
  /* Vertical Timeline (Mobile) */
  .timeline-vertical {
    display: none; /* Hidden by default */
    margin-top: 40px;
    text-align: center;
  }
  
  .timeline-vertical svg {
    width: 100%;
    max-width: 330px;
    height: auto;
  }
  
  .timeline-vertical .line {
    stroke: #4CAF50; /* Green line */
    stroke-width: 2;
  }
  
  .timeline-vertical .circle {
    stroke: #4CAF50; /* Green circle */
    stroke-width: 3px;
    fill: #1a1a1a; /* Dark background */
    transition: fill 0.3s ease;
  }
  
  .timeline-vertical .circle:hover {
    fill: #7ed957; /* Green on hover */
  }
  
  .timeline-vertical .text {
    font-size: 16px;
    font-weight: bold;
    fill: #e0e0e0; /* Light text */
  }
  
  .timeline-vertical .text-small {
    font-size: 14px;
    fill: #b0b0b0; /* Light gray text */
  }

  @media (max-width: 768px) {
  .grid-col-2-ab {
    grid-template-columns: 1fr; /* Stack content vertically */
  }

  .about-me-img-box-ab img {
    width: 80%; /* Smaller image on mobile */
  }

  .about-me-text-ab {
    font-size: 1rem; /* Smaller font size for mobile */
  }

  .timeline-horizontal {
    display: none; /* Hide horizontal timeline on mobile */
  }

  .timeline-vertical {
    display: block; /* Show vertical timeline on mobile */
  }
}

.line {
  stroke: #fff; /* Darker stroke */
  stroke-width: 2;
}

.circle {
  stroke: #fff; /* Darker stroke */
  stroke-width: 2;
}

.text {
  font-size: 16px;
  font-weight: bold;
  fill: #ffd109; /* Yellow for text */
}

.text-small {
  font-size: 14px;
  fill: #b0b0b0; /* Light gray text */
}


/* Social Links Section */
.social-new {
    justify-content:flex-start;
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-new a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-new a:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}
.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.main-new h3 {
    font-size: 79px;
    color: #292930;
  }
  
  .images-new::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 130px);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    /* background: linear-gradient(145deg, #1e2024, #23272b); */
    /* box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e; */
    border-radius: 6px;
    z-index: -1;
  }
  
  .images-new::before {
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
    box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
  }
  
  .images-new {
    width: 80%;
    margin-left: auto;
    position: relative;
    z-index: -1;
  }
  
  @media screen and (max-width: 1024px) {
  .container-new {
    padding: 0 70.4px;
  }
}

@media screen and (max-width: 768px) {
  .container-new {
    padding: 0 25.6px;
  }
}

@media screen and (max-width: 600px) {
  header {
    height: auto;
  }

  .header-ul {
    background: #1a1a1a;
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    top: 54.4px;
    left: -100%;
    z-index: 111111;
  }
  .menu-new {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #244d61;
  }

  #click:checked ~ ul {
    left: 0%;
    transition: all 0.3s ease;
  }
  .images-new {
    width: 100%;
    margin: auto;
  }
  .main-new {
    margin-top: 32px;
  }
}

  /* Button to View Projects */

  .my-projects {
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(45deg, #4CAF50, #00ff0d); /* Green gradient */
    color: #1a1a1a; /* Dark text */
    border: none;
    border-radius: 5px; /* Keep the border radius at 5px */
    font-size: 20px; /* Fixed typo: removed space between 20 and px */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for all properties */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .my-projects:hover {
    background: linear-gradient(45deg, #00ff0d, #ffd000); /* Reverse gradient on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
  }

  /* About Me Section-------------------------------------------------------------- */
/* About Me Section */
/* About Me Section */
.section-about-me-ab {
  background: #2B2C30; /* Dark background */
  padding: 50px 0;
}

.container-ab {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 2000px;
  margin: 0 auto; /* Center the container */
  padding: 0 20px; /* Add some padding to avoid content touching the edges */
}

.grid-ab {
  display: grid;
  grid-template-columns: 30% 70%; /* Image takes 30%, right container takes 70% */
  gap: 30px;
  padding-top: 2px;
  padding-left: 40px;
  width: 100%; /* Ensure it takes full width */
}

.about-me-img-box-ab {
  display:flexbox;
  padding:20px;
  align-items: center;
  justify-content: center;
}

.about-me-img-box-ab img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-me-img-box-ab img:hover {
  transform: scale(1.05);
}

.right-container-ab {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* About Me Title */
.about-me-title-ab {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffd109; /* Yellow for headings */
  margin-bottom: 10px;
  letter-spacing: 0.75px;
}

.about-me-text-box-ab {
  background-color: #2a4937; /* Dark green background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-me-text-ab {
  font-size: 2.4rem;
  color: #e0e0e0; /* Light text */
  line-height: 1.8;
}

.highlight-ab {
  color: #ffd109; /* Yellow for highlights */
  font-size: 3.0rem;
  font-weight: 700;
}

/* My Background Title */
.my-background-title-ab {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffd109; /* Yellow for headings */
  margin-bottom: 20px;
  letter-spacing: 0.75px;
}

/* Timeline Container */
.timeline-container-ab {
  background-color: #2a4937; /* Dark green background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Horizontal Timeline (Visible on Desktop) */
.timeline-horizontal {
  display: block; /* Visible by default */
}

.timeline-horizontal svg {
  width: 100%;
  height: auto;
}

.timeline-horizontal .line {
  stroke: #ffd109; /* Yellow line */
  stroke-width: 4; /* Line stroke set to 3 */
}

.timeline-horizontal .circle {
  fill: #000; /* Black circles */
  r: 18; /* Slightly larger circles (default is 10) */
}

.timeline-horizontal .text {
  font-size: 1.5rem;
  fill: #fff; /* White text for degree */
}

.timeline-horizontal .text-year {
  font-size: 1.4rem;
  fill: #ffd109; /* Yellow text for year */
}

/* Vertical Timeline (Visible on Mobile) */
.timeline-vertical {
  display: none; /* Hidden by default */
}

.timeline-vertical svg {
  width: 100%;
  height: auto;
}

.timeline-vertical .line {
  stroke: #ffd109; /* Yellow line */
  stroke-width: 3; /* Line stroke set to 3 */
}

.timeline-vertical .circle {
  fill: #000; /* Black circles */
  r: 12; /* Slightly larger circles (default is 10) */
}

.timeline-vertical .text {
  font-size: 1.5rem;
  fill: #fff; /* White text for degree */
}

.timeline-vertical .text-year {
  font-size: 1.5rem;
  fill: #ffd109; /* Yellow text for year */
}

/* Timeline Descriptions */
.timeline-descriptions {
  font-size: 18px;
  margin-top: 20px;
  background-color: #2a3a30; /* Dark green background */
  padding: 30px; /* Increased padding for better spacing */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Default Text Styling */
.timeline-descriptions .default-text {
  font-size: 2.2rem;
  color: #b0b0b0; /* Light gray text */
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

.timeline-descriptions h3 {
  font-size: 2.5rem; /* Larger heading */
  color: #ffd109; /* Yellow for headings */
  margin-bottom: 20px; /* Increased spacing below heading */
  font-weight: 700; /* Bold heading */
  letter-spacing: 0.5px; /* Slight letter spacing */
}

.timeline-descriptions p {
  font-size: 1.8rem; /* Slightly larger text */
  color: #e0e0e0; /* Light text */
  line-height: 1.8; /* Improved line height for readability */
  margin-bottom: 20px; /* Spacing between paragraphs */
}

.timeline-descriptions ul {
  list-style-type: disc; /* Bullet points */
  padding-left: 30px; /* Indent bullet points */
  margin-bottom: 20px; /* Spacing below list */
}

.timeline-descriptions li {
  font-size: 1.8rem; /* Consistent font size */
  color: #e0e0e0; /* Light text */
  line-height: 1.8; /* Improved line height */
  margin-bottom: 10px; /* Spacing between list items */
}

.timeline-descriptions li strong {
  color: #ffd109; /* Yellow for highlights */
  font-weight: 700; /* Bold highlights */
}

/* Description (Hidden by Default) */
.description {
  display: none; /* Hidden by default */
  background-color: #2a3a30; /* Dark green background */
  padding: 30px; /* Increased padding */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Spacing below description */
}

.description h3 {
  font-size: 2.5rem; /* Larger heading */
  color: #ffd109; /* Yellow for headings */
  margin-bottom: 20px; /* Increased spacing below heading */
  font-weight: 700; /* Bold heading */
  letter-spacing: 0.5px; /* Slight letter spacing */
}

.description p {
  font-size: 1.8rem; /* Slightly larger text */
  color: #e0e0e0; /* Light text */
  line-height: 1.8; /* Improved line height for readability */
  margin-bottom: 20px; /* Spacing between paragraphs */
}

.description ul {
  list-style-type: disc; /* Bullet points */
  padding-left: 30px; /* Indent bullet points */
  margin-bottom: 20px; /* Spacing below list */
}

.description li {
  font-size: 1.8rem; /* Consistent font size */
  color: #e0e0e0; /* Light text */
  line-height: 1.8; /* Improved line height */
  margin-bottom: 10px; /* Spacing between list items */
}

.description li strong {
  color: #ffd109; /* Yellow for highlights */
  font-weight: 700; /* Bold highlights */
}

/* Show description when active */
.description.active {
  display: block;
}


/* Responsive Design */
@media (max-width: 768px) {
  .grid-ab {
    grid-template-columns: 1fr; /* Single column layout on mobile */
    gap: 20px; /* Reduced gap for mobile */
  }

  .about-me-img-box-ab {
    order: 1; /* Move image to the top */
  }

  .right-container-ab {
    order: 2; /* Move content below the image */
  }

  .about-me-img-box-ab img {
    width: 80%; /* Smaller image on mobile */
    max-width: 300px; /* Limit image size */
  }

  .about-me-title-ab,
  .my-background-title-ab {
    font-size: 3rem; /* Smaller title on mobile */
  }

  .about-me-text-ab {
    font-size: 1.8rem; /* Smaller text on mobile */
  }

  .highlight-ab {
    font-size: 2.2rem; /* Smaller highlight text on mobile */
  }

  .timeline-horizontal {
    display: none; /* Hide horizontal timeline on mobile */
  }

  .timeline-vertical {
    display: block; /* Show vertical timeline on mobile */
  }
}
/* Active Circle Styling */
.timeline-horizontal .circle.active-circle,
.timeline-vertical .circle.active-circle {
  fill: #4CAF50; /* Green fill for active circle */
  stroke: #4CAF50; /* Green stroke for active circle */
}

/* Hover Effect */
.timeline-horizontal .circle:hover,
.timeline-vertical .circle:hover {
  fill: #7ed957; /* Light green on hover */
}

/* Close Button Styles */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* Close Button Styles */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.close-btn:hover {
  background-color: darkred;
}

/* Ensure the description container has relative positioning */
.timeline-descriptions {
  position: relative;
}

  /* Button Styles */
.my-projects {
    padding: 12px 24px;
    background-color: #4CAF50; /* Green background */
    color: #1a1a1a; /* Dark text */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .my-projects:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }
  .my-projects:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
/* Filter Section ---------------------------------------------------------------*/
/* Filter Section */
.container-f {
  position: relative;
  max-width: 300px;
  margin: 20px auto;
}

.select-btn-f {
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: #e0e0e0;
  transition: background-color 0.3s ease;
}

.select-btn-f:hover {
  background-color: #333;
}

.select-btn-f .arrow-dwn-f {
  transition: transform 0.3s ease;
}

.select-btn-f.open .arrow-dwn-f {
  transform: rotate(180deg);
}

.list-items-f {
  position: absolute;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #1a1a1a;
  color: #e0e0e0;
  display: none;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

.list-items-f.show {
  display: block;
}

.item-f {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.item-f:hover {
  background-color: #333;
}

.checkbox-f {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.check-icon {
  display: none;
  font-size: 12px;
  color: #4CAF50;
}

.item-f.selected .check-icon {
  display: inline-block;
}

.item-f.selected .checkbox-f {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.item-text-f {
  font-size: 14px;
  color: #e0e0e0;
}

/* Highlight selected filters */
.item-f.checked {
  background-color: #333; /* Darker background for selected items */
}

.item-f.checked .checkbox-f {
  background-color: #4CAF50; /* Green background for checkbox */
  border-color: #4CAF50;
}

.item-f.checked .check-icon {
  display: inline-block; /* Show checkmark */
}

/* Style for the filter buttons */
.filter-section {
  display: flex;
  justify-content: center; /* Center the filter section */
  align-items: center;
  gap: 2rem; /* Space between filter dropdown and buttons */
}

.filter-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.apply-filter-btn,
.clear-filter-btn {
  padding: 5px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.apply-filter-btn {
  background: linear-gradient(45deg, #4CAF50, #00ff0d);; /* Blue background */
  color: white;
}

.apply-filter-btn:hover {
  background-color: #005bb5; /* Darker blue on hover */
  transform: translateY(-2px);
}

.clear-filter-btn {
  background-color: #ffcccc; /* Light red background */
  color: #333;
}

.clear-filter-btn:hover {
  background-color: #ff9999; /* Lighter red on hover */
  transform: translateY(-2px);
}

