@font-face {
  font-family: "Gilroy";
  src: url(../gilroy/Gilroy-Light.otf);
}

@font-face {
  font-family: "Gilroy";
  src: url(../gilroy/Gilroy-ExtraBold.otf);
  font-weight: 900;
}

:root {
  --bg-body: #f1f4ff;
  --bg-black: #000;
  --bg-primary: #328de6;
  --bg-secondary: #2aaba6;
  --bg-scrolled-header: linear-gradient(61deg, rgba(255, 255, 255, 1) 29%, rgba(50, 141, 230, 1) 29%, rgba(50, 141, 230, 1) 40%, rgba(42, 171, 166, 0.8603816526610644) 80%);
  --bg-header: linear-gradient(61deg, rgba(255, 255, 255, 1) 29%, rgba(50, 141, 230, 1) 29%, rgba(50, 141, 230, 1) 40%, rgba(42, 171, 166, 1) 80%);
  --bg-scrolled: linear-gradient(36deg, #328de6 -1%, #2aaba6 88%);
  --input-f-c: #2e2e2e;
  --text-white: #fff;
  --text-grey: #848484;

}

body {
  font-family: "Gilroy" !important;
}

body p {
  font-size: 17px;
  font-family: "Gilroy" !important;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-grey);
}

body h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilroy" !important;
  font-weight: 600;
  /* You can set the font weight here */
}

body h1 {
  font-family: "Gilroy";
  font-weight: 600;
  /* You can set the font weight here */
}

.navbar-brand img {
  height: 45px;
}

/* Add this CSS in your custom styles.css file */

.header-section .custom-toggler .icon-bar {
  height: 3px;
  width: 25px;
  display: block;
  transition: all 0.5s;
  outline: none;
  border-radius: 2px;
  margin: 3px 0;
  color: var(--bg-black);
  border: 1px solid var(--bg-black);
  /* Add border property */
}

.header-section .custom-toggler {
  outline: none;
  border: none;
}

.header-section .custom-toggler.collapsed .icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.header-section .custom-toggler.collapsed .icon-bar:nth-child(2) {
  opacity: 0;
}

.header-section .custom-toggler.collapsed .icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.header-section .navbar-nav .nav-link {
  margin-right: 20px;
  color: var(--text-white);
  font-weight: 500;
  font-size: 18px;

  /* Add margin between the navigation items */
}

.header-section .navbar {
  padding: 0 !important;
  background: var(--bg-header) !important;
  transition: background-color 0.3s;
  position: fixed;
  height: 100px;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-section .scrolled {
  background: var(--bg-scrolled-header) !important;
}

.header-section .scrolled .nav-background {
  /*background-color: var(--bg-scrolled);*/
}

.nav-background {
  /*background: var(--bg-scrolled) !important;*/
}

.header-section .scrolled .navbar-nav .nav-link {
  color: var(--text-white);
}

.header-section .nav-link {
  color: var(--text-white);
}


.custom-font-vw {
  padding-top: 4px;
  font-size: 68px;
}

.cards-container {
  position: relative;
  bottom: 100px;
}

.hero .navbar {
  margin: 0;
  padding: 0;
}

/* .web-logo {
  background-color: #fff;
  height: 100px;
} */
.card-img-left {
  width: calc(100% - 66%);
}


.text-white {
  color: var(--text-white);
}

/* consultent form CSS  Start*/

.consultent-form-single-section {
  background: var(--bg-body);
}

.consultent-form-section .center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultent-form-section .container-form {
  padding: 20px;
  border-radius: 10px;
}

.consultent-form-section .container {
  margin-top: 30px;
  background: var(--text-white);
}

.consultent-form-section .form-control {
  border: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
}

.consultent-form-section .form-control::placeholder {
  padding-bottom: 15px;
}

.consultent-form-section .form-group.col-md {
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.consultent-form-section .form-group.col-md label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.consultent-form-section .form-field {
  border: none;
  border-bottom: 1px solid gray;
  padding: 7px;
  width: 100%;
}

/* Optional: Add some styling for the input when it's focused */
.consultent-form-section .form-field:focus {
  outline: none;
  border-color: #007bff;
}

.consultent-form-section .col-md-6 {
  padding: 0;
}

/* ... other styles ... */

/* Custom CSS for the label */
.consultent-form-section .form-group.col-md label[fname="Services you're looking for?"] {
  color: gray;
}

.consultent-form-section .btn-apply {
  background-color: var(--bg-secondary);
  border: none;
  color: var(--text-white);
}

.consultent-form-section #submit {
  width: 100%;
  height: 50px;
  background: var(--bg-secondary);
  margin-bottom: 30px;
  color: #fff;
  border: none;
  font-weight: 500;
  transition: 2s;
}

.consultent-form-section #submit:hover {
  background: var(--bg-primary) !important;
}

