html{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    scroll-behavior: smooth;
}

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

.header{
    background-color: #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 36px;   
    /* position: sticky;
    top: 0;
    z-index: 100;  */
}
.logo{
    font-size: 24px;
    font-weight: 900;
    color: #F9FAF8;
}
.head-links{
    display: flex;
    gap: 42px;
}

.head-links a {
    text-decoration: none;
    color:#c9cacc;
    font-size:18px;
    transition: color 0.3s ease;
}

.head-links a:hover {
  color: #ffffff;
}

.hero-section{
    background-image: url('./images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
}
.hero-section p {
  font-size: 20px;
  max-width: 600px;
}
.cta-button {
  background-color: #3882F6;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #2563eb;
}

.about {
  padding: 100px 20px;
  background: linear-gradient(0deg, #283E51, #1F2937);
  color: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.about h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffce00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 15px;
}

/* .about{
    color: #f7f9fc;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.container-one h2{
    font-size: 40px;
    font-weight: 600;
}

.container-one p{
    font-size: 20px;
    max-width: 600px;
}

.container-one{
    background-color: #1F2937;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 300px;
    width:50%;
    padding: 30px 30px;
    align-items: center;
} */

footer{
    background-color: #1F2937;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    color:#fff;
}
.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    text-align: center;
}
.container{
    background-color: #2F6DF6;
    padding: 18px 36px;
    border-radius: 10px;
}
.container h2{
    font-size: 36px;
    color:#F9FAF8;
    font-weight: 800;
    margin-bottom: 8px; 
   
}
.container p{
    color:#c9cacc;
}

.link{
    display: flex;
    flex-direction: column;
    margin: 15px;
}

.container .link p{
    color:black;
    align-self: center;
}
.link a{
    text-decoration: none;
    color: black;
}
.link a:hover {
  color: #ffffff;
}

.projects {
  padding: 50px 20px;
  background: linear-gradient(0deg, #283E51, #1F2937);
  text-align: center;
}

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #f7f4f4;
}

/* Layout for all projects */
.projects .project {
  background: #eae7e7;
  border-radius: 12px;
  padding: 20px;
  margin: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
}

.projects .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.projects .project h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #444;
}

.projects .project p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.projects .project a,
.projects .project span {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
}

.projects .project a {
  background-color: #007bff;
  color: #fff;
}

.projects .project a:hover {
  background-color: #0056b3;
}

.projects .project span {
  background-color: #ffc107;
  color: #333;
}

/* Make them display side by side */
.box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
