@charset "UTF-8";
/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@700&display=swap');
/*!
* Start Bootstrap - Creative v7.0.7 (https://startbootstrap.com/theme/creative)
* Copyright 2013-2023 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-creative/blob/master/LICENSE)
*/
/*!
 * 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)
 */

 /* Custom Font Import */
@font-face {
  src: url("https://www.axis-praxis.org/fonts/webfonts/MetaVariableDemo-Set.woff2") format("woff2");
  font-family: 'Sen', sans-serif;
  font-style: normal;
  font-weight: normal;
}

/* Parent container styles for centering */
.iconHero-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
}


/* Hero Text Style with Hover Effect */
.hero-text {
  font-family: 'Sen', sans-serif;
  font-size: 2rem; /* Adjust font size as needed */
  color: transparent;
  text-align: center;
  -webkit-text-stroke: 1px #FAF3DD; /* Off-white for better contrast */
  font-variation-settings: "wght" 900, "ital" 1;
  text-shadow: 3px 3px 0px #FFEBCC,
               6px 6px 0px #FF5F7E,
               9px 9px 0px #F0A6CA,
               12px 12px 0px #F48FB1,
               15px 15px 0px #B36BC5;
  transition: all 0.5s ease;
  cursor: pointer;
}

.hero-text:hover {
  font-variation-settings: "wght" 100, "ital" 0;
  color: #FAF3DD; /* Light beige for good readability */
  text-shadow: none;
  -webkit-text-stroke: 0px; /* Removes the stroke on hover */
}

 /* Button with Icon Only */
 .btn-icon {
  width: 30px;
  height: 50px;
  display: grid;
  overflow: hidden;
}

.btn-icon:before,
.btn-icon:after {
  content: "";
  grid-area: 1/1;
  background: currentColor;
  clip-path: polygon(10px 0, 10px calc(100% - 15px), 0 calc(100% - 15px), 50% 100%, 100% calc(100% - 15px), calc(100% - 10px) calc(100% - 15px), calc(100% - 10px) 0);
  animation: a5 3s infinite;
  transform: translateY(calc(0% + var(--s, 0%)));
}

.btn-icon:after {
  --s: -100%;
  content: var(--s, 0); /* Use `0` as a fallback if `--s` isn't supported */
}

@keyframes a5 {
  80%, 100% {
      transform: translateY(calc(100% + var(--s, 0%)));
  }
}

  /* Clients Sections */
 .section-header-clients h3 {
  font-size: 36px;
  color: #283d50;
  font-weight: 500;
  position: relative;
}

.section-header-clients p {
  font-size: 15px;
  color: #556877;
  margin: 0 auto 60px;
  width: 50%;
}

#clients {
  padding: 60px 0;
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  background: #fff;
  height: 160px;
  overflow: hidden;
  transition: transform 0.3s;
}

#clients .client-logo img {
  transition: transform 0.4s ease-in-out;
  max-width: 100%;
  height: auto;
}

#clients .client-logo:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #clients .client-logo {
      padding: 32px;
      height: 120px;
  }
}

 /* Spacing Between Sections */
section {
  padding: 60px 0;
}

 /* About Section */
.about-section {
  background-color: #f9f9f9; /* Optional background color */
  padding: 60px 0;
}

.about-section h1 {
  font-size: 2rem;
  font-weight: bold;
}

.about-section p {
  font-size: 1rem;
  color: #333;
}

.about-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

 /* Preloader */
.preloader-wrapper {
  background: linear-gradient(to right, #7474bf, #348ac7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

/* Preloader Inner Styles */
.preloader1,
.preloader1 .loader {
  display: flex;
  align-content: center;
}

.preloader1 {
  height: 100%;
  width: 100%;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 700px;
}

.preloader1 .loader {
  border-radius: 50%;
  border: 4px solid #fff;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.loader-inner-1 {
  animation: change_first_circle 2s ease-in-out infinite;
}

.loader-inner-2 {
  animation: change_second_circle 2s ease-in-out infinite;
}

.loader-inner-3 {
  width: 100px;
  height: 100px;
  animation: change_last_circle 3s linear infinite;
}

@keyframes change_first_circle {
  50% {
      transform: rotateX(360deg) scale(0.8);
  }
}

@keyframes change_second_circle {
  50% {
      transform: rotateY(360deg) scale(0.8);
  }
}

@keyframes change_last_circle {
  50% {
      transform: rotateX(360deg) scale(0.8);
  }
}

:root {
  --bs-body-font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}

.container {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
/* For responsive images with fluid width */
img.img-fluid, 
.character, 
.cover-image {
  max-width: 100%; /* Ensures image does not exceed container width */
  height: 100%;    /* Maintains aspect ratio */
}

/* For rounded images */
.img-fluid.rounded {
  max-width: 100%; /* Ensures image does not exceed container width */
  height: auto;    /* Maintains aspect ratio */
  border-radius: 50%; /* Makes the image circular */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for better visibility */
}

/* General image styling */
img {
  max-width: 100%; /* Prevents images from exceeding their container */
  height: auto;    /* Ensures images scale proportionally */
  display: block;  /* Removes extra space under images */
  margin: 0 auto;  /* Centers the image horizontally, if needed */
}
