body {
    margin: 0;
    font-family: Verdana, sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column; /* stack header and menu vertically */
    align-items: center; /* center horizontally */
}

/* 🔹 Header container */
.top-container {
    width: 80%;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    box-sizing: border-box;
}

/* 🔹 Header layout */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 🔹 Logo + Name section */
.left-section {
    display: flex;
    align-items: center;
    gap: 15px; /* space between logo and text */
}

/* 🔹 Logo */
img {
    height: 90px;
}

/* 🔹 Name + Title */
.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 16px;
    color: #333333;
    letter-spacing: 2px;
    margin: 0;
}

h3 {
    font-size: 9px;
    color: #444444;
    letter-spacing: 1px;
    margin: 3px 0 0 0;
}

/* 🔹 Contact section */
.right-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.contact-block {
    text-align: right;
}

.label {
    font-size: 10px;
    color: #777;
    margin: 0 0 2px 0;
    align-items: flex-start;
}

.contact-block a {
    font-size: 14px;
    color: #555555;
    text-decoration: none;
    font-style: oblique;
}

.contact-block a:hover {
    text-decoration: underline;
}

/* 🔹 Menu section below header */
.menu-item {
  text-decoration: none;
  color: inherit; /* Keeps same color as before */
}
.menu-container {
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
    /* background-color: #f8f8f8; */
    /* border-radius: 8px;
    border: 1px solid #ddd; */
}

.menu-item {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: #0078d7;
    transform: scale(1.05);
}
/* 🔹 Logo + Name section */
.softwares {
    width: 100vw; /* full browser width */
    height: 50vh; /* full browser height */
    display: flex;
    justify-content: center; /* center image horizontally */
    align-items: center; /* center image vertically */
    margin: 0;
    padding: 0;
    background-color: #ffffff60; /* optional: keep background white */
    overflow: hidden; /* ensures no scrollbars if image overflows */
}

.softwares img {
    width: 80%;
    height: 90%;
    object-fit: contain; /* or 'cover' if you want it to fill fully */
}
.service-container {
    position: relative;
    width: 80%;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    margin: 60px auto;
    padding: 30px 0;
    flex-wrap: wrap; 
    border-top: 1px solid #eee;
}
.service-wrapper {
  display: flex;
  transition: transform 0.5s ease; /* smooth sliding */
}

.service-item {
  flex: 0 0 calc(100% / 3); /* show 3 at a time */
  box-sizing: border-box;
  text-align: center;
  padding: 10px 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    height: 60px;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 16px;
    color: #222;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.material-icons {
  font-size: 60px;
  color: red;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.material-icons:hover {
  transform: scale(1.2) translateY(-50%);
  color: #0078d7;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

/* 🔹 AI Office Section */
.ai-office-section {
    width: 90%;
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.ai-office-img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.ai-office-content {
    flex: 1;
    min-width: 300px;
}

.ai-office-content h2 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.ai-office-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}
/* 🔹 About Section */
.about-section {
    width: 85%;
    margin: 100px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: 60%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-content {
    flex:2;
    min-width: 200px;
}

.about-content h2 {
    font-size: 40px;
    color: #111;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-content h4 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* 🔹 Buttons */
.about-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #d8e4c4;
    color: #111;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #afd5d8;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #000;
    color: #000;
    padding: 9px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #000;
    color: #fff;
}
/* 🔹 Horizontal Timeline Section */
.timeline-section {
  width: 90%;
  padding: 0%;
  /* margin: 80px auto; */
  text-align: center;
  align-items:baseline;
}

.timeline-section .section-title {
  font-size: 28px;
  font-weight: 600;
  margin-top: 0%;
  /* margin-bottom: 50px; */
  color: #222;
}

.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  margin: 0 auto;
  padding: 40px 5%;
  max-width: 100%;
  box-sizing: border-box;
}

.timeline-horizontal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ccc;
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-item {
  position:relative;
  width: 30%;
  row-gap: inherit;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.timeline-item .icon {
  font-size: 28px;
  color: #0a74da;
  background: #eaf2ff;
  width: 55px;
  height: 55px;
  line-height: 55px;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.timeline-item h3 {
  margin: 10px 0;
  color: #0a74da;
  font-size: 18px;
}

.timeline-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* 🔹 Mobile responsive */
@media screen and (max-width: 768px) {
  .timeline-horizontal {
    flex-direction: column;
    align-items: center;
  }

  .timeline-horizontal::before {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 80%;
    margin-bottom: 40px;
  }
}

/* 🔹 Hire Me Section */
.hire-section {
    background-color: #d8e4c4;
    width: 100%;
    text-align: center;
    padding: 20px 20px; 
    margin-bottom: 20px;
}

.hire-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.hire-section p {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
}

.hire-divider {
    width: 60%;
    margin: 20px auto 50px;
    border: none;
    border-top: 1px solid #bbb;
}

.hire-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.hire-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hire-icon {
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.hire-label {
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
    margin: 0;
}

.hire-item a {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-top: 5px;
}

.hire-item a:hover {
    text-decoration: underline;
}