/* consultent form CSS  End*/

/* testemonail-section css Start  */

.testemonail-section .fa-solid {
  color: var(--bg-secondary);

}

.testemonail-section .card-img-left {
  width: 100px;
  padding-top: 15px;
}

.testemonail-section .client_name {
  color: var(--bg-primary);
}

.testemonail-section .designation_name {
  font-size: 16px;
}

.testemonail-section .card-body {
  padding: 10px;
}

.testemonail-section .gradient {
  width: 100%;
  background-image: var(--bg-scrolled-oposite);
  /* height: 50vh; */
}

.testemonail-section .gradient-header {
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(to left,
      rgba(97, 91, 91, 0.5),
      rgb(0, 0, 0, 0.7));
}

.blog-post-section .custom-card-title {
  position: relative;
  top: -40px;
  background-color: var(--bg-secondary);
  padding: 5px;
  text-align: center;
  color: var(--text-white);
}

.call-section .fixed-bg {
  background-image: url("../images/cta-img.jpg") !important;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 65vh;
  color: var(--text-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 13px;
  border: none;
  outline: none;
  width: 50px;
  color: var(--text-white);
  background-color: var(--bg-secondary);
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
}

.form-select-field {
  margin-top: 18px;
}

.card-section .border-bottom-css {
  height: 80px;
  width: 80px;
  border-bottom: 8px solid var(--bg-secondary);
}

.card-section .bounce {
  cursor: pointer;
  transition: transform 0.6s;
}

.card-section .bounce:hover {
  animation: bounce 0.6s;
  transform-origin: center bottom;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

@media screen and (min-width: 200px) and (max-width: 770px) {
  .form-select-field {
    margin-top: 50px;
  }
}

/* 
  test */
html {
  font-family: sans-serif;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.blog-page-sections .c {
  position: relative;
  top: -40px;
}

.blog-page-sections .square-button {
  width: 45px;
  height: 45px;
  background-color: var(--bg-secondary);
  color: var(--text-white);
  border: none;
  font-size: 17px;
  cursor: pointer;
}

.blog-page-sections .square-button:hover {
  background-color: darkorange;
}

.blog-page-sections .cover-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* Set the image to cover the entire container */
}

.blog-page-sections .card {
  min-height: 500px;
}

.blog-page-sections .image-container {
  height: 240px;
}

.blog-page-sections .relative-image {
  background: var(--bg-secondary);
  width: 80px;
  height: 40px;
}

.blog-page-sections .relative-date {
  background-color: var(--bg-scrolled);
  /* Background color for the "relative-date" */
  width: auto;
  height: 40px;
  z-index: 1;
  color: var(--text-white);
  border-radius: 5px;
}

.about-section {
  background: var(--bg-body);
}

.about-section .cover-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-section .image-container {
  height: 579px;
}

.header-section .gradient-opecity {
  width: 100%;
  height: 850px;
  background: linear-gradient(48deg, rgb(0 0 0 / 28%) -1%, rgb(0 0 0 / 22%) 28%);
}

.header-section .hero {
  height: 850px;
  width: 100%;
  background-image: url("../images/hero-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.consultent-form-section #name-error,
#company-error,
#phone_number-error,
#email-error,
#message-error {
  color: var(--primary-red);
}

.header-section .navbar {
  background: white;
}

.header-section .active-link {
  color: var(--primary-red);
  border-bottom: 4px solid var(--text-white);
  /* width: fit-content; */
  padding: 6px;
}

@media screen and (min-width: 200px) and (max-width: 990px) {
  .header-section .active {
    width: 20%;
  }
}

/* service-pages css */

.services-page-section .btn-apply-now {
  background: #003a71;
  color: var(--text-white);
  border: none;
  transition: 0.5s;
}

.services-page-section .btn-apply-now:hover {
  background: #7fecf1;
}

.heading-title-hover .hover-title {
  background: var(--bg-scrolled), var(--bg-scrolled);
  background-size: 1.5em 0.1em;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  transition: 0.4s linear, background-size 0.5s 0.5s linear;
}

.heading-title-hover .hover-title:hover {
  background-size: 9% 0.1em;
  background-position: 10% 100%, 90% 100%;
}

.header-section .navbar-nav li a {
  font-weight: 200;
}

.service-section .container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
  .service-section .container {
    max-width: 1279px;
  }
}

@media screen and (max-width: 991px) {
  .service-section .container {
    max-width: 959px;
  }
}

.service-section .gradient-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;

  @media screen and (max-width: 991px) {
    grid-template-columns: 1fr;
  }
}

.service-section .container-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  color: var(--bg-black);
  font-weight: 600;
  line-height: 60px;
}

