/* ===============================
   INDEVOR DESIGN SYSTEM
================================= */

:root {
  /* Colors */
  --primary: #1f2336;
  --secondary: #112a40;
  --accent: #4fe9db;
  --white: #ffffff;
  --light: #f5f7fa;
  --text: #1a1a1a;
  --border: #e6e6e6;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0b1c2c, #112a40);
  --gradient-accent: linear-gradient(135deg, #4fe9db, #00e0e0);

  /* Fonts */
  --font-primary: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;

  /* Font Sizes */
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 28px;
  --fs-body: 16px;
  --fs-small: 14px;

  /* Spacing */
  --section-padding: 80px;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: all 0.3s ease;
}

/* ===============================
   GLOBAL STYLES
================================= */

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--text);
  margin: 0;
  padding: 0;
  background: var(--white);
  overflow-x: hidden;
}

* {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
}

h1 {
  font-size: var(--fs-h1);
}
h2 {
  font-size: var(--fs-h2);
}
h3 {
  font-size: var(--fs-h3);
}

/* ===============================
   LAYOUT
================================= */

.section {
  padding: var(--section-padding) 0;
  margin-top: 80px;
}

.container-custom {
  max-width: var(--container-width);
  margin: auto;
  padding: 0 20px;
}

/* ===============================
   BUTTONS
================================= */

a.btn.btn-light {
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 40px;
  padding: 12px 40px 13px 40px;
}
a.btn-primary-custom {
  background-color: #031627 !important;
  padding: 12px 40px 13px 9px;
  font-size: 18px;
  color: #fff !important;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border-radius: 40px;
  border: 1px solid #ffffff !important;
}

a.btn-primary-custom:hover {
  background-color: #031627 !important;
  border: 1px solid #031627;
}

a.btn-primary-custom span {
  padding: 8px;
  margin-right: 12px;
  background-color: #4fe9db;
  color: #031627;
  border-radius: 30px;
  font-size: 16px;
}

