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

h1 span {
  /* background: rgba(125, 123, 123, 0.8); */
  color: #2dc4e5;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: #f4f4f9;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #2dc4e5;

}

/* Header */
header {
  text-align: center;
  color: white;
  padding: 50px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
  z-index: -1;
}

header h1 {
  font-size: 3rem;
  margin: 0;
}

header p {
  font-size: 1.5rem;
}

/* Navigation */
nav {
  background: #2dc4e5;
  padding: 10px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.arrow-continue {
  z-index: 1000000;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  color: #000;
}

/* Parallax Section */
.parallax {
  height: 100vh;
  min-height: 50vh;
  background: transparent;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax .content {
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  text-align: center;
}

.parallax .content p {
  padding: .5em 1em;
}

.parallax-slider h1 {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 1em;
  border-radius: 10px;
  size: 1em;
  margin: auto;
  font-size: 2em;
}

#separator {
  margin: 2em auto;
  padding: 1.5em 4em;
}

/* Section Styles */
section {
  padding: 50px 20px;
  text-align: center;
  max-width: 800px;
  /* min-height: 50vh; */
  margin: 2em auto 2em auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #2A4D69;
  margin-top: 0;
  font-size: 2.5rem;
}

.skills,
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.skills div,
.contact div {
  flex: 1;
  margin: 10px;
  padding: 2em;
  background: #f4f4f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

.skills div i {
  size: .5em;

}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.footer-links a {
  /* padding: 0 2em; */
  margin: auto .6em;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  gap: 2rem;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-image img {
  width: 300px;
  border-radius: 50%;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #2dc4e5;
  color: #007bff;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
}

.btn:hover {
  background: #ffdf72;
}

/* Parallax Section for Different Layouts */
.parallax-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.parallax-section .parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  section .experience-card{
    padding: 10px 15px;
  }
 section .experience-card i.fa-briefcase{
    margin: 0 auto;
  }

  section .experience-card:last-child h3{
    margin: 0 auto;
    /* display: inline-flex;
    float: left; */

    font-size: 1.5em;
  }
  section h3{
    font-size: 1.0em;
  }
  section#certifications ul li{
    margin: 1em auto;
    font-size: 1.5em;
    text-align: center;
    padding: 0 2em;
  }
  section#certifications{
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  #certifications ul li img{
    float: left;
    margin-top: .2em;
  }
  section h2, section.experience-section h2, section#certifications h2,section#contact h2{
font-size: 2.5em;
  }
.content.bringing{
  width: 80%;
}

.content.bringing h1{
  font-size: 1.2em;
}
  .skills div,
  .contact div {
    flex: 1 1 100%;
  }

  /* Hero adjustments for smaller screens */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    width: 250px;
  }

  .content.about {
    /* background: red; */
    position: relative;
  }
  body{
    font-size: 14px;
  }
  body nav{
    margin: 0 auto;
    padding: 10px 0;
    top:0;
    /* position: absolute; */
  }
  nav a{
    font-size: 12px;
    margin: 0 auto;
    padding: 0 0.5em;
    display: inline-flex;
  }
  body header{
    /* height: 80vh;
    
    min-height: 80vh; */
    padding: 0 1em;
  }
}


/* Ensure nav bar is on top */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Ensure it's above other content */
  padding: 10px;
  text-align: center;
}

/* Ensure the header content does not overlap with clickable areas */
header {
  position: relative;
  z-index: 1;
}
body header  p{
  font-size: 1.5em;
}
header h1{
  font-size: 2.5em;
}
/* For parallax content, make sure the links are on top */
.parallax {
  position: relative;
  z-index: 1;
  /* Make sure it's not above the clickable links */
}

/* Optional: Style for the down arrow (anchor) */
.arrow-continue {
  display: inline-block;
  margin-top: 20px;
  font-size: 2rem;
  color: #fff;
  /* Adjust color to match your theme */
  text-decoration: none;
}

/* .arrow-continue:hover {
  color: #ffcd3c; /* Highlight on hover 
} */



@import url("https://fonts.googleapis.com/css?family=Courgette:400,700&display=swap");

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

/* body {
  /* background: linear-gradient(135deg, #dee6ee, #8f9faf, #31587d); */
/* font-family: "Courgette", cursive; */
/* height: 100vh; 
} */

header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  color: #eee;
  /* z-index: -1; */
  animation: fadeIn 1.5s ease-in-out;
}

/* header h3 {
  font-size: 3.5rem;
  font-weight: 700;
} */

header p {
  font-size: 1.5rem;
}

/* section #welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-height: 100vh;
  font-size: 5rem;
  background: #fcdb6d;
  color: #0056a7;
} */


.animate-me {
  animation: bounceIn 3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}



div.parallax {
  /* background: url('images/future-4127468.jpg') center 0 no-repeat fixed; */
  /* height: 1000px; */
  position: relative;
  -webkit-box-shadow: 0 0 20px #333;
  box-shadow: 0 0 20px #333;
}

div.content {
  /* font-family: Georgia, serif; */
  position: absolute;
  /* height: 500px; */
  text-align: center;
  /* width: 100%; */
  /* top: 30%; */
  /* font-size:40px; */
}

div.content.bringing {
  /* font-family: Georgia, serif; */
  position: absolute;
  /* height: 500px; */
  text-align: center;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  /* width: 100%; */
  /* top: 30%; */
  /* font-size:40px; */
}

/*  Arrow continue */
.arrow-continue {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  /* Circular border */
  border-radius: 50%;
  /* Makes it circular */
  text-align: center;
  line-height: 60px;
  /* Vertically center the icon */
  font-size: 1.5rem;
  /* Adjust icon size */
  color: #fff;
  /* Arrow color */
  background-color: rgba(0, 0, 0, 0.5);
  /* Optional semi-transparent background */
  text-decoration: none;
  /* Remove underline */
  position: relative;
  animation: bounce 2s infinite;
  /* Animation */
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.arrow-continue:hover {
  background-color: rgba(45, 196, 229, 0.8);
  /* Highlight effect on hover */
  transform: scale(1.1);
  /* Slightly enlarge on hover */
  color: white;
}

.arrow-continue i {
  animation: fade-in-out 1.5s infinite;
  /* Subtle fading effect */
}

.arrow-continue i:hover {
  color: #000;
}

/* Bounce animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Fading effect for the icon */
@keyframes fade-in-out {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}