@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
}

:root {
  --bs-tekfortune: #f95500;
}

.text-bs-tekfortune {
  color: var(--bs-tekfortune) !important;
}

.bg-bs-tekfortune {
  background-color: var(--bs-tekfortune) !important;
}

.border-bs-tekfortune {
  border-color: var(--bs-tekfortune) !important;
}

.btn-bs-tekfortune {
  color: #fff;
  background-color: var(--bs-tekfortune);
  border-color: var(--bs-tekfortune);
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

.btn-bs-tekfortune:hover {
  color: #fff;
  background-color: #d14a00;
  /* Darker shade for hover */
  border-color: #c04500;
}

/*web button*/
.web-btn {
  border-radius: var(--bs-border-radius-pill);
  background-color: var(--bs-tekfortune);
  font-weight: 500;
  line-height: 18px;
  padding: 8px 8px 8px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
  text-decoration: none;
  -webkit-border-radius: var(--bs-border-radius-pill);
  -moz-border-radius: var(--bs-border-radius-pill);
  -ms-border-radius: var(--bs-border-radius-pill);
  -o-border-radius: var(--bs-border-radius-pill);
}

.web-btn:hover span.button-icon {
  transform: rotate(45deg);
  transition: 0.3s;
}

.web-btn span.btn-title {
  position: relative;
  z-index: 3;
}

.web-btn span.button-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bs-border-radius-pill);
  margin-left: 8px;
  transition: 0.3s;
  background-color: var(--bs-white);
  -webkit-border-radius: var(--bs-border-radius-pill);
  -moz-border-radius: var(--bs-border-radius-pill);
  -ms-border-radius: var(--bs-border-radius-pill);
  -o-border-radius: var(--bs-border-radius-pill);
}

.web-btn-outline {
  color: var(--bs-main);
  border: 1px solid var(--bs-main);
  display: inline-block;
  padding: 8px 16px;
  transition: all 0.4s;
  border-radius: 30px;
  position: relative;
  background: transparent;
  z-index: 1;
  text-decoration: none;
  font-weight: 600;
  line-height: 18px;
  transition: all 0.4s;
}

.web-btn-outline span {
  height: 36px;
  width: 36px;
  display: inline-block;
  border-radius: var(--bs-border-radius-pill);
  transition: all 0.4s;
  line-height: 36px;
  text-align: center;
  background: var(--bs-main);
  color: var(--bs-dark);
  transform: rotate(-45deg);
  position: relative;
  left: 8px;
  -webkit-border-radius: var(--bs-border-radius-pill);
  -moz-border-radius: var(--bs-border-radius-pill);
  -ms-border-radius: var(--bs-border-radius-pill);
  -o-border-radius: var(--bs-border-radius-pill);
}

.web-btn-outline:hover {
  color: var(--bs-white) !important;
  transition: all 0.4s;
  border: 1px solid var(--bs-main);
  background: var(--bs-main);
}

.web-btn-outline:hover span {
  background: var(--bs-white) !important;
  transition: all 0.4s;
  color: var(--bs-main) !important;
  transform: rotate(0deg);
}

.web-btn-outline:hover span svg path {
  stroke: var(--bs-main);
}

/* web-heading */
.web-heading .heading-sub {
  color: var(--bs-tekfortune);
  text-transform: capitalize;
  font-weight: 600;
}

.web-heading .heading-title {
  font-weight: 700;
  text-transform: capitalize;
}

.web-heading .heading-text {
  color: var(--bs-secondary);
}

.web-heading .heading-text:last-of-type {
  margin-bottom: 0;
}

/*app-navbar*/
.app-navbar {
  box-shadow: var(--bs-box-shadow-sm);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bs-white);
}

.app-navbar .navbar-brand img {
  height: 2.5rem;
}

.app-navbar .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--bs-dark);
  font-size: 14px;
}

.app-navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--bs-tekfortune);
}

.app-navbar .navbar-nav .nav-item.dropdown.mega-menu {
  position: unset;
}

.app-navbar .navbar-nav .nav-item.dropdown.mega-menu .sub-menu h5 {
  margin-bottom: 0;
}

.app-navbar .navbar-nav .nav-item.dropdown.mega-menu .sub-menu h5 a {
  text-decoration: none;
  color: var(--bs-tekfortune);
}

