@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --black: rgb(8, 8, 8);
  --white: rgb(252, 252, 252);
  --light-grey: #ececec;
  --grey: #dfdfdf;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-weight: 500;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
}

/* Universal Styles */
.img-cont {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--black);
  border: 2px solid var(--black);
  letter-spacing: 0.8px;
  font-weight: 600;
  transition-duration: 0.2s;
}
.cta-btn:hover {
  color: var(--white);
  text-decoration: none;
  background-color: var(--black);
}
.cta-btn-small {
  padding: 4px 16px;
  font-weight: 500;
  border: 1.8px solid var(--black);
}
.cta-btn-icon {
  padding: 6px !important;
  font-size: 20px;
  border: none !important;
}
.cta-btn-icon:hover {
  color: var(--black) !important;
  background-color: transparent !important;
  transform: scale(1.1);
}
.cta-btn-white {
  color: var(--white);
  border: 2px solid var(--white);
}
.cta-btn-white:hover {
  color: var(--black);
  text-decoration: none;
  text-shadow: none;
  background-color: var(--white);
}

.body-text {
  letter-spacing: 0.4px;
  line-height: 26px;
  font-size: 16px;
  font-weight: 600;
}

div[class*="section"] {
  margin-bottom: 96px;
}
.sec-heading {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.sub-heading {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  margin-top: 6px;
  letter-spacing: 0.6px;
  opacity: 0.7;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  padding-top: 28px;
  background-color: transparent;
}
.navbar-brand {
  color: var(--black);
  /* font-size: 18px; */
  width: 160px;
  text-transform: uppercase;
}
.navbar-brand:hover {
  color: var(--black);
  opacity: 0.8;
}
.nav-link {
  color: var(--black);
}
.nav-link:hover {
  color: var(--black);
  opacity: 0.7;
}

/* Hero Section */
.hero-section {
  min-height: 680px;
  height: 100vh;
  max-height: 600px;
  padding-top: 200px;
  background-position: 200px;
}
.hero-section h2 {
  font-weight: 600;
}
.hero-section ul {
  width: 50%;
  padding-left: 20px;
  margin: 20px 0 32px 0;
}

/* About me section */
.about-me-img-cont {
  width: 80%;
}
.about-me-section p {
  width: 80%;
  margin: 24px 0 40px 0;
}

/* Services Section */
.services-section {
  padding: 48px 0;
  background-color: var(--light-grey);
}
.services-cat-cont {
  list-style-type: none;
  padding: 0;
  margin: 32px 0;
  text-align: center;
}
.services-cat {
  display: inline-block;
  text-transform: uppercase;
  margin: 0 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition-duration: 0.3s;
  opacity: 0.6;
}
.services-cat.active {
  opacity: 1;
}
.services-cat:first-child {
  margin-left: 0;
}
.services-cat:last-child {
  margin-right: 0;
}
.services-cont {
  width: 90%;
  margin: 0 auto;
}
.service-card {
  background-color: var(--white);
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
}
.service-img-cont {
  height: 200px;
  filter: grayscale(80%);
}
.service-body-cont {
  padding: 12px;
}
.service-title {
  padding-bottom: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  line-height: 22px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--light-grey);
}
.pricing-cont small {
  font-size: 12px;
  line-height: 14px;
}
.price {
  font-size: 14px;
}

