@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    min-height: 200vh; 
}
*
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family:  'Roboto Condensed', sans-serif;
  }
/*------------------------------------HEADER---------------------------*/
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1100px;
    padding: 0 20px;
    float: right;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color:#fff;
    font-size: 18px;
    padding: 8px 12px;
    transition: 0.3s;
  }
  
  nav ul li a:hover {
    border-radius: 5px;
  }
 
  
  /* Mobile Menu Button */
  .menu-toggle {
    display: none;
    font-size: 28px;
    color: #FDD937;
    cursor: pointer;
  }
  
  /* Fix for nav-menu visibility */
  .nav-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
  }
  
  .nav-menu.active {
    display: block;
  }
  
  /* Responsive Navigation */
  @media (max-width: 864px) {
    nav {
      justify-content: space-between;
    }
  
    nav ul {
      display: none; /* Hide menu initially */
      flex-direction: column;
      position: absolute;
      top: 50px;
      right: 0;
      width: 100%;
      text-align: right;
      padding: 10px 0;
    }
  
    nav ul.active {
      display: flex; /* Show menu when active */
    }
  
    nav ul li {
      padding: 10px 20px;
    }
  
    .menu-toggle {
      display: block; /* Show menu button */
    }
  }
/*------------------------Social media bar----------------------*/
.social-media-bar {
    position: fixed;
    top: 50%;
    left: 10px; /* Move to the left side */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.social-media-bar img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    padding: 20px;
}

.social-icon  {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #db8c14;
    color: #151515;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-icon i{
    color: #000000;
}

/* Individual Colors */



/*------------------------------------HERO---------------------------*/
/* Hero Section with Particles */
#hero {
    position: relative;
    height: 100vh;
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    background-image: url(./images/Homebackground.png);
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

/* Particles Container */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send it behind other content */
  }

/* Hero Content */
.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column; /* Stack GIF and buttons */
  align-items: center; /* Center align items */
  gap: 20px; /* Space between GIF and buttons */
}
.hero-content img{
  width: 800px;
  height: auto;
}
/* Responsive scaling */
@media (max-width: 1200px) {
  .hero-content img {
    width: 1000px; /* Slightly smaller for tablets and small laptops */
  }
}

@media (max-width: 768px) {
  .hero-content img {
    width: 600px; /* Medium size for tablets */
  }
}

@media (max-width: 480px) {
  .hero-content img {
    width: 300px; /* Smaller size for mobile phones */
  }
}
/* Styling the buttons */
.buttons {
  display: flex;
  gap: 15px; /* Space between buttons */
}

.btn {
  padding: 10px 20px;
  background-color: #FDA91B;
  color: #151515;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: transparent;
  color:#FDA91B;
}

/* Sections */
section {
    padding: 60px 20px;
    text-align: center;
}
.buttons {
    display: flex;
    align-self: center;
    text-align: center;
}
/*------------------------------------aboutme---------------------------*/
/* General section styling */
#aboutme {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-image: url(./images/Whymebackground.png);
  color: #151515;
  padding-left: 35px;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.Idols-card img{
  margin-top: 2px;
  height: 75px;
  max-width: 75px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 20px #151515;
}

/* Left summary section */
.aboutmesummary {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, and min-width */
  max-width:fit-content;
  background: #e79715;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(255, 253, 106, 0.1);
  max-width: 400px;
  min-height: 677px;
}
.Idols{
  flex: 1 1 300px; /* Flex-grow, flex-shrink, and min-width */
  max-width: 400px;
  background: #e79715;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(255, 253, 106, 0.1);
  text-align: center;
  align-content: center;
  text-align: center;
}
.Music{
  max-width: 400px;
  display: grid;
  flex-direction: column;
  text-align: center;
  justify-content: center; /* Center the iframe */
  align-items: center; /* Center the iframe */
  padding: 20px;
  border-radius: 10px;
  background: #e79715;
  box-shadow: 0 10px 20px rgba(255, 253, 106, 0.1) ;
  text-align: center;
  min-height: 677px;
}
.Music h2 {
  font-size: 1.5rem;
  color: #151515;
}
.Music-container{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.aboutmesummary h2 {
  font-size: 2.5rem;
  color: #151515;
  margin-bottom: 10px;
}
.Idols h2{
  font-size: 1.5rem;
  color: #151515;
  margin-bottom: 10px;
  padding-top: 10px;
}
.Idols p{
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 5px;
}
.aboutmetittle {
  padding-top: 10px;
}

.aboutmesummary img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(22, 22, 22, 0.973) ;
}

