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

body{
  background-color: #F7F4EA;
  color: #121212;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  padding-bottom: 30px;

}

a{
  color:#121212;
}

.navbar{
  max-width: 1000px;
  margin:auto;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size:20px;
}

.logo-box{
  background-color: #FFCB42;
  padding: 4px 10px;
  border-radius:6px;
  border:2px solid #121212;
  font-size: 16px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:5px;
  background-color:#ffffff;
  padding:5px 8px;
  border-radius: 30px;
  border:2px solid #121212;
}

.nav-item{
  padding:6px 18px;
  border-radius:20px;
  font-weight:700;
  font-size:14px;
  
}
.nav-active{
  background-color:#FF85A1 ;
  color:#121212;
}

.hero-section{
  max-width: 1000px;
  margin:30px auto 60px;
  padding:0px 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items: center;
}

.hero-tag{
  display:inline-block;
  background-color: #ffffff;
  border:2px solid #121212;
  padding:5px 12px;
  border-radius:20px;
  font-size:14px;
  font-weight:700;
  margin-bottom: 18px;
}

.hero-title{
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15%;
}
.highlight-yellow{
  background-color: #FFCB42;
  padding:2px 6px;
  border-radius: 4px;

}
.highlight-pink {    /* 33 */
  background-color: #FF85A1;
  padding: 2px 6px;
  border-radius: 4px;
}

.hero-subtitle{
  font-size: 16px;
  color:#555555;
  margin-bottom: 25px;
  max-width: 480px;
}

.hero-buttons{
  display:flex;
  gap:15px;
}

.btn{
  display:inline-block;
  padding:12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size:15px;
  border:2px solid #121212;
  cursor:pointer;
}

.btn-primary{
  background-color:#70D6FF;
  color:#121212;
}
.btn-secondary{
  background-color: #ffffff;
  color:#121212
}

.btn-sm{
  padding:8px 16px;
  font-size:14px;
  background-color: #ffffff;
}

/* used ai to get the terminal css syntax */
.terminal-container {    
  position: relative;
}

.terminal {    
  background-color: #0F172A;
  color: #F8FAFC;
  border-radius: 12px;
  border: 2px solid #121212;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

.terminal-header {    
  background-color: #1E293B;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #334155;
}

.terminal-dots {   
  display: flex;
  gap: 6px;
}

.dot {    
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background-color: #FF5F56; }    /* 49 */
.dot.yellow { background-color: #FFBD2E; }    /* 50 */
.dot.green { background-color: #27C93F; }    /* 51 */

.terminal-title {  
  font-size: 12px;
  color: #94A3B8;
}

.terminal-body {    
  padding: 20px;
  line-height: 1.7;
}

.code-comment { color: #64748B; }    
.code-keyword { color: #F472B6; }    
.code-var { color: #38BDF8; }    
.code-key { color: #A7F3D0; }    
.code-string { color: #FDE047; }    
.code-indent { padding-left: 20px; }   

.ticker-wrapper{
  background-color:#FFCB42 ;
  border-top:2px solid #121212;
  border-bottom:2px solid #121212;
  padding:12px 0;
  margin:40px 0;
  overflow: hidden;
}

.ticker{
  display: flex;
  justify-content: space-around;
  font-size:15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-section{
 max-width: 1000px;
 margin:50px auto;
 padding:0 25px;
}

.section-title{
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}
.stats-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.stat-card{
  background-color: #ffffff;
  border:2px solid #121212;
  border-radius: 12px;
  padding:24px;
  text-align: center;
}
.stat-card h3{
  font-size:40px;
  font-weight:800;
  color:#121212
}
.stat-card p{
  font-weight:700;
  color:#555555
}
.services-grid{
  display:grid;
  grid-template-columns:1fr 1fr ;
  gap:20px;
}

.service-card{
  background-color: #ffffff;
  border:2px solid #121212;
  border-radius:12px ;
  padding:28px;
}
.service-card h3 {    
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card p {    
  color: #555555;
  font-size: 15px;
  margin-bottom: 15px;
}

.card-link {    
  font-weight: 700;
  font-size: 14px;
  color: #121212;
}
.portfolio-section{
  max-width:1000px;
  margin:50px auto;
  padding:0px 25px;
}
.projects-grid {    /* 114 */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card{
  background-color: #ffffff;
  border: 2px solid #121212;
  border-radius:12px;
  padding:24px;
  display:flex;
  flex-direction:column ;
  justify-content: space-between;
}
.project-image-placeholder{
  background-color: #E2E8F0;
  height:140px;
  border-radius: 8px;
  display:flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
  border:1px dashed #121212;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag-label{
  display:inline-block;
  background-color: #E2E8F0;
  padding:3px 10px;
  border-radius:4px;
  font-size:12px;
  font-weight: 700p;
  margin-bottom: 8px;
}
.project-card h3{
 font-size: 18px;
 font-weight: 800;
 margin-bottom: 8px;

}
.project-card p{
   font-size:14px;
  color: #555555;
  margin-bottom: 34px;
}

.contact-section{
  max-width:1000px;
  margin:60px auto 40px;
  padding:0 25px
}
.contact-card{
  background-color: #ffffff;
  border:2px solid #121212;
  border-radius:16px;
  padding:50px 30px;
  text-align:center;
  
}
.contact-card h2{
  font-size:30px;
  font-weight:800;
  margin-bottom: 12px;
}
.contact-card p{
  color:#555555;
  margin-bottom:24px;
}

.footer{
 max-width: 1000px;
 margin:40px auto 0;
 padding:24px 25px 0;
 border-top:1px solid #E2E8F0;
 text-align:center;

}
.footer-links{
  display:flex;
  justify-content: center;
  gap:30px;
  font-weight: 800;
  margin-bottom: 12px;

}

.footer-credits{
  font-size:14px;
  color:#555555
}