/* Feedback Section */
.feedback-section {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.feedbacks-cont {
  margin-top: 48px;
  padding-bottom: 32px;
  overflow: auto;
}
.feedbacks-cont::-webkit-scrollbar {
  height: 6px;
}
.feedbacks-cont::-webkit-scrollbar-thumb {
  height: 100%;
  border-radius: 5px;
  background-color: var(--light-grey);
}
.feedback-row {
  width: fit-content;
}
.feedback-row2 {
  margin: 48px 0 0 164px;
}
.feedback-card {
  width: fit-content;
  margin: 0 40px;
}
.feedback-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.feedback-content {
  width: 380px;
  padding: 18px;
  border-radius: 18px 18px 2px 18px;
  margin-left: 8px;
  background-color: var(--light-grey);
}
.feedback-by {
  margin-top: 6px;
  font-size: 14px;
  text-align: right;
  text-transform: capitalize;
}

/* Faq Section */
#accordion {
  margin: 48px auto 0 auto;
  width: 90%;
}
.card {
  border: none;
  margin-bottom: 12px;
}
.card-header {
  padding: 0;
  border: none;
  border-radius: 4px;
  background-color: transparent;
}
.card-link {
  width: 100%;
  padding: 12px 18px;
  text-align: left;
  font-weight: 600;
  border: none;
  background-color: var(--light-grey);
}
.card-body {
  padding: 12px 18px;
  background-color: var(--light-grey);
}

/* connect section */
.contacts-cont {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  min-width: 72px;
  margin: 0 24px;
  transition-duration: 0.3s;
  color: var(--black);
  background-color: var(--light-grey);
}
.contact-link:hover {
  color: var(--black);
  background-color: var(--grey);
}
.contact-link ion-icon {
  font-size: 28px;
}

/* PRICING PAGE */
.pricing-page .header {
  z-index: 6;
}
.pricing-page .header svg {
  fill: var(--white);
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.service-info-section {
  min-height: 500px;
  height: 100vh;
  max-height: 600px;
  background-position: center;
  padding-top: 100px;
}
.service-info-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 600px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px) grayscale(80%);
  z-index: 1;
}
.service-info-section .container {
  position: relative;
  color: var(--white);
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  z-index: 4;
}
.service-info-section h2 {
  font-weight: 600;
  margin-top: 100px;
}
.service-desc {
  width: 60%;
  margin: 20px 0 32px 0;
}

