* {
  font-family: 'Poppins', sans-serif !important;
}

.header {
  /* Layout */
  
    display: flex;              /* puts items in a row */
    justify-content: space-between; /* pushes one to the left, one to the right */
    align-items: center;        /* lines them up in the middle (up and down) */
    height: 60px;               /* makes the header 60px tall */

    
    /* Spacing */
    padding: 10px 20px;                  
    
    /* Typography */
    font-size: 1.2rem;
    
    /* Styling */
    border-bottom: 2px solid #000000;       
    background-color: #ffffff;              
    
    /* Sticky header behavior */
    position: sticky;
    top: 0;
    z-index: 1000;                       
}

/* -------------------- ABOUT -------------------- */  

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.3rem;
}
  
.about-container {
    display: flex;
    height: 100vh;              /* full screen height */
    width: 100%;
  }
  
  
  .about-image {
    flex: 1;                     /* takes half the width */
    height: 100vh;
    overflow: hidden;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;            /* makes sure image fills without distortion */
  }
  
  .about-content {
    flex: 1;                     /* other half of the screen */
    display: flex;
    justify-content: flex-start; /* align to the left */
    align-items: flex-end;       /* stick to the bottom */
    padding: 40px;
    background-color: #ffffff;   /* or any background color you like */
  }

  .about-text h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: bold;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
/* -------------------- TOOLS -------------------- */  
.tools {
    text-align: center;       /* center heading + icons */
    padding: 40px 20px;
    background-color: #ffffff; /* light background for contrast */
  }
  
  .tools h2 {
    font-size: 3rem;
    margin-bottom: 20px;

  }
  
  .tools-logos {
    display: flex;
    justify-content: center;  /* centers the icons horizontally */
    flex-wrap: wrap;          /* allows wrapping on smaller screens */
    gap: 30px;                /* space between logos */
  }
  
  .tools-logos img {
    width: 80px;              /* adjust size as needed */
    height: rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    object-fit: contain; /* makes sure the logo doesn’t stretch */
    display: block;   /* removes extra spacing under image */
  }

  
  .tools-logos img:hover {
    transform: scale(1.2);    /* little zoom effect on hover */
  }
  
/* -------------------- RESUME -------------------- */
.resume-content h2 {
  font-size: 2rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px; /* space between columns */
  margin-top: 40px;
}

.timeline-item {
  /* background: rgba(255, 255, 255, 0.8); /* optional: gives contrast on bg */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* adjust darkness */
}

.timeline-content {
  position: relative;
  z-index: 1; /* keep text above overlay */
  color: #fff;
}

.timeline-item:nth-child(1) {
  background: url("image/healthcare.webp") no-repeat center/cover;
  color: #fff;
}

.timeline-item:nth-child(2) {
  background: url("image/Leads.jpg") no-repeat center/cover;
  color: #fff;
}

.timeline-item:nth-child(3) {
  background: url("image/Leads.jpg") no-repeat center/cover;
  color: #fff;
}

.timeline-item:nth-child(4) {
  background: url("image/ecommerce.webp") no-repeat center/cover;
  color: #fff;
}

.timeline-item:nth-child(5) {
  background: url("image/technical.jpg") no-repeat center/cover;
  color: #fff;
}
/* -------------------- FOOTER -------------------- */
.footer {
    display: flex;
    justify-content: space-between; 
    padding: 20px;
    border-top: 2px solid #ffffff;
    background-color: #ffffff;
}

/* Contact form area */
.footer-form {
    flex: 1;               
    padding: 20px;
    display: flex;
    flex-direction: column;  /* 👈 stacks form elements vertically */
    max-width: 400px;    

}

.footer-form p {
  font-size: 3rem;
  font-weight: bold;
}


.footer-form label {
    margin-top: 12px;
    margin-bottom: 4px;
    font-weight: 500;
}

.footer-form input,
.footer-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.footer-form input {
    height: 35px;
    width: 100%;
}

.footer-form textarea {
    width: 100%;
    resize: vertical; /* lets user resize only up/down */
}

.footer-form button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: rgb(219, 219, 219);
    font-weight: bold;
    cursor: pointer;
    margin-left: 50px;
    margin-right: 50px;
    font-size: 1.2rem;
}

.footer-form button:hover {
    background-color: #555;
}

/* Links + Socials area */
.footer-right {
    display: flex;
    gap: 30px;             
}

.footer-section h4 {
    margin-bottom: 8px; 
    font-size: 1rem;
    font-weight: bold;
}

.footer-links,
.footer-socials {
    list-style: none;
    margin: 0;
    padding-right: 50px;
}

.footer-links li,
.footer-socials li {
    margin: 8px 0; /* vertical stacking */
}

.footer a {
    text-decoration: none;
    color: #1d1c1c;
    font-weight: 500;
}

.footer-heading {
    font-weight: bold;        
    text-transform: uppercase; 
    margin-bottom: 8px;       
}