.aboutmesummary p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Right text section */
.aboutmetext h2 {
  font-size: 1.5rem;
  color: #151515;
  margin-bottom: 20px;
}
.aboutmetext {
  flex: 2 1 500px;
  background:#e79715;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: start;
  max-width: 1300px;
}

.aboutmetext p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #151515;
}

.aboutmetext p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #aboutme {
    flex-direction: column;
    align-items: center;
  }

  .aboutmesummary,
  .aboutmetext {
    width: 100%;
  }
}


/*------------------------------------whyme---------------------------*/
/* Why Me Section */
#whyme {
  background-image: url(./images/aboutmebackground.png);
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center center; /* Keeps the image centered */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  text-align: center;
  overflow: visible;
  padding: 50px 0;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  color: #e79715;
  margin-bottom: 20px;
}

/* Grid Layout (3x2) */
.why-me-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 75px;
  position: relative;
}

/* Wrapper for Each Card and Its Title */
.why-me-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}

/* H1 Titles Positioned on the Clipped Edge */
.card-title {
  position: absolute;
  top: -20px; /* Move it up */
  left: -10px; /* Move it slightly left */
  font-size: 1.5rem;
  font-weight: bold;
  color: #e79715;
  background: transparent;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 10;
}

/* Why Me Cards */
.why-me-card1, 
.why-me-card2,
.why-me-card3, 
.why-me-card4,
.why-me-card5, 
  .why-me-card6 {
  background: transparent;
  color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #e79715;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  
}
/* Media Query for screens between 1280px and 1920px */
@media (max-width: 1920px) and (min-width: 1280px) {

  /* Specific clip-path styles for each card */
  .why-me-card1 {
    clip-path: polygon(30% 13%, 30% 0, 100% 0%, 100% 100%, 0% 100%, 0 13%);
  }
  .why-me-card2 {
    clip-path: polygon(32% 13%, 32% 0, 100% 0%, 100% 100%, 0% 100%, 0 13%);
  }
  .why-me-card3 {
    clip-path: polygon(42% 13%, 42% 0, 100% 0%, 100% 100%, 0% 100%, 0 13%);
  }
  .why-me-card4 {
    clip-path: polygon(32% 13%, 32% 0, 100% 0%, 100% 100%, 0% 100%, 0 13%);
  }
  .why-me-card5 {
    clip-path: polygon(42% 13%, 42% 0, 100% 0%, 100% 100%, 0% 100%, 0 13%);
  }
  .why-me-card6 {
    clip-path: polygon(35% 13%, 35% 0, 100% 0%, 100% 100%, 0% 100%, 0 13%);
  }
}

@media (max-width: 1280px) and (min-width:700px){

.why-me-card1{
  clip-path: polygon(40% 9%, 40% 0, 100% 0%, 100% 100%, 0% 100%, 0 9%);
} 
.why-me-card2{
  clip-path: polygon(45% 9%, 45% 0, 100% 0%, 100% 100%, 0% 100%, 0 9%);
}
.why-me-card3{
  clip-path: polygon(70% 9%, 70% 0, 100% 0%, 100% 100%, 0% 100%, 0 9%);
} 
.why-me-card4{
  clip-path: polygon(70% 9%, 50% 0, 100% 0%, 100% 100%, 0% 100%, 0 9%);
}
.why-me-card5{
  clip-path: polygon(60% 9%, 60% 0, 100% 0%, 100% 100%, 0% 100%, 0 9%);
}
.why-me-card6{
  clip-path: polygon(50% 9%, 50% 0, 100% 0%, 100% 100%, 0% 100%, 0 9%);
}
}
@media (max-width: 700px)and (min-width: 300px){
  .why-me-container {
      grid-template-columns: 1fr;
  }
  .why-me-card1{
    clip-path: polygon(40% 5%, 40% 0, 100% 0%, 100% 100%, 0% 100%, 0 5%);
  } 
  .why-me-card2{
    clip-path: polygon(45% 5%, 45% 0, 100% 0%, 100% 100%, 0% 100%, 0 5%);
  }
  .why-me-card3{
    clip-path: polygon(70% 5%, 70% 0, 100% 0%, 100% 100%, 0% 100%, 0 5%);
  } 
  .why-me-card4{
    clip-path: polygon(70% 5%, 45% 0, 100% 0%, 100% 100%, 0% 100%, 0 5%);
  }
  .why-me-card5{
    clip-path: polygon(60% 5%, 60% 0, 100% 0%, 100% 100%, 0% 100%, 0 5%);
  }
  .why-me-card6{
    clip-path: polygon(50% 5%, 50% 0, 100% 0%, 100% 100%, 0% 100%, 0 5%);
  }
  }