.btn-outline-custom {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

/* for submit button  */

button.btn.btn-light {
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 40px;
  padding: 12px 40px 13px 40px;
}
button.btn-primary-custom {
  background-color: #031627 !important;
  padding: 12px 40px 13px 9px;
  font-size: 18px;
  color: #fff !important;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border-radius: 40px;
  border: 1px solid #ffffff !important;
}

button.btn-primary-custom:hover {
  background-color: #031627 !important;
  border: 1px solid #031627;
}

button.btn-primary-custom span {
  padding: 8px;
  margin-right: 12px;
  background-color: #4fe9db;
  color: #031627;
  border-radius: 30px;
  font-size: 16px;
}

button .btn-outline-custom {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

/* ===============================  
   Header css
================================= */
nav.navbar-custom {
  background-color: #fff;
  padding: 20px 0px;
  margin: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.indevor-logo img {
  width: 110px;
  margin-left: 40px;
}

.navbar-nav a {
  color: #000;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
  font-size: 20px;
}

.navbar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #4fe9db;
  transition: 0.3s;
}

.navbar-nav .current-menu-item a {
  color: #4fe9db;
}

.navbar-nav .current_page_parent a {
  color: #4fe9db;
}
.navbar-nav a:hover::after {
  width: 100%;
}
.navbar-nav a:hover {
  color: #4fe9db;
}

.btn-primary-custom {
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 194, 194, 0.3);
}

/* ===============================
   HERO SECTION
================================= */

.hero {
  background-image: url(../images/slider-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  padding: 160px 0px 160px 0px;
  text-align: center;
  height: 79vh;
  align-content: center;
}

section.hero p {
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

.hero h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 70px;
  color: #fff;
}

.hero .hero-content-main {
  padding: 0px 195px;
}

/* ===============================
WHAT INDEVOR DOES
================================= */
.what-indevor-does p {
  text-align: justify;
  text-align-last: left;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
}

.what-indevor-does h2 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 500;
  text-align: left;
}

.what-indevor-does {
  background-color: #031627;
  height: 100%;
  padding: 30px;
  align-content: center;
}

.what-indevor-icon {
  font-size: 74px;
  color: #264c6f;
  margin-bottom: 10px;
  padding: 0;
}

.what-indevor-does-main img {
  height: 630px;
  object-fit: cover;
}

/* ===============================
OUR SOLUTIONS
================================= */

.card.our-solutions {
  padding: 20px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  border-bottom: 5px solid #4fe9db !important;
  border: none;
  backdrop-filter: blur(35px);
  background: rgba(247, 247, 247, 0.1);
  transition: 0.5s;
  height: 100%;
}

.card.our-solutions:hover {
  background: #fff;
  transition: 0.5s;
}

.card.our-solutions:hover.card.our-solutions h5 {
  color: #000000;
  transition: 0.5s;
}

.card.our-solutions:hover.card.our-solutions p {
  color: #000000;
  transition: 0.5s;
}
.card.our-solutions h5 {
  color: #fff;
  transition: 0.5s;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}

.card.our-solutions p {
  color: #fff;
  transition: 0.5s;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
}

.services-header i {
  font-size: 35px;
  margin: 20px;
}

a.learn-more {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #4fe9db;
}

a.learn-more span i.fa.fa-arrow-right {
  font-size: 12px;
}

.our-solutions-section {
  background-color: #031627;
  background-image: url(../images/slider-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.our-solutions-section h3 {
  color: #4fe9db;
}

.right-content-services h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.our-solutions-section h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  text-align: left;
}

.our-solutions-section p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}

/* ===============================
   why choose indevor
================================= */

.why-choose-indevor h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.circle-div-main img {
  width: 331px;
  object-fit: cover;
}

.why-choose-indevor h2.border-left-custom {
  color: #031627;
  font-size: 52px;
  padding-left: 20px;
  border-left: 5px solid #031627;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.why-choose-indevor h2 {
  color: #031627;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}
.why-choose-indevor p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.why-choose-indevor h5 {
  font-size: 20px;
  font-weight: 500;
  color: #031627;
}
.border-right-custom {
  border-right: 1px solid #000;
}

/* circle css start */

.circle {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  position: absolute;
  width: 74px;
  height: 74px;
  background-size: cover;
  border-radius: 100vmax;
  text-align: center;
  background-position: center;
  background-color: #031627;
}

.logo img {
  width: 18px;
  margin-top: 12px;
  margin-left: 11px;
}

.text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: var(--secondary-font);
  font-size: 8px;
  animation: textRotation 8s linear infinite;
  color: #031627;
}

.circle-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

.text span {
  position: absolute;
  left: 50%;
  font-size: 1.2em;
  transform-origin: 0 70px;
  font-weight: 600;
}

.circle-div-main {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}

.hewie-circle {
  position: absolute;
  left: 18px;
  background: #fff;
  padding: 10px;
  border-radius: 118px;
}

.circle-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* circle css end  */

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100px;
  overflow-x: hidden;
  font-size: 45px;
  color: #ffffff;
  font-weight: 500;
  background-color: #41c4bb;
  padding: 15px;
  margin-top: -1px;
}
.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee:hover .track {
  animation-play-state: paused;
}

.content {
  display: flex;
  gap: 70px;
}

/* ===============================
   Knowledge and insights section
================================= */

.knowledge-insight-card ul {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.knowledge-insight-card h5 {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-top: 20px;
  margin-bottom: 15px;
}

.knowledge-insights h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
}

.knowledge-insights h2 {
  color: #031627;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.knowledge-insights p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-align: left;
}
.number {
  position: absolute;
  left: 20px;
  top: 20px;

  font-size: 30px;
  font-weight: 700;
  color: #fff;
  padding: 16px 30px;
  background-color: #ffffff2b;
  backdrop-filter: blur(31px);
}
.knowledge-insight-card .card-body {
  padding: 20px;
  padding-bottom: 0;
}

