@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
:root {
  --primary-t-color: #030712;
  --primary-t-color-2: #B6BCC6;
  --secondary-t-color: #f9f9f9;
  --secondary-t-color-2: #a6abb4;
  --secondary-bg-color: #111013;
  --secondary-p-color: #909DAC;
}

body {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 26px;
  font-family: "Urbanist", sans-serif;
  overflow-x: hidden;
  background: #F9F4F0;
}

body.odd {
  background-color: #111013;
  color: #909DAC;
}

img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: var(--secondary-bg-color);
  font-family: "Urbanist", sans-serif;
  line-height: normal;
}

p {
  margin: 0;
  padding: 0;
  color: #909DAC;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-family: "Urbanist", sans-serif;
  line-height: 28px;
}

a {
  text-decoration: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
.cursor .cursor-inner,
.cursor .cursor-outer {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.cursor .cursor-inner {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.6);
}
.cursor .cursor-outer {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  transition: all 0.15s ease;
}

/* start section title */
.section_title {
  margin-bottom: 50px;
}
.section_title h2 {
  font-size: 56px;
  font-weight: 700;
}
.section_title span {
  color: #686665;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  display: block;
  background: #fff;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
}

/* end section title */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
  z-index: 99999;
}

.preloader svg {
  position: absolute;
  top: 0;
  height: 110vh;
  width: 100vw;
  fill: #191A23;
}

.preloader .loader-container .loaded {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 8px;
  z-index: 99;
}

.preloader .loader-container .loaded span {
  animation: loader-animation 1s infinite alternate;
}

.preloader .loader-container .loaded span:nth-child(1) {
  animation-delay: 0s;
}

.preloader .loader-container .loaded span:nth-child(2) {
  animation-delay: 0.1s;
}

.preloader .loader-container .loaded span:nth-child(3) {
  animation-delay: 0.2s;
}

.preloader .loader-container .loaded span:nth-child(4) {
  animation-delay: 0.3s;
}

.preloader .loader-container .loaded span:nth-child(5) {
  animation-delay: 0.4s;
}

.preloader .loader-container .loaded span:nth-child(6) {
  animation-delay: 0.5s;
}

.preloader .loader-container .loaded span:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes loader-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.navbar {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  width: 100%;
  padding: 20px 0;
  transition: all 0.4s ease-in-out;
  border-bottom: 1px solid #dddddd;
}
.navbar.navbar-reduce {
  background-color: #fff;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 1s both 0.2s;
  z-index: 999;
}
.navbar.navbar-reduce .navbar-toggler span {
  background: #000;
  border: 1px solid #000;
}
.navbar.dark_bg_menu .navbar-nav .nav-link {
  color: #fff;
}
.navbar.dark_bg_menu .navbar-nav .nav-link:hover, .navbar.dark_bg_menu .navbar-nav .nav-link:focus {
  color: #fff;
  background-color: transparent;
}
.navbar.dark_bg_menu .navbar-nav .nav-item.active .nav-link,
.navbar.dark_bg_menu .navbar-nav .nav-item.active .nav-link:hover,
.navbar.dark_bg_menu .navbar-nav .nav-item.active .nav-link:focus {
  color: #fff;
  background: none;
}
.navbar.dark_bg_menu .navbar-toggler span {
  background: #fff;
  border: 1px solid #fff;
}
.navbar.dark_bg_menu.navbar-reduce {
  background-color: #000 !important;
  box-shadow: 0 1px 20px rgba(255, 255, 255, 0.1);
}
.navbar .navbar-nav .nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  padding: 15px 5px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  position: relative;
  margin-left: 20px;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link:focus {
  color: #000;
  background-color: transparent;
}
.navbar .navbar-nav.active .nav-link,
.navbar .navbar-nav.active .nav-link:hover,
.navbar .navbar-nav.active .nav-link:focus {
  color: #000;
  background: none;
}