/* Hover Effect */
.why-me-card:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 900px) {
  .why-me-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-me-container {
      grid-template-columns: 1fr;
  }
}


/*------------------------------------SKILLS---------------------------*/
#skills {
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    background-image: url(./images/Skillsbackground.png);
}
.skills-container img,.skills-container2 img,.skills-container3 img,.skills-container4 img{
  width: 50px;
}

.skills-container,.skills-container2,.skills-container3,.skills-container4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px;
    padding-bottom: 55px;
    row-gap: 100px;

}
.softwareskill{
  padding-top:10px;
}
.softwareskill h2{
  padding-top: 10px;
  margin-top: 30px;
}
.circle {
    position: relative;
    width: 120px;
    height: 120px;
}

svg {
    transform: rotate(-90deg);
}

.circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    gap: 40px;
}
.bg {
    stroke:transparent;
}
.skills-container p,.skills-container2 p,.skills-container3 p,.skills-container4 p {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.2rem;

}
.progress {
    stroke: #F4B315;
    stroke-dasharray: 314; /* Circumference of the circle */
    stroke-dashoffset: 314; /* Initially hide the progress */
    transition: stroke-dashoffset 1.5s ease-in-out;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #F4B315;
}


/*------------------------------------EXPERIENCE---------------------------*/
/* Experience Section */
#experience{
    text-align: center;
    padding: 50px 20px;
    background: #F4B315;
    align-content: center;
    align-items: center;
    justify-content: center;
  }
  
  /* Section Title */
  .experience-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff;
  }
  
  /* Experience Card */
  .experience-card1,
  .experience-card2,
  .experience-card3{
    background: #151515;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    margin: 50px;
  }
  .experience-card1 p,
  .experience-card2 p,
  .experience-card3 p{
    color:#fff
  }
  .experience-card1{
    background-image: url(./images/ERP\ Port.png);
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Keeps the image centered */
  }
  .experience-card2{
    background-image: url(./images/Metaal.png);
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Keeps the image centered */
  }
  .experience-card3{
    background-image: url(./images/Chocolate.png);
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Keeps the image centered */
  }
 
  /* Card Header (Visible Part) */
  .card-header {
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
  }
  .card-header img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  /* Card Content (Hidden Initially) */
  .card-content {
    max-height: 0;
    overflow: hidden;
    display: none; /* Hide content by default */
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  /* When Active, Expand the Card */
  .experience-card.active .card-content {
    max-height: 200px; /* Adjust this based on content length */
    opacity: 1;
    display: block; /* Make it visible */
    padding-top: 10px;
  }
  
  /* Hover Effect */
  .experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Mobile Optimization */
  @media (max-width: 600px) {
    .experience-container {
      grid-template-columns: 1fr; /* Stack cards on mobile */
    }
  }
/*------------------------------------CONTACT---------------------------*/
#contact {
  text-align: center;
  padding: 40px;
  background: #ffffff;
}

.map-container {
  max-width: 600px;
  margin: auto;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 18px;
  margin: 5px 0;
  color: #333;
}

.contact-details a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
 @media screen and (max-width: 500px) {
  .map-container iframe {
    height: 200px;
    width: 200px;
  }
  
}