.knowledge-insight-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 100%;
  display: flex;
  /* flex-direction: ; */
}

.knowledge-insight-card .card-footer {
  width: 20%;
  padding: 20px;
  background-color: #031627;
  align-content: center;
}

.knowledge-insight-card .card-footer a.learn-more {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #4fe9db;
  color: #fff !important;
}
.blog-two-meta ul li .meta-link {
  font-size: 14px;
  font-weight: 500;
  color: #0316278f;
  border: 1px solid #0316278f;
  border-radius: 40px;
  padding: 7px 14px;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}

.blog-two-meta ul li .meta-link:hover {
  background-color: #031627;
  color: #fff;
  border: 1px solid #031627;
  transition: 0.3s;
}

.wrap {
  transition: 0.2s;
}

.image img {
  transition: 1s;
}

.image img:hover {
  transform: scale(1.1);
  transition: 1s;
}

.image {
  position: relative;
  overflow: hidden;
  width: 315px;
}

/* ===============================
   Case studies
================================= */

.case-studies h2 {
  color: #000;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.case-studies p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-align: left;
}

.case-studies h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: left;
}

.case-card i.fa-solid {
  font-size: 45px;
  margin-bottom: 20px;
}

.case-card {
  border: 1px solid #dadada;
  padding: 20px;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  background-color: #e8f2fc;
  transition: 0.3s;
}
.feature-bg-images {
  bottom: 0;
  z-index: -1;
  width: 100%;
  max-width: 1050px;
  height: calc(100% - 0px);
  position: absolute;
  right: 0;
}

.case-studies {
  position: relative;
}

.feature-bg-images img {
  height: 100%;
  object-fit: cover;
}

.case-studies-header {
  max-width: 562px;
  margin-bottom: 44px;
}

.case-studies h5 {
  font-size: 20px;
  font-weight: 500;
  color: #031627;
  text-align: left;
}

/* ===============================
   How we work 
================================= */

.process-section {
  background-image: url(../images/h3-project.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.process-section h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: left;
}

.process-section h2 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.process-section p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  text-align: justify;
  text-align-last: left;
}

.step-1 {
  padding-left: 30px;
  border-left: 2px solid #fff;
  margin-bottom: 15px;
  margin-left: 15px;
}

.step-2 {
  padding-left: 30px;
  border-left: 2px solid #fff;
  margin-bottom: 15px;
  margin-left: 15px;
}
.step-3 {
  padding-left: 30px;
  border-left: 2px solid #fff;
  margin-bottom: 15px;
  margin-left: 15px;
}

.step-number {
  font-weight: 700;
  font-size: 54px;
  color: #4fe9db;
}

.process-section h5 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}

/* ===============================
CTA
================================= */

.cta h2 {
  color: #031627;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
}
section.cta.section {
  background-color: #4fe9db;
}
/* ===============================
   FOOTER
================================= */

footer.indevor-footer {
  background-color: #031627;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

footer.indevor-footer h5 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 40px;
}

ul.footer-social-links {
  display: flex;
  list-style: none;
  justify-content: flex-start;
  padding: 0;
  margin-top: 24px;
}

footer.indevor-footer p {
  font-size: 18px;
  color: #a69f9f;
  font-weight: 400;
  text-align: left;
}

ul.footer-social-links li a {
  color: #4fe9db;
  margin-right: 20px;
  padding: 9px;
  background-color: #4fe9db2b;
  border-radius: 30px;
  transition: 0.2s;
}

ul.footer-social-links li a:hover {
  background-color: #4fe9db;
  color: #031627;
  transition: 0.2s;
}
ul.other-links li.nav-item {
  color: #a69f9f;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  margin-bottom: 15px;
  transition: 0.3s;
}

ul.other-links li.nav-item:hover {
  color: #4fe9db;
  padding-left: 5px;
  transition: 0.3s;
}
ul.other-links {
  padding: 0;
  display: block;
}