/* Packages Section */
.packages-section {
  padding-top: 96px;
}
.packages-section .row {
  width: 95%;
  margin: 64px auto 0 auto;
  /* background-color: aqua; */
}
.package-card {
  background-color: var(--light-grey);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  transition-duration: 0.3s;
}
.package-head {
  /* text-align: center; */
  padding: 24px 18px 18px 18px;
  background-color: var(--grey);
}
.package-body {
  padding: 18px 18px 12px 18px;
}
.package-foot {
  padding: 0px 18px 18px 18px;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.2);
}
.package-features {
  list-style-type: none;
  padding: 0;
}
.package-features li {
  margin: 4px 0;
}
.package-name {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.package-price {
  font-size: 20px;
}

/* Media Queries */

@media screen and (max-width: 1200px) {
  .packages-section .row {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .cta-btn {
    padding: 8px 18px;
  }
  .cta-btn-small {
    padding: 3px 12px;
  }

  .body-text {
    line-height: 25px;
  }

  /* Header */
  .header {
    padding-top: 24px;
  }
  .navbar-brand {
    width: 150px;
  }

  /* Hero Section */
  .hero-section {
    background-position: -100px;
  }
  .hero-section .container div {
    padding: 16px 16px 18px 12px;
    background-image: linear-gradient(
      to bottom right,
      rgba(253, 253, 253, 0.2),
      rgba(253, 253, 253, 0.7),
      rgba(100, 100, 100, 1)
    );
  }
  .hero-section h2 {
    font-size: 30px;
  }
  .hero-section ul {
    width: 100%;
  }

  /* About me section */
  .about-me-img-cont {
    width: 90%;
  }
  .about-me-section p {
    width: 100%;
    margin: 22px 0 32px 0;
  }

  /* Services Section */
  .services-cat-cont {
    margin: 30px 0;
  }
  .services-cat {
    margin: 0 10px;
  }
  .services-cont {
    width: 100%;
  }
  .service-img-cont {
    height: 160px;
  }
  .service-body-cont {
    padding: 10px;
  }

  /* Faq Section */
  #accordion {
    width: 100%;
  }

  /* PRICING PAGE */
  .service-desc {
    width: 80%;
  }

  .packages-section .row {
    width: 80%;
  }
  .packages-section div.col-lg-4 {
    padding: 0;
    margin-bottom: 28px;
  }
  .packages-section div.col-lg-4:last-child {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  div[class*="section"] {
    margin-bottom: 80px;
  }
  .sec-heading {
    font-size: 22px;
  }
  .sub-heading {
    font-size: 14px;
  }

  /* Header */
  .header {
    padding-top: 20px;
  }
  .navbar-brand {
    width: 140px;
  }

  /* Hero Section */
  .hero-section {
    background-position: -280px;
  }
  .hero-section h2 {
    font-size: 30px;
  }
  .hero-section ul {
    width: 100%;
    margin: 18px 0 26px 0;
  }

  /* About me section */
  .about-me-img-cont {
    position: absolute;
    right: 0;
    width: 52%;
    opacity: 0.4;
  }
  .about-me-section p {
    margin: 22px 0 32px 0;
  }

  /* Services Section */
  .services-section {
    padding: 48px 0 40px 0;
  }
  .services-cat-cont {
    margin: 28px 0;
  }
  .services-cat {
    margin: 0 8px;
  }
  .services-cont {
    width: 100%;
  }
  .service-card {
    display: flex;
    background-color: var(--white);
    margin-bottom: 24px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
  }
  .service-img-cont {
    width: 40%;
    height: 160px;
  }
  .service-body-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 60%;
    padding: 12px;
  }
  .service-title {
    white-space: normal;
  }

  /* Feedback Section */
  .feedback-card {
    margin: 0 32px;
  }

  /* Faq Section */
  #accordion {
    width: 100%;
  }

  .footer .container {
    align-items: center;
  }

  /* PRICING PAGE */
  .service-desc {
    width: 100%;
    margin: 20px 0 32px 0;
  }


  .packages-section .row {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  div[class*="section"] {
    margin-bottom: 72px;
  }
  .sec-heading {
    font-size: 22px;
  }
  .sub-heading {
    font-size: 14px;
  }

  /* Header */
  .header {
    padding-top: 18px;
  }
  .navbar-brand {
    width: 130px;
  }
  #homepage .navbar-brand {
    padding: 4px 8px 4px 4px;
    border-radius: 8px;
    background-color: var(--white);
  }

  /* Hero Section */
  .hero-section {
    max-height: 800px;
    background-position: -480px;
  }
  .hero-section h2 {
    font-size: 24px;
  }
  .hero-section ul {
    width: 100%;
    margin: 18px 0 26px 0;
  }

  /* About me section */
  .about-me-img-cont {
    position: absolute;
    top: 18px;
    right: 0;
    width: 280px;
    opacity: 0.35;
  }
  .about-me-section p {
    margin: 22px 0 32px 0;
  }

  /* Services Section */
  .services-section {
    padding: 48px 0 40px 0;
  }
  .services-cat-cont {
    margin: 28px 0;
  }
  .services-cat {
    margin: 0 8px;
  }
  .services-cont {
    width: 100%;
  }
  .service-card {
    display: flex;
    background-color: var(--white);
    margin-bottom: 24px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
  }
  .service-img-cont {
    width: 40%;
    height: 160px;
  }
  .service-body-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 60%;
    padding: 12px;
  }
  .service-title {
    white-space: normal;
  }

  /* Feedback Section */
  .feedback-card {
    margin: 0 32px;
  }

  /* Faq Section */
  #accordion {
    width: 100%;
  }

  /* connect section */
  .contact-link {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    min-width: 56px;
    margin: 0 12px;
  }
  .contact-link ion-icon {
    font-size: 24px;
  }

  .footer .container {
    align-items: center;
    text-align: center;
  }
  .footer span {
    margin: 4px 0;
  }

  .service-info-section {
    min-height: 700px;
    max-height: 700px;
  }
  .service-info-section::after {
    min-height: 700px;
    max-height: 700px;
  }
}