.app-navbar .navbar-nav .nav-item.dropdown.mega-menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-navbar .navbar-nav .nav-item .dropdown-menu {
  border: 0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
  /* width: 100%; */
  border-radius: 0;
  background-color: var(--bs-white);
  top: 100%;
  margin-top: 0;
  animation: animdropdown 0.4s ease-in-out 0s 1 normal forwards;
}

/* Submenu positioning */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropdown-submenu .dropdown-item::after {
  transform: rotate(270deg);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--bs-tekfortune);
}

@keyframes animdropdown {
  0% {
    opacity: 0;
    transform: translate3d(0, 6px, 0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*App navbar end*/
/*hero section start*/
.hero-section {
  background: url("/assets/Front/img/hero-image.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 0 2rem 0;
}

.hero-section h1 {
  font-weight: 800;
  font-size: 70px;
}

.hero-section .hero-cta ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-section .hero-cta p {
  color: var(--bs-secondary);
  margin-bottom: 0;
}

.hero-section .hero-cta ul li img {
  height: 4rem;
}

.hero-section .hero-cta {
  margin-top: 3rem;
}

.hero-section .hero-cta ul li h5,
.hero-section .hero-cta h3 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

/*our clientele*/
.clientele-section {
  padding: 2rem 0;
}

.clientele-section .slider-client {
  overflow: hidden;
  position: relative;
  margin: 3rem auto auto;
}

.clientele-section .slider-client:after,
.clientele-section .slider-client:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 1) 0,
      rgba(255, 255, 255, 0));
}

.clientele-section .slider-client:after {
  right: 0;
  top: 0;
  transform: rotate(180deg);
}

.clientele-section .slider-client .slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(250px * 14);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.clientele-section .slider-client .slide {
  width: 200px;
  height: 50px;
  flex-shrink: 0;
}

.clientele-section .slider-client .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tekfortune-about-start */
.stat-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}
.tekfortune-about p {
  color: var(--bs-secondary) !important;
}
.about-us-page .card .card-body img{
    height:31rem;
    object-fit:cover;
}
.about-us-page .card .card-body .card-title{
    margin-top:2rem;
}
.about-us-page .card .card-body p{
    color:var(--bs-secondary);
}
.our-core-values{
    margin-top:2rem;
}
/* tekfortune-about-end */
/* our services*/
.services-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.services-section img {
  width: 100%;
  object-fit: cover;
}

.services-section .card {
  border: 0;
  border-radius: 0;
}

.services-section .card .card-body .card-title {
  font-weight: 600;
}

.services-section .card .card-body .card-text {
  color: var(--bs-secondary);
}

/* our clients start*/
.our-clients {
  margin: 2rem 0;
}

.our-clients .carousel {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(249, 85, 0, 0.16);
  padding: 2rem;
  border-radius: var(--bs-border-radius-lg);
}

.our-clients .carousel .carousel-inner .carousel-item div h5 {
  font-weight: 600;
  color: var(--bs-tekfortune);
}

.our-clients .carousel .carousel-inner .carousel-item div p {
  font-style: italic;
  color: var(--bs-secondary);
}

.our-clients .carousel .carousel-inner .carousel-item div {
  margin-top: 2rem;
}

.our-clients .carousel .carousel-inner .carousel-item p {
  margin-bottom: 0;
}

/* our clients end*/
/*faqs*/
.faqs {
  padding: 2rem 0;
  background-color: #f5f5f9;
}

.faqs .accordion {
  box-shadow: var(--bs-box-shadow-sm);
  border-radius: var(--bs-border-radius-lg);
}

.faqs .accordion .accordion-item {
  border-left: 0;
  border-right: 0;
}

.faqs .accordion .accordion-item .accordion-header .accordion-button {
  font-weight: 500;
}

.faqs .accordion .accordion-item .accordion-body {
  color: var(--bs-secondary);
}

/*footer*/
.footer {
  padding-top: 2rem;
}

.footer a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--bs-secondary);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--bs-tekfortune);
}