footer.indevor-footer h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.footer-padding {
  padding: 136px 0px;
}

.border-left-custom {
  border-left: 1px solid #373737;
}

.copyright-indevor.text-center {
  padding: 30px;
  background-color: #082036;
}

ul.other-links .navbar-nav a {
  color: #a69f9f;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
}

ul.other-links .navbar-nav a:hover {
  color: #4fe9db;
}

ul.other-links ul.navbar-nav {
  gap: 24px;
}

/* ===============================
   SERVICES PAGE CSS
================================= */

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  display: block;
  width: 100%;
  height: auto;
}

.service-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(3 22 39),
    rgba(11, 28, 44, 0.3),
    rgba(11, 28, 44, 0.1)
  );
  z-index: 1;
}

.services-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: rgba(0, 194, 194, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-icon i {
  color: #4fe9db;
  font-size: 22px;
}

.services-content-main {
  background-color: #fff;
  padding: 30px 30px !important;
  color: #fff;
  text-align: left;
}

.services-content-main h2 {
  color: #031627;
  font-size: 46px;
  font-weight: 700;
  text-align: left;
}

.service-content h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}
.services-content-main p {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  text-align: justify;
  text-align-last: left;
}

.service-content h5 {
  color: #4fe9db;
  font-size: 30px;
  font-weight: 600;
  text-align: left;
}

.services-content-main li {
  font-size: 18px;
  color: #000000;
  font-weight: 500;
}

.services-content-main ul {
  margin-top: 20px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  margin-bottom: 10px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  margin-bottom: 10px;
}

/* ===============================
   CONTACT PAGE CSS
================================= */

section.contact-page.section h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

section.contact-page.section h2 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  text-align: left;
}

section.contact-page.section p {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  text-align: left;
}

.form-content-main {
  background-color: #031627;
  padding: 30px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  text-align: center;
  background-color: #4fe9db40;
  align-content: center;
  color: #4fe9db;
  font-size: 30px;
  border-radius: 50%;
  margin-bottom: 30px;
  margin: 0 auto;
}

.contact-icon:hover {
  background-color: #031627;
  transition: 0.3s;
}

.contact-item {
  border: 1px solid #d8d8d8;
  padding: 20px;
  text-align: center;
  height: 100%;
}

.contact-item h5.contact-title {
  color: #000;
  transition: 0.5s;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
  margin-top: 30px;
}

ul.contact-list li a {
  color: #000;
  transition: 0.5s;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

section.contact-page.section .contact-item p {
  color: #000;
  transition: 0.5s;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
ul.contact-list li {
  list-style: none;
}

.contact-form br {
  display: none;
}

.wpcf7-response-output {
  color: #fff;
}
/* 7777777777777777777777777777 FORM CSS 77777777777777777777777777 */

input.form-control-input {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  padding: 0px 0px;
  font-size: 18px;
  outline: none;
  background-color: transparent;
  color: #fff;
}

label.form-label {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-align: left;
}

select.form-select-input option {
  color: #000 !important;
  font-weight: 400;
}

textarea.form-control-input {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  padding: 0px 0px;
  font-size: 18px;
  outline: none;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
}

select.form-select-input {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  padding: 18px 0px;
  font-size: 18px;
  outline: none;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
}

/* ===============================
   ABOUT US PAGE CSS
================================= */
/* css for image 1 */

.our-mission-image-1 {
  display: flex;
  align-items: center;
  /* flex-direction: row-reverse; */
  position: relative;
  height: 100%;
}

.image-big-1 img {
  width: 525px;
  float: inline-end;
  border-radius: 30px;
}

.image-small-1 img {
  width: 250px;
  border-radius: 30px;
}

.image-small-1 {
  position: absolute;
  right: 0px;
  border: 10px solid #fff;
  border-radius: 40px;
}

/* css for image 2  */

.our-mission-image {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
  height: 100%;
}

.image-big img {
  width: 525px;
  float: inline-end;
  border-radius: 30px;
}

.image-small img {
  width: 250px;
  border-radius: 30px;
}

.image-small {
  position: absolute;
  left: 0px;
  border: 10px solid #fff;
  border-radius: 40px;
}

/* Card */
.team-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image */
.team-images img {
  transition: 0.5s ease;
}

/* 🔥 Gradient Overlay */
.team-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 28, 44, 0.9),
    rgba(11, 28, 44, 0.4),
    rgba(11, 28, 44, 0)
  );
  opacity: 1;
  transition: 0.4s ease;
  z-index: 1;
}

