/**
* Template Name: Personal - v2.1.0
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  position: relative;
  background: transparent;
  overflow: scroll;
}

body::before {
  content: "";
  position: fixed;
  background: #0a1a2a; /* updated dark navy background */
  left: 0;
  right: 0;
  top: 0;
  height: 1000vh;
}

@media (min-width: 4024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: #17c3b2; /* updated teal/cyan accent */
}

a:hover {
  color: #ff6f61; /* updated coral accent */
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/* Header / Hero Section */
#header.header-tops {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1a2a, #172a3a);
  color: #fff;
  position: relative;
  z-index: 10;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #17c3b2; /* teal/cyan */
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-buttons a {
  margin-right: 15px;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero-buttons .btn-primary {
  background-color: #17c3b2; /* teal/cyan */
  border: none;
  color: #fff;
}

.hero-buttons .btn-primary:hover {
  background-color: #0f9e94;
}

.hero-buttons .btn-outline-primary {
  border: 2px solid #17c3b2;
  color: #17c3b2;
  background: transparent;
}

.hero-buttons .btn-outline-primary:hover {
  background-color: #17c3b2;
  color: #fff;
}

.hero-gallery {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-item {
  position: relative;
  width: 150px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 5px;
}

.hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-item .label {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #17c3b2; /* teal/cyan */
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: 600;
}

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

/* About Section */
.about .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.about-text {
  flex: 1 1 50%;
  color: #ddd;
}

.about-text h3 {
  color: #17c3b2; /* teal/cyan */
  margin-top: 20px;
  margin-bottom: 10px;
}

.about-text ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(23, 195, 178, 0.5); /* teal/cyan shadow */
}

/* Experience Section */
.services .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

.experience-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.experience-card {
  background: #122f3a; /* slightly lighter dark navy */
  border-radius: 15px;
  padding: 20px;
  color: #ddd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(23, 195, 178, 0.3);
  max-width: 600px;
}

.experience-card h4 a {
  color: #17c3b2;
  font-weight: 700;
  text-decoration: none;
}

.experience-card h5 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ff6f61; /* coral */
}

.experience-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.experience-image img {
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(23, 195, 178, 0.5);
}

/* Skills Section */
.skills .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

.skills-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.skill-item {
  background: #122f3a;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  color: #ddd;
  box-shadow: 0 0 15px rgba(23, 195, 178, 0.3);
}

.skill-item h4 {
  margin-bottom: 15px;
  color: #17c3b2;
}

.progress {
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar {
  height: 100%;
  background-color: #17c3b2;
  transition: width 0.6s ease;
}

/* Project Gallery Section */
.portfolio .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.portfolio .section-title p {
  color: #bbb;
  text-align: center;
  margin-bottom: 40px;
}

.project-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  background: #122f3a;
  border-radius: 15px;
  padding: 15px;
  width: 300px;
  color: #ddd;
  box-shadow: 0 0 15px rgba(23, 195, 178, 0.3);
  text-align: center;
}

.project-card img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-card h4 {
  margin-bottom: 10px;
  color: #17c3b2;
}

.project-card p {
  margin-bottom: 15px;
}

.project-card .btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #122f3a;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  color: #ddd;
  box-shadow: 0 0 15px rgba(23, 195, 178, 0.3);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-content h5 {
  text-align: right;
  font-weight: 600;
  color: #17c3b2;
}

/* Certifications Section */
.certifications .section-title h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}

.certification-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.certification-card {
  background: #122f3a;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  color: #ddd;
  box-shadow: 0 0 15px rgba(23, 195, 178, 0.3);
  text-align: center;
}

.certification-card h4 {
  margin-bottom: 10px;
  color: #17c3b2;
}

.certification-card p {
  margin-bottom: 15px;
}

.certification-card .btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #122f3a;
  padding: 15px 0;
  color: #ddd;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
  .experience-cards {
    flex-direction: column;
  }
  .experience-card {
    flex-direction: column !important;
  }
  .experience-image {
    margin-top: 15px !important;
    max-width: 100% !important;
  }
  .skills-list {
    flex-direction: column;
    align-items: center;
  }
  .skill-item {
    width: 100%;
    max-width: 400px;
  }
  .project-gallery {
    flex-direction: column;
    align-items: center;
  }
  .project-card {
    width: 100%;
    max-width: 400px;
  }
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-card {
    width: 100%;
    max-width: 400px;
  }
  .certification-cards {
    flex-direction: column;
    align-items: center;
  }
  .certification-card {
    width: 100%;
    max-width: 400px;
  }
}