.service-section .card {
  background: none;
  max-width: 550px;
  border: 0;
  width: 100%;
  margin-inline: auto;
}

.service-section .learn {
  font-size: 20px;
  color: var(--bg-black);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.service-section .learn:hover {
  color: var(--bg-primary);
}

.service-section .container-card {
  position: relative;
  border: 2px solid transparent;
  background-color: var(--text-white);
  background-clip: padding-box;
  border-radius: 45px;
  /* border-color: #0c0a0e; */
  padding: 20px;
}

.service-section .icons {
  height: 60px !important;
}


.bg-green-box,
.bg-white-box,
.bg-yellow-box,
.bg-blue-box {
  position: relative;
}

.bg-green-box::after,
.bg-white-box::after,
.bg-yellow-box::after,
.bg-blue-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
}

.bg-green-box::after {
  background: linear-gradient(71deg, #0d1212, #3da077, #0d1212);
}

.bg-white-box::after {
  background: linear-gradient(71deg, #121013, #b0afb0, #121013);
}

.bg-yellow-box::after {
  background: linear-gradient(71deg, #110e0e, #afa220, #110e0e);
}

.bg-blue-box::after {
  background: linear-gradient(71deg, #0c0a0e, #5f6fad, #0c0a0e);
}

.service-section {
  background: var(--bg-body);
}

.service-section .card-title {
  font-weight: 600;
  color: var(--bg-black);
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 28px;
  padding-bottom: 8px;
}

.service-section .card-description {
  /* font-weight: 500; */
  line-height: 32px;
  color: var(--bg-black);
  font-size: 17px;
  max-width: 470px;
}

.service-section .square-box {
  width: 50px;
  height: 50px;
  background-color: #3498db;
  display: inline-block;
  margin-right: 10px;
}

.service-section .arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  display: inline-block;
}

.service-section .square-button {
  width: 45px;
  height: 45px;
  background-color: var(--bg-secondary);
  color: var(--text-white);
  border: none;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
}

.service-section .square-button:hover {
  background: var(--bg-primary) !important;
}



/* Footer Subscribe form */

.footer-widget-heading h3 {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--primary-color);
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
}

.footer-widget ul li a {
  color: var(--text-white);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.footer-logo {
  margin-bottom: 10px !important;
}

.footer-logo img {
  max-width: 250px !important;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-primary);
  color: var(--text-white);
  outline: none;
}

.subscribe-form input::placeholder {
  color: var(--text-white);
}

.subscribe-form button {
  position: absolute;
  cursor: pointer;
  right: 0;
  background: var(--bg-secondary);
  padding: 13px 20px;
  border: 1px solid var(--bg-secondary);
  top: 0;
}

.subscribe-form button i {
  color: var(--text-white);
  font-size: 22px;
  transform: rotate(-6deg);
}

/* End */

.heading-title-hover .hover-title:hover {
  background-size: 9% 0.1em;
  background-position: 10% 100%, 90% 100%;
}

.btn-hover-animate button {
  --c: var(--bg-secondary);
  font-size: 16px;
  color: var(--text-white);
  background: var(--bg-secondary);
  width: 12em;
  height: 3em;
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 3em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
  margin: 1em;
  border: none;
}

.btn-hover-animate button span {
  position: absolute;
  width: 25%;
  height: 100%;
  background: var(--bg-primary);
  /* background: purple; */
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
  color: var(--text-white);
}

.btn-hover-animate button:hover {
  color: var(--text-white);
}

.btn-hover-animate button:hover span {
  transform: translateY(0) scale(2);
}

.btn-hover-animate button span:nth-child(1) {
  --n: 1;
}

.btn-hover-animate button span:nth-child(2) {
  --n: 2;
}

.btn-hover-animate button span:nth-child(3) {
  --n: 3;
}

.btn-hover-animate button span:nth-child(4) {
  --n: 4;
}

.header-section .navbar-nav li a {
  font-weight: 200;
}

/* End */

.apply-section .masonry {
  display: flex;
  flex-wrap: wrap;
}

.apply-section .masonry .column {
  background: #fff;
  flex-grow: 1;
  width: 100%;
  height: 300px;
}

.apply-section .masonry .column img {
  width: 100%;
  display: block;
}

.apply-section .bold-text {
  font-weight: bold;
}

.apply-section .reduce-line-height {
  line-height: 0.5;
  /* Adjust the line height as needed */
}

.apply-section .ver {
  background-color: rgb(206, 206, 206);
}

.text-gradient {
  background: radial-gradient(94.18% 54.68% at 21.16% 21.69%,
      var(--bg-secondary) 88.89%,
      var(--bg-primary) 87.23%,
      var(--bg-secondary) 100%,
      var(--bg-primary) 85.12%,
      var(--bg-secondary) 91.54%,
      var(--bg-primary) 100%);
  font-size: 42px;
  /* text-shadow: 2px 5px #fff; */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.underline-1,
.underline-2,
.underline-3 {
  width: 100px;
  height: 4px;
  background: var(--bg-scrolled);
}

.apply-section .list-unstyled li i {
  color: var(--bg-secondary);
  background: var(--bg-secondary);
}

.faq-section .accordion-button:not(.collapsed) {
  padding: 30px 20px 30px 20px;
  color: var(--bg-primary);
  background: none;
  border: none;
  outline: none;
  border-color: none;
  border-radius: none;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
  padding: 30px;
}

.accordion-body {
  padding: 30px;

}

/* privACY POLICY */
.privacy-policy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.privacy-policy p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* privACY POLICY */

/* footer..................................... */


.footerLogoText>span {
  font-size: 28px;
  font-weight: 600;
}

.footer-section .footerLogoText {
  color: var(--bg-primary);
}

.footer-section .footer-social-media i {
  color: var(--bg-secondary);
  width: 50px;
}

.UsefulLinks ul li a:hover {
  color: var(--bg-secondary) !important;
  font-weight: 600;
}

.footer-section .single-cta i {
  color: var(--primary-color);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.footer-section a {
  text-decoration: none;
  color: var(--bg-black) !important;
}



.footer-section {
  padding-left: 100px;
  padding-right: 100px;
  background: var(--text-white);
}

.footer-section h5 {
  font-weight: 800 !important;

}

@media screen and (min-width: 200px) and (max-width: 991px) {
  .footer-section {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (max-width: 768px) {
  .header-section .navbar-nav .nav-link {
    color: var(--bg-black);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-section .scrolled .navbar-nav .nav-link {
    color: var(--bg-black);
  }
}

.footer-section .footer-text {
  color: var(--bg-black);
}

.footer-section .footer {
  background-color: transparent;
  transition: background-color 0.3s;
  color: var(--primary-red);
}



/* footer */

.call-section .call-gradient {
  padding: 0%;
  width: 105%;
  height: 65vh;
  background: linear-gradient(48deg, rgb(0 0 0 / 58%) -1%, rgb(0 0 0 / 62%) 88%);
}



.navbar-toggler:focus {
  box-shadow: none;
}

.footer-section .active-link-footer {
  border-bottom: 2px solid var(--bg-primary);
  width: fit-content;
}