/* Content full overlay */
.team-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* 🔹 Name LEFT BOTTOM */
.team-text {
  color: #fff;
  opacity: 1;
}

.team-text .title {
  margin: 0;
  font-weight: 600;
}

.team-text .sub-title {
  font-size: 14px;
  opacity: 0.8;
}

/* 🔹 Social Icons RIGHT BOTTOM */
.team-share ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-share ul li {
  margin-bottom: 8px;
}

.team-share ul li a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

/* Hover icon effect */
.team-share ul li a:hover {
  background: #00c2c2;
  color: #fff;
}

/* 🔥 Animation hidden initially */
.team-share {
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s ease;
}

/* 🔥 HOVER EFFECT */
.team-item:hover::before {
  opacity: 1;
}

.team-item:hover img {
  transform: scale(1.08);
}

.team-item:hover .team-share {
  transform: translateY(0);
  opacity: 1;
}

.team-text {
  transition-delay: 0.1s;
}

.team-share {
  transition-delay: 0.2s;
}

.team-content a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
}

.our-team-and-fouders h6 {
  color: #4fe9db;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.our-team-and-fouders h2 {
  color: #000;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.our-team-and-fouders p {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-align: left;
}
/* ===============================
   SCROLL BAR css
================================= */

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #031627;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4fe9db;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #4fe9db;
}

/* ALL PAGES AND SECTION RESPONSIVE CSS  */

@media screen and (max-width: 1200px) {
  .hero .hero-content-main {
    padding: 0px 30px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 40px;
    text-align: left;
  }

  .hero {
    padding: 60px 0px 60px 0px;
    height: 56vh;
  }
  a.btn-primary-custom {
    padding: 12px 22px 13px 9px;
    font-size: 14px;
  }

  a.btn.btn-light {
    font-size: 14px;
    padding: 14px 20px 14px 20px;
  }

  .feature-bg-images img {
    display: none;
  }

  nav.navbar-custom {
    padding: 20px 10px;
  }

  .indevor-logo img {
    width: 90px;
    margin-left: 20px;
  }

  .navbar-nav a {
    font-size: 16px;
  }

  .content {
    gap: 45px;
}

.marquee {
    height: 60px;
    font-size: 26px;
    background-color: #41c4bb;
    padding: 15px;
    display: flex;
    align-items: center;
}


.what-indevor-icon {
    font-size: 44px;
}

.what-indevor-does h2 {
    font-size: 22px;
}
.what-indevor-does p {
    font-size: 16px;
}
.what-indevor-does-main img {
    height: auto;
    object-fit: cover;
}

.our-solutions-section h2 {
    font-size: 22px;

}


section.hero p {
    text-align: left;
    font-size: 18px;
}

section.section.our-solutions-section .pe-5 {
    padding-right: 0rem !important;
}
.our-solutions-section {
    padding: 30px 18px;
}

.our-solutions-section a.btn-primary-custom {
    margin-bottom: 30px;
}
.card.our-solutions {
    text-align: left;
}

.card.our-solutions h5 {
  text-align: left ;
}

.card.our-solutions p {
    text-align: left;
}

.services-header i {
    font-size: 30px;
    margin: 20px 0px;
}
.section.why-choose-indevor .ps-5{
  padding-left: 0rem !important;
}

.why-choose-indevor h2 {
    font-size: 22px;
}
}


