/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #001540;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 2.2rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #eb974e;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #000;
  background-color: #eb974e;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #001540;
  box-shadow: inset 0 0 0 3px #eb974e;
  color: #eb974e;

}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #4c5b79;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(0, 21, 64, 0.753);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #001540;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.company-icons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.company-imgs {
  display: flex;
}

.company-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.company-imgs img:last-child {
  margin: 0;
}

.company-text {
  font-size: 1.6rem;
  font-weight: 600;
}

.company-text span {
  color: #FF9900;
  font-weight: 800;
}

/**************************/
/* WHAT I DO SECTION */
/**************************/

.service-card {
    border-radius: 18px;
    transition: all 0.3s ease;
    background-color: #192c53;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

/* FUN ICONS */
.icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

/* Different colors per card */
.service-card {
    border-radius: 18px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

/* Emoji style */
.icon-emoji {
    font-size: 38px;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Fun hover bounce */
.service-card:hover .icon-emoji {
    transform: scale(1.2) rotate(8deg);
}

.uk-heading-medium {
    color: #fff;

}

.uk-text-muted {
  font-size: 1.3rem;
}

.service-primary {
  font-size: 2.1rem;
  font-family: "Lexend";
  color: #fff;
}

.custom-list {
    color: #fff;

}

.service-card {
    color: white;
}


.custom-list li {
    list-style: none;
    position: relative;
    padding-left: 22px;
}

.custom-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/**************************/
/* EXPERIENCE SECTION */
/**************************/

.section-title { 
  font-family: "Lexend";
  color: #fff;
}

/* Timeline line */
.timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 30px;
    border-left: 3px dashed #324366;
}

/* Each item */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* Emoji bubble */
.timeline-icon {
    position: absolute;
    left: -48px;
    top: 0;
    font-size: 28px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    z-index: 2;
}


/* Card style */
.timeline-card {
    background: #192c53;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Hover effects */
.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.2) rotate(-10deg);
}

/* Title styling */
.role-title {
    font-weight: 600;
    font-size: 18px;
}

.company {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    line-height: 3rem;
}

/* Section title */
.section-title {
    font-size: 36px;
    font-weight: bold;
}

/* Fun highlight */
.highlight {
    background: linear-gradient(120deg, #d4fc79, #96e6a1);
    padding: 2px 6px;
    border-radius: 6px;
    color: #000;
}

.experience-content {
  font-size: 1.4rem;
  line-height: 1.7rem;
}

/**************************/
/* PROJECTS SECTION */
/**************************/

.section-title {
    font-size: 36px;
    font-weight: bold;
}

.uk-text-muted {
  line-height: 2rem;
}


.project-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: #192C53;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* Project preview placeholder */
.project-preview {
    height: 180px;
    overflow: hidden;
}

.project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes it look clean like a card thumbnail */
    display: block;
}

/* Tags */
.tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Button */
.demo-btn {
    border-radius: 30px;
    color: #000;
    background-color: #81D5F7;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease; /* smooth hover/click */
}

.demo-btn:hover {
    background-color: #192C53;
    color: #81D5F7;
    box-shadow: inset 0 0 0 3px #81D5F7;
}

.demo-btn:focus,
.demo-btn:active {
    outline: none;    /* removes browser outline */
    transform: none;  /* prevents shrinking */
    box-shadow: none; /* optional */
}

/**************************/
/* SKILLS SECTION */
/**************************/

.section-title {
    font-size: 36px;
    font-weight: bold;
}

.skill-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    background-color: #192C53;
}

h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Emoji header */
.skill-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Skill tags */
.skill-tag {
    display: inline-block;
    background: #324366;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: #1e87f0;
    color: white;
    transform: scale(1.05);
}



/**************************/
/* ABOUT ME SECTION */
/**************************/



.profile-bubble {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background: #001540;
  font-family: 'Segoe UI', sans-serif;
}

.profile-container {
  position: relative;
  max-width: 600px; /* wider bubble */
  width: 100%;
}

.profile-avatar {
  position: absolute;
  top: 10px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #0f172a;
  overflow: hidden;
  background: #1e293b;
  z-index: 2;
  box-shadow: 0 0 0 0.3rem #f6f6f6;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speech-bubble {
  background: linear-gradient(135deg, #192C53, #324366);
  padding: 30px 30px 30px 60px; /* extra left space for arrow */
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speech-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Arrow pointing to avatar */
.speech-bubble::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-style: solid;
  border-color: transparent #3b82f6 transparent transparent;
}

.profile-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.profile-description {
  font-size: 15px;
  line-height: 1.6;
  color: #e2e8f0;
  font-style: italic;
}

.profile-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  transition: background 0.3s ease;
}

.tag:hover {
  background: rgba(255,255,255,0.35);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
  background-color: #001239;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.cta-logo {
    height: 14.2rem;

}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  margin-bottom: 3.2rem;
  padding-left: 2rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #d3d3d3;
  margin-top: auto;
  font-weight: 200;
}


.footer-heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 4rem;
  line-height: 3rem;

}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.hours {
  font-size: 1.3rem;
  font-weight: 400;
}

.service-area {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2rem;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #81D5F7;
}
