* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: black;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
/* NAVBAR START */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.navlinks {
  display: flex;
  list-style-type: none;
}

.navlinks li {
  margin-left: 30px;
}

.navlinks a {
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.navlinks a:hover {
  color: #aaa;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* MAIN STYLES */
main {
  padding-top: 70px;
}

section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

#section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 80vh;
  justify-content: center;
}

.header1 {
  margin-bottom: 30px;
}

.para1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.para2 {
  font-size: 1.2rem;
  color: #aaa;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.card1-body h2 {
  font-size: 3.4rem;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.card1-footer p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.card1-section1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

.button1 {
  display: inline-block;
  border: 1px solid white;
  border-radius: 6px;
  padding: 12px 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.button1:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.button-1 {
  background-color: transparent;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.fa {
  padding: 12px;
  font-size: 20px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 6px;
  transition: all 0.3s;
}

.fa:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.card2-container {
  margin-top: 50px;
  max-width: 400px;
  margin: auto;
}

.bitmoji1 {
  position: relative;
  width: 100%;
  border-radius: 20px;
}

/* TECHNOLOGIES SECTION */
#section3 {
  padding: 50px 20px;
}

.card3-container {
  text-align: center;
}

.marquee h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.marquee1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 150px;
}

.marquee-imgfixdark {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  height: 80px;
  width: auto;
  margin: 0 18px;
  padding: 12px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.marquee-imgfixdark:hover {
  transform: scale(1.15);
  box-shadow: 0px 0px 18px rgba(255, 255, 255, 0.4);
  transform: rotateY(15deg) rotateX(10deg) scale(1.18);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
  animation: bounce 0.4s ease;
}

/* Tooltip */
.marquee-imgfixdark::after {
  content: attr(data-label);
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

/* Show tooltip on hover */
.marquee-imgfixdark:hover::after {
  opacity: 1;
  transform: translateY(0);
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

/* Bounce animation */
@keyframes bounce {
  0% {
    transform: translateY(0) rotateY(15deg) rotateX(10deg) scale(1.18);
  }
  50% {
    transform: translateY(-10px) rotateY(15deg) rotateX(10deg) scale(1.23);
  }
  100% {
    transform: translateY(0) rotateY(15deg) rotateX(10deg) scale(1.18);
  }
}

/* PROJECTS SECTION */
#projects {
  padding: 80px 20px;
}

.card4-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.projects-bitmoji {
  max-width: 400px;
}

.bitmoji2 {
  width: 100%;
  border-radius: 20px;
}

.card5-container {
  text-align: center;
  max-width: 600px;
}

.card5-header h4 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.card5-body p {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.button5 {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.button5:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* MY PROJECTS SECTION */
#my-projects {
  padding: 80px 20px;
}

.card6-container {
  text-align: center;
}

.projects-images {
  margin-bottom: 50px;
}

.projects-section1,
.projects-section2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.ireporter,
.primeride-connect,
.letsconnect-img,
.reliantcarriers-img {
  background: linear-gradient(135deg, #1e0253, #c637a0);
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 220px;
  position: relative;
  transition: transform 0.3s;
}
.projects-section1 > div,
.projects-section2 > div {
  flex: 1 1 300px;
  max-width: 400px;
}

.ireporter:hover,
.primeride-connect:hover,
.letsconnect-img:hover,
.reliantcarriers-img:hover {
  transform: translateY(-10px);
}

.primeride-connect {
  background: linear-gradient(to right, #e9d362, #333333);
}

.letsconnect-img {
  background: linear-gradient(to right, #ff4b2b, #ff416c);
}
.reliantcarriers-img {
  background: linear-gradient(to right, #2c3e50, #fd746c);
}

.i-reporter,
.primeride,
.letsconnect,
.reliantcarriers {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ireporter-p1,
.primeride-p1,
.letsconnect-p1,
.reliantcarriers-p1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  background: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.ireporter-p2,
.primeride-p2,
.letsconnect-p2,
.reliantcarriers-p2 {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  margin-bottom: 20px;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#reliantcarriers-p3{
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  margin-bottom: 20px;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.ireporter-link,
.primeride-link,
.letsconnect-link,
.reliantcarriers-link {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
}

.material-symbols-outlined {
  background: transparent;
  color: white;
  font-size: 2rem;
}

.projects-button {
  margin-top: 30px;
}

.projects-button button {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.projects-button button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* EXPERIENCE SECTION */

#experience {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-title {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
}

/* Container */
.experience-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card */
.experience-card {
  background: linear-gradient(to bottom right, #141414, #1e1e1e);
  border-radius: 15px;
  padding: 25px 30px;
  max-width: 450px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

/* Icon */
.experience-icon {
  background: rgba(255, 255, 255, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
  background: rgba(255, 195, 0, 0.2);
  transform: scale(1.1);
}

.experience-icon span {
  font-size: 30px;
  color: #fff;
  transition: color 0.3s ease;
}

.experience-card:hover .experience-icon span {
  color: #ffc300;
}

/* Text */
.experience-role {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  transition: color 0.3s ease;
}

.experience-card:hover .experience-role {
  color: #ffc300;
}

.experience-company,
.experience-location {
  color: #bbbbbb;
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* Bullet list */
.experience-list {
  margin-top: 12px;
  padding-left: 18px;
  transition: all 0.3s ease;
}

.experience-card:hover .experience-list {
  opacity: 0.7;
  transform: translateY(5px);
}

.experience-list li {
  color: #d4d4d4;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 0.95rem;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* Technology overlay */
.tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(20, 20, 20, 0.95),
    rgba(30, 30, 30, 0.95)
  );
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
  text-align: center;
}

.experience-card:hover .tech-overlay {
  opacity: 1;
  visibility: visible;
}

.tech-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffc300;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: scale(1.1);
}

.tech-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.tech-item:hover .tech-icon {
  background: rgba(255, 195, 0, 0.2);
}

.tech-icon img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

.tech-label {
  font-size: 0.7rem;
  color: #d4d4d4;
  text-align: center;
  line-height: 1.2;
}

#experience * {
  background-color: transparent !important;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .experience-card {
    max-width: 100%;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* SERVICES SECTION */
#services-section {
  padding: 80px 20px;
}

.section4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.section4-text {
  text-align: center;
  max-width: 600px;
}

.section4-text h5 {
  margin-bottom: 20px;
  font-size: 3rem;
  margin-bottom: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.sect4 {
  font-weight: 600;
  font-style: italic;
}

.sect4-web {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 20px;
  margin-bottom: 30px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
}

.section4-text p {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-bottom: 30px;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.button6 {
  margin-top: 20px;
}

.button-6 {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.button-6:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.section4-bitmoji {
  max-width: 400px;
}

.bitmoji6 {
  width: 100%;
  border-radius: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #333;
}

.footer-p1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.footerp1-span {
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: norma;
}

#datetime {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.footer-p2 {
  color: #aaa;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* MEDIA QUERIES */
@media screen and (min-width: 768px) {
  .card4-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .card5-container {
    text-align: left;
  }

  .section4 {
    flex-direction: row;
    justify-content: space-between;
  }

  .section4-text {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navlinks {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: right 0.3s ease;
  }

  .navlinks.active {
    right: 0;
  }

  .navlinks li {
    margin: 20px 0;
  }

  .card1-body {
    font-size: 2rem;
  }

  .card5-header h4 {
    font-size: 2rem;
  }

  .section4-text h5 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .card1-body {
    font-size: 1.7rem;
  }

  .card5-header h4 {
    font-size: 1.8rem;
  }

  .section4-text h5 {
    font-size: 1.7rem;
  }

  .sect4-web {
    font-size: 1.2rem;
  }
}
