/*!
 * Bootstrap  v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
/* ==========================================
            1. Theme css
========================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.75rem;
}

:root {
  --primary: #141414;
  --secondary: #f5f5f5;
  --btn-primary-bg: #141414;
  --btn-color: #f5f5f5;
  --btn-border-color: #141414;
  --btn-primary-hover: #2c2c2c;
  --btn-primary-border-hover: #2c2c2c;
  --link: #141414;
  --link-hover: #2c2c2c;
  --btn-primary-border: #141414;
  --btn-border: 2px solid #141414;
  --btn-border-color: #141414;
  --btn-b-color: #141414;
  --link-color: #141414;
  --icon-color: #141414;
  --border: 1px solid #141414;
  --text-color: #2c2c2c;
  --text-muted: #949494;
  --text-white: #ffffff;
  --body-font-family: "Lato", serif;
  --text-btn-font-family: "Dosis", serif;
  --section-title-color: #141414;
  --section-title: "Dosis", serif;
  --title-color: #141414;
  --title: "Dosis", serif;
  --line-height: 1.75rem;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--body-font-family);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: var(--line-height);
  background: var(--backgroud);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  font-family: var(--section-title);
  color: var(--section-title-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

h1,
.h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 1.75rem;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 1.2rem;
  line-height: 1.4;
}

h5,
.h5 {
  font-size: 1.1rem;
  line-height: 1.4;
}

h6,
.h6 {
  font-size: 1rem;
  line-height: 1.5;
}

p {
  font-family: var(--body-font-family);
  color: var(--text-color);
  margin-bottom: 1rem;
  text-align: justify;
  font-size: 1rem;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i {
  font-size: 13px;
}

i,
span,
a {
  display: inline-block;
  text-decoration: none;
}

.py-100 {
  padding: 100px 0 100px 0;
}

.py-50 {
  padding: 50px 0 50px 0;
}

.my-100 {
  margin: 100px 0 100px 0;
}

.my-50 {
  margin: 50px 0 50px 0;
}

/* ====================================
          All Title Style
==================================== */
.section-title {
  color: var(--section-title-color);
  font-size: 2.1rem;
  font-family: var(--section-title);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title .center-border {
  width: 100%;
  height: 4px;
  background: var(--section-title-color);
  border-radius: 50%;
}

.title {
  color: var(--title-color);
  font-size: 1.5rem;
  font-family: var(--title);
  margin-bottom: 1rem;
}

/* ============================
      All Button Style
============================= */
.main-btn {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--btn-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-family: var(--text-btn-font-family);
  border: var(--btn-py-border);
  background: var(--btn-primary-bg);
}
.main-btn:hover {
  color: var(--btn-color);
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-border-hover);
}
.main-btn:focus {
  outline: none;
  color: var(--btn-color);
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-border-hover);
}
.main-btn:active {
  color: var(--btn-color) !important;
  background: var(--btn-primary-hover) !important;
  border-color: var(--btn-primary-border-hover) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.border-btn {
  display: inline;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: var(--btn-border-color);
  border: var(--btn-border);
  background: transparent;
}
.border-btn:hover {
  color: var(--btn-b-color);
  background: var(--btn-border-color);
}
.border-btn:focus {
  outline: none;
  color: var(--btn-b-color);
  background: var(--btn-border-color);
}
.border-btn:active {
  color: var(--btn-b-color) !important;
  background: var(--btn-border-color) !important;
  border: var(--btn-border) !important;
}

.links {
  display: inline-block;
  font-weight: 700;
  color: var(--link-color);
  font-family: var(--text-btn-font-family);
  margin-top: 0.5rem;
  cursor: pointer;
}
.links i {
  color: var(--link-color);
  margin-left: 3px;
  -webkit-transition: margin-left 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out, color 0.3s ease-in-out;
}
.links:hover {
  color: var(--link-color);
}
.links:hover i {
  color: var(--link-color);
  margin-left: 11px; /* Moves right smoothly */
}

.overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.featured-img {
  height: 288px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.featured-img img {
  width: 100%;
  height: 100%;
}

.client-logo {
  height: 120px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.client-logo img {
  height: 100%;
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.client-logo img:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================
            2. About css
========================================== */
.about-img {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 0 50px 0;
}

.about-content {
  height: 600px;
}

/* ==========================================
            3. services css
========================================== */
.service {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.service .service-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 416px;
}
.service .service-card .service-img {
  display: block;
  width: 100px;
  height: 100px;
  top: -50px;
  left: calc(50% - 50px);
  background: var(--secondary);
}
.service .service-card .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.testimonial-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.testimonial-card .testimonial-details {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.testimonial-card .testimonial-details .quot-left i {
  font-size: 2.5rem;
  color: var(--primary);
}
.testimonial-card .testimonial-details .quot-right {
  float: right;
}
.testimonial-card .testimonial-details .quot-right i {
  font-size: 2.5rem;
  color: var(--primary);
}
.testimonial-card .testimonial-details p {
  color: var(--text-muted);
  font-style: italic;
  width: 80%;
  margin: 0 auto;
}
.testimonial-card .testimonial-profile {
  height: 104px;
}
.testimonial-card .testimonial-profile .user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-card .testimonial-profile .user-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-links li a {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.social-links li a i {
  font-size: 2rem;
}
.social-links li a:hover i {
  color: var(--link-color);
}

.skill-card {
  width: 100%;
  height: 124px;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.skill-card:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.skill-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.achievement-img {
  height: 550px;
  overflow: hidden;
  border-radius: 50px 0 50px 0;
}
.achievement-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.achivement-description {
  height: 550px;
}

.connect {
  -webkit-transition: -webkit-box-shadow 0.4s ease-in-out;
  transition: -webkit-box-shadow 0.4s ease-in-out;
  transition: box-shadow 0.4s ease-in-out;
  transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out;
}
.connect:hover {
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.process-card {
  -webkit-transition: -webkit-box-shadow 0.4s ease-in-out;
  transition: -webkit-box-shadow 0.4s ease-in-out;
  transition: box-shadow 0.4s ease-in-out;
  transition: box-shadow 0.4s ease-in-out, -webkit-box-shadow 0.4s ease-in-out;
  cursor: pointer;
}
.process-card:hover {
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.project-overview-img {
  height: 554px;
  overflow: hidden;
}
.project-overview-img img {
  width: 100%;
  height: 100%;
}
.project-overview-img figcaption {
  bottom: 2rem;
  left: 2rem;
}
.project-overview-img figcaption h4 {
  color: var(--text-white);
  font-size: 1.5rem;
  font-family: var(--section-title);
}
.project-overview-img figcaption p {
  color: var(--text-white);
  font-size: 1rem;
  font-family: var(--body-font-family);
}

.hero-img {
  height: 660px;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-img figcaption {
  width: 100%;
  bottom: 3rem;
}
.hero-img figcaption h1 {
  color: var(--text-white);
  font-size: 2.5rem;
  font-family: var(--section-title);
}
.hero-img figcaption p {
  color: var(--text-white);
  font-size: 1.2rem;
  font-family: var(--body-font-family);
}

.case-study-card {
  overflow: hidden;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}
.case-study-card:hover {
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.case-study-card:hover img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.case-study-card .case-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.case-study-card .case-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.case-study-card .case-image .image-gradient {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.25)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.25));
}
.case-study-card .case-image .case-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.28);
}
.case-study-card .case-image .case-logo img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer {
  background: var(--secondary);
}/*# sourceMappingURL=main.css.map */