@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Gobal Style */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", sans-serif;
}

/* Base styles for larger screens */
.item-heading h1,
.business-statistic-header h1,
.service-header h1,
.company-team-heading h1 {
  color: #1b1d21;
  margin-bottom: 30px;
}

/* Medium screens (tablets, etc.) */
@media screen and (min-width: 768px) {

  .item-heading h1,
  .business-statistic-header h1,
  .service-header h1,
  .company-team-heading h1 {
    font-size: 42px;
  }
}

/* Small screens (large phones, etc.) */
@media screen and (max-width: 425px) {

  .item-heading h1,
  .business-statistic-header h1,
  .service-header h1,
  .company-team-heading h1 {
    font-size: 36px;
  }

  .circle,
  .another-circle {
    display: none;
  }
}

/* Small screens (phones etc. */
@media screen and (max-width: 375px) {

  .item-heading h1,
  .business-statistic-header h1,
  .service-header h1,
  .company-team-heading h1 {
    font-size: 30px;
  }
}

/* Extra Small Screens */
@media screen and (max-width: 320px) {

  .item-heading h1,
  .business-statistic-header h1,
  .service-header h1,
  .company-team-heading h1 {
    font-size: 23px;
  }
}


/* For Paragraph */
.team-member-about p,
.item-paragraph p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

/* Navigation Global Styles */
.header-container {
  background-color: #636c79;
}

.header-items {
  padding: 25px 40px 25px 40px;
}

.company-logo img {
  width: 100px;
  height: 38px;
}

.header-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

/* Button Style */
.nav-item:last-child button,
.item-button button {
  padding: 9px 35px;
  background-color: transparent;
  border: 1px solid #7f8691;
  color: #edeeef;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
}

/* Navigation For Small Devices */
@media screen and (max-width: 1199px) {
  .header-items .header-item:nth-child(2) {
    display: none;
  }

  .header-item:last-child i {
    color: #edeeef;
    font-size: 23px;
  }
}

/* Navigation For Large Devices */
@media screen and (min-width: 1200px) {
  .nav-items li {
    list-style-type: none;
  }

  .nav-items li a {
    text-decoration: none;
    color: #edeeef;
    font-weight: 400;
  }

  .header-item:first-child {
    flex: 4;
  }

  .header-item:nth-child(2) {
    flex: 6;
  }

  .header-items .header-item:last-child {
    display: none;
  }

  .header-items .header-item:nth-child(2) {
    display: block;
  }

  .header-items .header-item:nth-child(2) .nav-items {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .nav-items .nav-item:last-child {
    margin-left: 75px;
  }
}

/*Hero-Section Global Style  */
.hero-container,
.service-container {
  padding: 10px 50px 65px 50px;
}

.hero-items,
.service-items,
.service-section .service-container:nth-child(2) .service-items {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-item,
.service-item {
  flex: 1;
  padding: 10px;
}

.hero-item-1 img,
.business-statistic-img img,
.service-item-1 img,
.team-member-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.item-heading h1 {
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  .header-items {
    padding-bottom: 15px;
  }

  .hero-container,
  .service-container {
    padding: 0px 50px 10px 50px;
  }

  .hero-items,
  .service-items,
  .service-section .service-container:nth-child(2) .service-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .item-heading h1 {
    color: #ffffff;
  }

  .team-member-about p,
  .item-paragraph {
    color: #edeeef;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
    letter-spacing: 0.1em;
    line-height: 1.8em;
  }
}

/* Hero-Section Button Below 510px */
.team-member-button button,
.service-button button,
.item-button button {
  background-color: #8bb7a2;
  font-weight: 600;
  padding: 15px 35px;
  letter-spacing: 0.05rem;
  border-color: transparent;
  right: 3px;
  top: 5px;
  font-size: 16px;
}

/* Hero-Section Button */
@media screen and (min-width: 510px) {
  .item-button {
    position: relative;
    background-color: #ffffff;
    padding: 20px;
  }

  .item-button::before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  .item-button::after {
    padding-left: 10px;
    content: 'Enter you email address';
    font-size: 14px;
    color: #a0a1a2;
  }

  .item-button button {
    cursor: pointer;
    position: absolute;
  }
}

/* Business Statistic Style */
.business-statistic-container,
.company-team-container {
  padding: 50px 50px 30px 50px;
  margin-bottom: 50px;
}

.business-statistic-header h1 {
  text-align: center;
}

.business-statistic-number {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.business-statistic-item {
  padding: 10px;
}

.business-statistic-item h1 {
  margin-bottom: 15px;
  text-align: center;
}

.business-statistic-img {
  position: relative;
}

.circle,
.another-circle {
  width: 120px;
  height: 120px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #edeeef;
}

.another-circle {
  width: 200px;
  height: 200px;
}

.business-statistic-img .fa-play {
  color: #90baa6;
  font-size: 25px;
  padding: 27px;
  background-color: #ffffff;
  border-radius: 50%;
}

.business-statistic-img .fa-play,
.circle,
.another-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* For Circle */
@media only screen and (min-width: 426px) and (max-width: 768px) {
  .another-circle {
    display: none;
  }
}

/* Company Services */
.service-item .item-heading h1 {
  color: #000000;
}

.team-member-about p,
.item-paragraph p {
  color: #1b1d21;
}

.item-paragraph-white p {
  color: #edeeef;
}

.team-member-button button,
.service-button button {
  color: #ffffff;
}

.service-header h1 {
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .service-section .service-container:nth-child(2) .service-items {
    display: flex;
    flex-direction: row-reverse;
  }
}

/* Company Team Members */
@media screen and (max-width: 900px) {
  .company-team-intro {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.company-team-intro {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company-team-item {
  flex: 1;
}

@media screen and (max-width: 900px) {

  .company-team-members {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 540px) and (max-width: 900px) {

  .team-member-img,
  .team-member-name {
    display: flex;
    justify-content: center;
  }

  .team-member-about p {
    text-align: center;
  }
}

.company-team-members {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.company-team-member {
  flex: 1;
  padding: 10px 10px 0 10px;
}

.team-member-img img {
  max-height: 520px;
}

.team-member-button {
  display: flex;
  justify-content: center;
}

/* Footer Container */

.footer-section {
  background-color: #10181d;
  padding: 50px 50px 100px 50px;
}

.footer-section-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.company-social-handle i {
  padding: 12px;
  font-size: 18px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #282f34;
}

.company-social-handle i:not(:last-child) {
  margin-right: 10px;
}

hr {
  border: 1px solid #2f373c;
  margin: 50px 0px;
}

.footer-item-heading h3 {
  color: #ebecec;
  margin-bottom: 20px;
}

.footer-item-lists li {
  margin-bottom: 20px;
  list-style: none;
}

.footer-item-list a {
  text-decoration: none;
  color: #a4a7aa;
}

.footer-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* For Small Screens(phones . .) */
@media screen and (max-width: 425px) {
  .footer-items {
    flex-direction: column;
  }
}

@media screen and (min-width: 426px) and (max-width: 900px) {
  .footer-item {
    flex: 0 0 48%;
  }
}