.footer img {
  margin-bottom: 1rem;
  height: 3rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-bottom {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  margin-top: 2rem;
}

/* Breadcrumb Section */
.app-breadcrumb .breadcrumb {
  margin-bottom: 1rem;
}

.app-breadcrumb .breadcrumb .breadcrumb-item {
  font-weight: 500;
  text-transform: capitalize;
}

.app-breadcrumb .breadcrumb .breadcrumb-item a {
  text-decoration: none;
}

.app-breadcrumb .breadcrumb .breadcrumb-item a:hover {
  color: var(--bs-tekfortune);
}

.app-breadcrumb .breadcrumb .breadcrumb-item.active {
  color: var(--bs-tekfortune);
}

.app-breadcrumb .breadcrumb-item+.breadcrumb-item::before,
.app-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

/* end */
.about-us-tekfortune {
  padding: 2rem 0;
}

.icon-box {
  font-size: 2rem;
  color: #f95500;
}

.check-icon {
  color: #22c55e;
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.about-us-tekfortune .feature-item h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-custom {
  background-color: #f8fafc;
  border: none;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.card-custom p {
  margin-bottom: 0;
}

.highlight-card {
  background-color: var(--bs-tekfortune);
  color: var(--bs-white);
}

.product-categories .card-hover-effect {
  width: 100%;
}

.product-categories .card-hover-effect a {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--bs-white);
  border-radius: var(--bs-border-radius-lg);
}

.product-categories .card-hover-effect a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease-in-out;
  transition-delay: 0.4s;
}

.product-categories .card-hover-effect a:hover {
  border-radius: 0;
}

.product-categories .card-hover-effect a img {
  object-fit: contain;
  transition: all 0.4s ease-in-out;
  width: 100%;
}

.product-categories .card-hover-effect a:hover img {
  transform: scale(1.1);
}

.product-categories .row:hover a {
  opacity: 0.4;
}

.product-categories .row .card-hover-effect a:hover {
  opacity: 1;
}

.product-categories .row .card-hover-effect a:hover:before {
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
}

.product-categories {
  padding: 2rem 0;
  background-color: var(--bs-light);
}

.product-categories .card-hover-effect .product-name {
  position: absolute;
  left: 0;
  z-index: 100;
  bottom: 0;
  margin: 1rem;
}

.product-categories .card-hover-effect .product-name h3,
.product-categories .card-hover-effect .product-name h4,
.product-categories .card-hover-effect .product-name h5 {
  font-weight: 900;
  margin-bottom: 0;
  font-style: italic;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.8);
  text-transform: capitalize;
  letter-spacing: 0.08rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 40px;
}

.learn-more svg {
  transition: transform 0.3s ease;
}

.learn-more:hover svg {
  transform: translateX(5px);
}

.ring-active {
  border: 2px solid #3b82f6;
}