.navbar-brand {
  padding: 0px;
}
.navbar-brand h3 {
  font-weight: 600;
  font-size: 30px;
  color: #222;
  font-family: "Urbanist", sans-serif;
}

.main_menu .nav-item.active a {
  color: #000;
  font-weight: 600;
}

.navbar-toggler {
  position: relative;
  border: none;
  background: transparent;
}
.navbar-toggler:focus, .navbar-toggler:active {
  outline: 0;
  box-shadow: none;
}
.navbar-toggler span {
  display: block;
  background: #000;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
}
.navbar-toggler span:nth-child(1), .navbar-toggler span:nth-child(3) {
  position: absolute;
  left: 0;
  transform: none;
}
.navbar-toggler span:nth-child(2) {
  position: relative;
  opacity: 1;
}
.navbar-toggler.collapsed span:nth-child(1),
.navbar-toggler.collapsed span:nth-child(3) {
  transform: none;
}
.navbar-toggler.collapsed span:nth-child(2) {
  opacity: 1;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.dark_bg_menu .navbar-toggler span {
  background: #fff;
}

@media (max-width: 1199px) {
  .popular-tools-list li {
    margin-bottom: 15px;
  }
  .keyword-list li {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .hero_right_image_area.text-end {
    margin-top: 50px;
    text-align: start !important;
  }
  .badge_image {
    display: none !important;
  }
  .section_title h2 {
    font-size: 45px !important;
  }
  .skill_section_title {
    width: 100% !important;
  }
  .services-image {
    margin-bottom: 30px !important;
  }
  .services_accordion_title {
    width: 100% !important;
  }
  .skill-card {
    margin-bottom: 30px !important;
  }
  #testimonial_slider {
    margin-bottom: 50px !important;
  }
  #testimonial_slider .owl-nav {
    position: inherit !important;
    top: 0 !important;
    margin-top: 20px !important;
  }
  .contact_left_section h2 {
    font-size: 45px !important;
  }
  .contact_socials_area .contact_socials_icon a {
    padding: 8px 12px !important;
  }
  .contact_left_section p {
    font-size: 22px !important;
  }
  .banner_title h2 {
    font-size: 70px !important;
  }
}
@media (max-width: 768px) {
  .projects_header {
    display: block !important;
    margin-bottom: 50px !important;
  }
  .services_accordion_title {
    width: 100% !important;
  }
  .contact_left_section {
    margin-bottom: 50px !important;
  }
  .footer_left_content p {
    margin-bottom: 30px;
  }
  .footer_right_icon {
    text-align: start !important;
  }
  .footer_right_icon li {
    padding: 0 !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0 !important;
  }
  .banner_title h2 {
    font-size: 55px !important;
  }
  .section_title h2 {
    font-size: 34px !important;
  }
  .footer_left_content p {
    text-align: center;
  }
  #footer .header_icons {
    justify-content: center !important;
  }
}
.hero_section {
  margin-top: 150px;
  position: relative;
  margin-bottom: 50px;
}
.hero_section .circular-text-container {
  position: relative;
  width: 150px;
  width: 150px;
  animation: spin 10s linear infinite;
  margin: auto;
}
.hero_section .circular-text-container .circular-text {
  width: 100%;
  height: 100%;
}
.hero_section .circular-text-container .circular-text text {
  font-size: 20px;
  fill: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero_right_image_area {
  position: relative;
}
.hero_right_image_area .badge_image {
  position: absolute;
  top: 20px;
  left: -20px;
  background: rgba(84, 84, 84, 0.2);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.hero_left_area {
  height: 100%;
}

.banner_title {
  padding-top: 50px;
}
.banner_title h2 {
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  text-transform: capitalize;
  line-height: normal;
  color: #000;
  margin-bottom: 30px;
}
.banner_title .sub_title {
  display: inline-block;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.banner_title .sub_title img {
  margin-right: 10px;
}
.banner_title p {
  color: #686665;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px; /* 120% */
  margin-bottom: 50px;
}

.main_btn svg {
  margin-left: 8px;
}

.hero_video_frame {
  width: 100%;
  height: 400px;
  border: none;
}

.main_btn {
  width: 245px;
  height: 66px;
  display: inline-block;
  border-radius: 40px;
  background: var(--secondary-bg-color);
  line-height: 66px;
  text-align: center;
  border: none;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}

.main_btn:hover,
.main_btn:focus {
  color: #fff;
  background-color: #222; /* New background color on hover */
  transform: translateY(-2px);
}

.main_btn:before {
  content: "";
  background: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.03) 58%, rgba(245, 221, 221, 0.16) 67%, transparent 68%);
  background-size: 200% 100%;
  background-position: 165% 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.7s;
}

.main_btn:hover:before {
  background-position: -20% 0;
}

.testimonial_btn {
  width: 245px;
}

.cta_btn {
  width: 300px;
  color: rgba(0, 0, 0, 0.8705882353);
  background: rgba(255, 255, 255, 0.8);
}

/* start marquee section */
.marquee_section .marquee {
  margin: 0 auto;
  padding: 50px 0;
  border-left: none;
  border-right: none;
  overflow: hidden;
}
.marquee_section .marquee .marquee__single__wrapper li {
  float: left;
}
.marquee_section .marquee .marquee__single {
  padding: 0 50px;
}

/* end marquee section */
.section_padding {
  padding: 80px 0;
}

.pt_0 {
  padding-top: 0px !important;
}

.pb_0 {
  padding-bottom: 0px !important;
}

.mb_0 {
  margin-bottom: 0px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mt_80 {
  margin-top: 80px !important;
}

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

.project_card {
  padding: 30px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.project_card:hover .project_card_btn {
  opacity: 1;
}
.project_card:hover .project_image_content {
  opacity: 1;
  bottom: 0;
}

.project_image_area {
  position: relative;
  overflow: hidden;
}
.project_image_area img {
  width: 100%;
}
.project_image_area .project_image_content {
  position: absolute;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  bottom: -50%;
  padding: 20px 15px;
  width: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.project_image_area .project_image_content h3 {
  color: #f0f0f0;
  font-family: Lato;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: left;
}
.project_image_area .project_image_content .project_tags {
  display: flex;
  gap: 8px;
}
.project_image_area .project_image_content .project_tags .tag {
  border-radius: 32px;
  border: 1px solid #f0f0f0;
  color: #f0f0f0;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 135px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.project_image_area .project_card_btn {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.custom-modal {
  display: none; /* 👈 This keeps it hidden initially */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.custom-modal .modal-content {
  background: white;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}
.custom-modal .modal-content p {
  font-size: 18px;
  margin-top: 15px;
}
.custom-modal .modal-content img {
  max-width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
}
.custom-modal .modal-content .close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 24px;
  cursor: pointer;
  background: #222;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 30px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.skill-card {
  padding: 20px;
  text-align: center;
  border-radius: 21.768px;
  background: #fff;
  box-shadow: 0px 85.258px 181.4px 0px rgba(21, 21, 21, 0.05);
}

.skill-card img {
  margin-bottom: 10px;
}

.skill-name {
  color: #686665;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.skill_section_title {
  width: 40%;
}

.services_accordion_title {
  width: 50%;
}

/* Accordion styles */
/* start faq section */
.accordion-header {
  background: #FFF;
}

.accordion-body {
  background: #FFF;
  color: var(--p);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  padding: 15px 20px;
}

.accordion-item {
  border-radius: 12px;
  background: #fff;
  margin-bottom: 10px;
  border: none;
}

.accordion-button {
  font-weight: bold;
  color: var(--primary-t-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.accordion-button:focus {
  z-index: 3;
  outline: none;
  box-shadow: none;
  background: #fff;
}

.accordion-button::after {
  display: none !important;
}

.toggle-icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
}

.service_list {
  margin-left: 15px;
}
.service_list li {
  color: #909DAC;
  margin-bottom: 10px;
  list-style: inherit;
}

.accordion-header span {
  color: #686665;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.accordion-body p {
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  margin-bottom: 15px;
}

.accordion {
  border: none;
}

.faq_btn_area {
  text-align: center;
  margin-top: 50px;
}

.faq_btn_area {
  text-align: center;
  margin-top: 50px;
  height: 60px;
  line-height: 60px;
}

.btn_collapes:hover,
.btn_collapes:focus,
.accordion-button[aria-expanded=true] {
  background: #333 !important; /* Add !important to override Bootstrap */
}

.accordion-header:hover span,
.accordion-header:focus span,
.accordion-button[aria-expanded=true] span {
  color: #fff !important;
  transition: color 0.3s ease-in-out;
}

.accordion-button:hover {
  background: #333 !important;
}

/* end faq section */
#review {
  position: relative;
}

.owl-nav {
  position: absolute;
  top: -90px;
  right: 20px;
}

.owl-dots {
  display: none;
}

.owl-nav button i {
  width: 32px;
  display: block;
  height: 36px;
  border-radius: 4px;
  line-height: 36px;
  background: transparent;
  border: 1px solid #686665;
  color: #686665;
  transition: all 0.4s ease-in-out;
}

.owl-nav button i:hover {
  background: var(--primary-t-color);
  color: #fff;
  border-color: var(--primary-t-color);
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: inherit;
  color: inherit;
  text-decoration: none;
}

.review_card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 28px 22px;
  background-color: #fff;
}
.review_card .rating_stars {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review_card .rating_stars .stars_icon {
  color: orange;
}
.review_card .rating_stars .stars_icon span {
  background: #686665;
  padding: 3px 8px;
  color: #fff;
  margin-left: 10px;
  border-radius: 4px;
}
.review_card h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.review_card .reviewer {
  margin-top: 25px;
}
.review_card .reviewer span {
  font-weight: 700;
}

section#cta_section {
  background-image: url(../../img/cta/1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
section#cta_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.cta_area {
  text-align: center;
}
.cta_area h2 {
  color: #fff;
  margin-bottom: 50px;
  font-size: 56px;
}

.contact_left_section {
  text-align: left;
}
.contact_left_section p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}
.contact_left_section .ct_title {
  margin-bottom: 20px;
}

.contact_socials_area h4 {
  color: var(--primary-t-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.contact_socials_area .contact_socials_icon {
  display: flex;
  gap: 15px;
  width: 100%;
}
.contact_socials_area .contact_socials_icon a {
  padding: 10px 20px;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact_form_area {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  padding: 30px;
}

.contact_form_area input,
.contact_form_area textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  background: transparent;
  margin-bottom: 20px;
  padding: 16px 10px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.contact_form_area textarea {
  resize: none;
}

.contact_form_area input:focus,
.contact_form_area textarea:focus {
  outline: none;
  border-bottom: 1px solid #333;
  color: #000;
}

.phone_email {
  display: flex;
  gap: 20px;
}

.phone_email input {
  flex: 1;
}

.submit-btn {
  background-color: #2e2e2e;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 30px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
}

.submit-btn:hover {
  background-color: #1f1f1f;
}

#footer {
  padding: 40px 0 0;
}
#footer .footer_left_content {
  border-top: 1px solid #dddddd;
  padding: 50px 0;
}
#footer .footer_left_content p {
  font-size: 16px;
  color: var(--thm-color);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
#footer .footer_center_nav {
  text-align: center;
}
#footer .footer_center_nav li {
  display: inline;
  padding: 0 16px;
}
#footer .footer_center_nav li a {
  color: #30323B;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
#footer .header_icons {
  display: flex;
  justify-content: end;
  gap: 30px;
}
#footer .header_icons a {
  color: var(--thm-color);
  font-size: 20px;
  transition: color 0.3s ease;
}
#footer .header_icons a:hover {
  color: #111013;
}/*# sourceMappingURL=style.css.map */