@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --Poppins: "Poppins", sans-serif;
}

/* Global */

.heading {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}

.heading h2 {
  font-weight: 600;
  font-size: 30px;
}

section {
  padding: 100px;
}

/* Resetting everything */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--Poppins);
  scroll-behavior: smooth;
  user-select: none;
}

/* Banner (main page) */

.banner {
  position: relative;
  min-height: 100vh;
  background: url(images/banner.png);
  background-size: cover;
  background-position: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-logo {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.banner-logo img {
  border-radius: 20px;
  height: 400px;
  opacity: 80%;
}

.banner h2 {
  font-size: 3em;
  color: #fff;
  font-weight: 500;
  line-height: 1.5em;
}

.banner h2 span {
  font-size: 1.5em;
  font-weight: 700;
}

.banner h3 {
  font-size: 2em;
  color: #fff;
  font-weight: 500;
  line-height: 1.5em;
}

.btn {
  position: relative;
  background: #2196f3;
  display: inline-block;
  color: #fff;
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Header/Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}

header.sticky {
  background: #fff;
  padding: 0 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header.sticky .logo {
  color: #111;
}

/* header .logo {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
} */

.logo img {
  height: 60px;
}

header ul {
  display: flex;
}

header ul li {
  position: relative;
  list-style: none;
}

header ul li a {
  position: relative;
  display: inline-block;
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
}

header.sticky ul li a {
  color: #111;
}

/* About */
.content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.contentBx {
  padding-right: 30px;
}

.contentBx h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.w50 {
  min-width: 50%;
  /* max-width: 400px; */
}

.w50.left {
  margin-right: 20px;
}

/* .w50 img {
  max-height: 400px;
} */

img {
  max-width: 100%;
}

/* License */

/* License section */
.license {
  background: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.license-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  flex-direction: column;
  text-align: center;
}

.license-text {
  width: 50%;
  color: #444;
  line-height: 1.8;
}

.license-image {
  width: 45%;
}

.license-image img {
  width: 100%;
  max-width: 420px; /* 🔴 controls size */
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .license-content {
    flex-direction: column;
    text-align: center;
  }

  .license-text,
  .license-image {
    width: 100%;
  }
}

/* Services */

.services {
  background: #111;
}

.heading.white {
  color: #fff;
}

.services .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.servicesBx {
  padding: 40px 20px;
  background: #222;
  color: #fff;
  max-width: 340px;
  margin: 20px;
  text-align: center;
  transition: 0.5s;
}

.servicesBx:hover {
  background: #2196f3;
}

.servicesBx img {
  max-width: 80px;
  filter: invert(1);
}

.servicesBx h2 {
  font-size: 22px;
  font-weight: 600;
}

/* Projects Section */
/* .projects {
  background: #f7f7f7;
}

.projects .heading p {
  color: #555;
  margin-top: 10px;
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project-list {
  padding-left: 20px;
  margin-top: 10px;
}

.project-list li {
  margin-bottom: 8px;
  color: #444;
  line-height: 1.6;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 40px;
}

.project-card.reverse {
  flex-direction: row-reverse;
}

.project-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.project-content {
  max-width: 500px;
}

.project-year {
  display: inline-block;
  background: #2196f3;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.project-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.project-content p {
  color: #444;
  line-height: 1.6;
}  */

/* Timeline Section */
.timeline-section {
  background: #f7f7f7;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #2196f3;
  transform: translateX(-50%);
}

/* Timeline item */
.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item.left {
  flex-direction: row;
}

.timeline-item.right {
  flex-direction: row-reverse;
}

/* Content */
.timeline-content {
  width: 45%;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content .year {
  display: inline-block;
  background: #2196f3;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.timeline-content h3 {
  margin: 10px 0;
}

.timeline-content h4 {
  margin-top: 15px;
  color: #2196f3;
}

/* Image */
.timeline-image {
  width: 45%;
}

.timeline-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Dots */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #2196f3;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Responsive */
@media (max-width: 900px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    padding-left: 40px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-content,
  .timeline-image {
    width: 100%;
  }

  .timeline-image {
    margin-top: 20px;
  }
}

/* Work */
.work .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.workBx {
  width: 50%;
  padding: 20px;
}

.workBx img {
  max-width: 100%;
}

.workBx img[onclick] {
  cursor: pointer;
}

/* Test */
.testimonial {
  background: #f7f7f7;
}

.testimonial .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.testimonialBx {
  max-width: calc(50% - 40px);
  padding: 60px 40px;
  margin: 20px;
  background: #2196f3;
}

.testimonialBx p {
  color: #fff;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
}

.testimonialBx h3 {
  margin-top: 40px;
  text-align: end;
  color: #fff;
  font-weight: 600;
  line-height: 1em;
}

.testimonialBx h3 span {
  font-size: 14px;
  font-weight: 400;
}

/* Contact */
.contact {
  background: #111;
}

.formBx {
  min-width: 60%;
}

.formBx iframe {
  height: 100%;
  width: 100%;
}

.formBx form {
  display: flex;
  flex-direction: column;
}

.formBx form h3,
.contactInfo h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.formBx form input,
.formBx form textarea {
  margin-bottom: 20px;
  padding: 15px;
  font-size: 16px;
  background: #222;
  border: none;
  outline: none;
  resize: none;

  color: #fff;
}

.formBx form textarea {
  min-height: 200px;
}

.formBx form input::placeholder,
.formBx form textarea::placeholder {
  color: #999;
}

.formBx form input[type="submit"] {
  max-width: 100px;
  background: #2196f3;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contactInfo {
  min-width: 40%;
}

.contactInfoBx {
  position: relative;
}

.contactInfoBx .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.contactInfoBx .box .icon {
  min-width: 40px;
  padding-top: 4px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 24px;
}

.contactInfoBx .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  font-weight: 300;
}

.text h3 {
  font-weight: 500;
  color: #2196f3;
  margin-bottom: 0;
}

/* CopyRight */
.copyright {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
}

/* Responsive */

@media (max-width: 1125px) {
  .content {
    flex-direction: column;
  }
  .testimonialBx {
    max-width: calc(100% - 40px);
    padding: 40px 20px;
    margin: 10px;
  }
  .w50 {
    margin-bottom: 20px;
  }
  .workBx {
    width: 100%;
    padding: 10px;
  }
}
@media (max-width: 991px) {
  .project-card,
  .project-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .project-content {
    max-width: 100%;
  }

  .contentBx {
    text-align: center;
  }
  header,
  header.sticky {
    padding: 20px 50px;
    z-index: 1000;
    transition: 200ms;
  }

  .menu {
    position: fixed;
    top: 75px;
    left: -100%;
    display: block;
    padding: 100px 50px;
    text-align: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }

  header ul li a {
    color: #111;
    margin: 10px;
    font-size: 24px;
  }

  .toggle {
    width: 40px;
    height: 40px;
    background: url(images/menu.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    cursor: pointer;
  }

  .toggle.active {
    background: url(images/close.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    cursor: pointer;
  }

  header.sticky .toggle {
    filter: invert(1);
  }

  .menu.active {
    left: 0;
  }

  section {
    padding: 100px 50px;
  }

  .banner {
    padding: 150px 50px 100px;
  }
  .banner h2 {
    font-size: 3em;
  }
  .banner h3 {
    font-size: 2em;
  }

  .btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
  }

  .heading h2 {
    font-size: 24px;
  }

  .contentBx h3 {
    font-size: 20px;
  }

  .content {
    flex-direction: column;
  }

  .w50 {
    margin-bottom: 20px;
  }

  .servicesBx {
    margin: 10px;
  }

  .workBx {
    width: 100%;
    padding: 10px;
  }

  .testimonialBx {
    max-width: calc(100% - 40px);
    padding: 40px 20px;
    margin: 10px;
  }

  .testimonialBx h3 {
    margin-top: 20px;
  }

  .contactInfo {
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  header,
  header.sticky {
    padding: 20px;
  }

  .banner {
    padding: 150px 20px 100px;
  }
  section {
    padding: 100px 20px;
  }
}

@media (max-width: 750px) {
  .banner h2 {
    font-size: 2.5em;
  }
  .banner h3 {
    font-size: 2em;
  }
}

@media (max-width: 620px) {
  .banner h2 {
    font-size: 2em;
  }
  .banner h3 {
    font-size: 1.5em;
  }
}

.fullname {
  display: flex;
  justify-content: space-between !important;
}

.fullname input {
  width: 49%;
}

@media (max-width: 400px) {
  .fullname {
    display: block;
  }
  .fullname input {
    width: 100%;
  }
}