/* product-details-page */
.service-banner-description {
  background: linear-gradient(90deg,
      #0a579a 12.76%,
      rgba(255, 255, 255, 0) 75.94%),
    url("../img/service-category-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
}

.service-banner-description .service-banner-heading h2 {
  color: var(--bs-white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-banner-heading p {
  margin-bottom: 0;
  color: var(--bs-white);
}

.product-detail-description {
  padding: 2rem 0;
}

.product-detail-description .product-overview-image {
  position: relative;
}

.product-detail-description .product-overview-image img {
  width: 100%;
}

.product-detail-description {
  padding: 2rem 0;
  overflow: hidden;
}

.product-detail-description .product-overview-image::before {
  content: "";
  position: absolute;
  top: 33.3334%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100vw;
  background-color: var(--bs-tekfortune);
  transform: skewX(-24deg) rotate(8deg) translate(4.75rem, -4rem);
  transform-origin: left;
}

.product-detail-description h1 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.product-detail-description p {
  color: var(--bs-secondary);
  text-align: justify;
}

.product-detail-description p:last-of-type {
  margin-bottom: 0;
}

.product-detail-description ul {
  color: var(--bs-secondary);
}

.product-detail-description ul li {
  line-height: 1.8;
}

/* salient-features */
.salient-features {
  background-color: var(--bs-light);
  padding: 2rem 0;
}

.salient-features ul {
  margin: 0;
  column-count: 2;
}

.salient-features h2 {
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.salient-features ul li {
  color: var(--bs-secondary);
}

.salient-features ul li {
  margin-bottom: 0.25rem;
}

/*.specifications*/
.specifications {
  margin: 2rem 0;
}

.specifications h2 {
  text-transform: uppercase;
  font-weight: 600;
}

.specifications .accordion .accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0;
}

.specifications .accordion .accordion-item .accordion-header .accordion-button {
  text-transform: uppercase;
  box-shadow: none;
  background-color: var(--bs-light);
  color: var(--bs-dark);
  font-weight: 500;
  border-radius: 0;
}

.specifications .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fec900;
}

.specifications .specifications-listing ul {
  margin-bottom: 0;
  column-count: 2;
  gap: 2rem;
  list-style: none;
  padding: 0;
}

.specifications .accordion .accordion-item .accordion-collapse .accordion-body .specifications-listing ul li {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.specifications .accordion .accordion-item .accordion-collapse .accordion-body .specifications-listing ul li p {
  margin-bottom: 0;
  min-width: 200px;
}

.specifications .accordion .accordion-item .accordion-collapse .accordion-body .specifications-listing ul li p:last-of-type {
  color: var(--bs-secondary);
  width: auto;
  min-width: auto;
}

/* call-outs-btns */
.call-outs-btns {
  background-color: var(--bs-tekfortune);
  position: sticky;
  top: 74px;
  z-index: 100;
}

.call-outs-btns .btn {
  width: 100%;
  padding: 1rem;
  text-transform: capitalize;
  color: var(--bs-white) !important;
  font-weight: 500;
  letter-spacing: 0.16rem;
  border-radius: 0;
  border: 0;
}

/*  career*/
.jobs-section {
  background: #f9f9f9;
  padding: 3rem 0;
}

.jobs-section .card {
  border: 0;
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  width: 100%;
}

.jobs-section .card .card-body {
  padding: 2rem;
}

.jobs-section .card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.jobs-section .card .card-body .btn {
  background: linear-gradient(to right, #ff8c00, #ffa500);
  color: var(--bs-white);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--bs-border-radius-pill);
}

.jobs-section .card .card-body .card-title {
  font-weight: 600;
}

.jobs-section .card .card-body .card-text {
  color: var(--bs-secondary);
  margin-bottom: 2rem;
}

.carrer-banner {
  background: linear-gradient(to right, #2563eb, #1e40af);
}


/* other-offices */
.other-offices {
  margin: 2rem 0;
}

.other-offices ul li img {
  height: 4rem;
  width: 4rem;
  border-radius: var(--bs-border-radius-pill);
  border: 1px solid var(--bs-border-color);
}

.other-offices ul li h5 {
  margin-bottom: 0.25rem;
}

.other-offices ul li p {
  color: var(--bs-secondary);
  margin-bottom: 0;
  font-size: 14px;
}

.other-offices ul li a {
  text-decoration: none;
  color: #d12427;
}

.other-offices ul {
  list-style: none;
  padding: 0.5rem;
  margin: 0;
  background-color: var(--bs-light);
  display: flex;
  gap: 1rem;
  border-radius: var(--bs-border-radius-lg);
  border: 1px solid var(--bs-border-color);
  width: 100%;
}

.other-offices h6 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  margin-bottom: 1rem;
}

.contact-us-form .card.contact-us-info .card-body .card-title,
.contact-us-form .card.contact-us-info .card-body .card-text {
  color: var(--bs-white) !important;
}

/* ---------------------new----------------------css */
/* hero-section-start */
.hero-section-internal {
    background: linear-gradient(90deg, #0a579a 12.76%, rgba(255, 255, 255, 0) 75.94%), url(../img/sub-categories-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 0;
}

.hero-section-internal h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section-internal p {
  margin-bottom: 0;
}

.hero-section-internal h2,
.hero-section-internal p {
  color: var(--bs-white);
}

/* hero-section-end */
/*contact us*/
.contact-us-form {
  top: -4em;
  position: relative;
}

/* .contact-us-form .card-body {
  width: 90%
} */
.contact-us-form .card-body {
  padding: 2rem;
}

.contact-us-form .card {
  background: #fff;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* .contact-us-form .card .card-body {
  width: 85%;
  margin: 0 auto
} */

.contact-us-form input,
.contact-us-form textarea {
  font-size: 16px;
  color: #191919;
  border-radius: 0
}

.contact-us-form input:focus,
.contact-us-form textarea:focus {
  box-shadow: none
}

.contact-us-form #contact-code,
.contact-us-form #sum-lbl {
  width: 60px
}

.contact-us-form .form-control:disabled {
  background-color: transparent
}

.contact-us-form .ui-widget.ui-widget-content {
  border: 0 !important;
  background-color: #ececec
}

.contact-us-form .ui-widget-header {
  background-color: #4842A8 !important
}

.contact-us-form .ui-state-default {
  border: 1px solid transparent !important;
  background: #4842A8 !important
}

.contact-us-form #amount {
  font-size: 17px;
  color: #4842A8 !important;
  font-weight: 500 !important;
  background: transparent
}

.partnership-models {
  background-color: #fcfcfc
}

.partnership-models .card {
  padding: 45px;
  height: 450px;
  background-color: #fff
}

.partnership-models .card .color-stip-1,
.partnership-models .card .color-stip-2,
.partnership-models .card .color-stip-3,
.partnership-models .card .color-stip-4 {
  width: 260px;
  height: 6px
}

.partnership-models .card .color-stip-1 {
  background-color: #EFFFAD
}

.partnership-models .card .color-stip-2 {
  background-color: #4842A8
}

.partnership-models .card .color-stip-3 {
  background-color: #FF818D
}

.partnership-models .card .color-stip-4 {
  background-color: #FCC73B
}

.partnership-models .card:hover {
  transition: all .5s
}

.partnership-models .card:hover a,
.partnership-models .card:hover h3,
.partnership-models .card:hover .h3,
.partnership-models .card:hover p {
  color: #fff
}

.partnership-models .card:hover:before {
  bottom: -30px;
  left: 10px
}

.partnership-models .card:hover:after {
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%
}

.partnership-models .card .more-txt {
  text-align: left;
  transition: ease-in-out .5s;
  z-index: 1;
  position: relative
}

.partnership-models .card:before,
.partnership-models .card:after {
  content: '';
  position: absolute;
  transition: all .5s
}

.partnership-models .card:before {
  background-image: url(../img/dots-pattern.svg);
  width: 172px;
  height: 98px;
  bottom: -53px;
  left: 10px
}

.partnership-models .card:after {
  background-color: var(--bs-tekfortune);
  width: 77px;
  height: 77px;
  bottom: 0px;
  right: 0;
  z-index: -1
}

.partnership-models .card.active {
  background-color: #4842A8
}

.partnership-models .card.active a,
.partnership-models .card.active h3,
.partnership-models .card.active .h3,
.partnership-models .card.active p {
  color: #fff
}

.partnership-models .card.active:before {
  bottom: 10px;
  right: 10px
}

.partnership-models .card.active:after {
  bottom: 0px;
  right: 0px
}

.partnership-models a {
  color: #4842A8;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.partnership-models h3,
.partnership-models .h3 {
  font-size: 36px;
  line-height: 46px
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .partnership-models .card {
    padding: 25px;
    height: 470px
  }

  .contact-info-card .title-h6 {
    font-size: 17px
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  .contact-info-card .title-h6 {
    font-size: 18px
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .contact-us-form .card .card-body {
    width: 90%
  }

  .mt-80 {
    margin-top: 50px
  }

  .p-tb-80 {
    padding-bottom: 50px;
    padding-top: 50px
  }

  .p-b-80 {
    padding-bottom: 50px
  }

  .p-t-80 {
    padding-top: 50px
  }

  .title-h2,
  .title-h4 {
    font-size: 28px
  }

  .title-h5 {
    font-size: 24px
  }

  .hero-section h1,
  .hero-section .h1 {
    font-size: 36px
  }
}

.contact-info-card {
  height: 350px
}

.contact-info-card.card-1,
.contact-info-card.card-2,
.contact-info-card.card-3 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.contact-info-card.card-1 {
  background-image: url(../img/contact-email.jpg)
}

.contact-info-card.card-2 {
  background-image: url(../img/contact-phone.jpg)
}

.contact-info-card.card-3 {
  background-image: url(../img/contact-skype.jpg)
}

.cnt-bottom-title {
  font-size: 14px
}
/*our core values*/
.core-value-card {
    background-color: #f9fbfd;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: 0.3s;
    height: 100%;
}

    .core-value-card:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

.core-value-icon {
    width: 60px;
    height: 60px;
    background-color: #e9f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .core-value-icon i {
        font-size: 24px;
        color: #3b82f6;
    }

.core-value-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.core-value-text {
    color: #555;
    font-size: 1rem;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-subheading {
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
}

.core-value-card:hover .core-value-icon {
    background-color: #d0e4ff;
    transform: scale(1.1);
    transition: background-color 0.3s, transform 0.3s;
}

.core-value-icon {
    width: 60px;
    height: 60px;
    background-color: #e9f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background-color 0.3s, transform 0.3s;
}
