@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* ====================================================== HEADER CSS ========================================================== */
.main-header {
  background: linear-gradient(to right, #0CB8B6 0%, #0CB8B6 38%, #FBFBFB 38%, #FBFBFB 100%);
  box-shadow: 0px 6px 10px 0px #00000040;
}
.main-header .navbar-brand {width: 36%;}
.main-header .navbar-nav {
  width: 100%;
  column-gap: 5px;
  justify-content: space-between;
  align-items: center;
}
.main-header .nav-link {
  color: #4C4C4C;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  transition: color 0.3s, text-decoration-color 0.3s;
}
.main-header .nav-link:hover,
.main-header .nav-link.active {
  color: #0CB8B6;
  text-decoration-color: #0CB8B6;
}
.main-header .theme-btn {padding: 6px 12px; display: flex;}
.main-header .theme-btn:hover {color: #0CB8B6;}

/* ====================================================== FOOTER CSS ========================================================== */
.main-footer .footer-sec{
  background: #0CB8B6;
  color: #fff;
}
.main-footer .footer-sec .read-more{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}
.main-footer .footer-sec .links {
  display: grid;
  gap: 0.5rem;
  word-break: break-word;
}
.main-footer .footer-sec .links a, .main-footer .footer-sec .social-link a{
  font-weight: 500;
  color: #fff;
}
.main-footer .footer-sec .links a:hover, .main-footer .copyright-sec a:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}
.main-footer .footer-sec .social-link{
  display: flex;
  gap: 0.75rem;
  font-size: 20px;
}
.main-footer .copyright-sec .inner-sec {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
  font-size: 15px;
  color: #4C4C4C;
}
.main-footer .copyright-sec a {color: #4C4C4C;}

/* ====================================================== COMMON CSS ========================================================== */
body, .home-sec {overflow-x: hidden;}
.theme-btn, .theme-btn-2 { 
  padding: 0.5rem 1rem;
  display: block;
  border: 1px solid #0CB8B6;
  border-radius: 4px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: color 0.8s ease;
  z-index: 1;
  text-transform: capitalize;
}
.theme-btn { 
  background: transparent;
  color: #fff;
}
.theme-btn-2 { 
  background: linear-gradient(90deg, #0CB8B6 0%, #034EA2 100%);
  color: #0CB8B6;
}
.theme-btn::before, .theme-btn-2::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(0%);
  transition: transform 0.8s ease;
  z-index: -1;
}
.theme-btn::before {
  background: linear-gradient(90deg, #0CB8B6 0%, #034EA2 100%);
}
.theme-btn-2::before {
  background: #fff;
}
.theme-btn:hover {
  background: linear-gradient(90deg, #0CB8B6 0%, #034EA2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theme-btn-2:hover {
  background: linear-gradient(90deg, #0CB8B6 0%, #034EA2 100%);
  color: #fff;
}
.theme-btn:hover::before, .theme-btn-2:hover::before {
  transform: translateX(100%);
}  
.gradient-bg {
  background: #e7f3f5;
}
/* Shared initial style */
.fade-right, .fade-left, .fade-up, .fade-down {
  opacity: 0;
  transition: opacity 2.0s ease, transform 2.0s ease;
}
/* Individual animations */
.fade-right.active {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  transform: translateX(-100px);
}
.fade-left.active {
  opacity: 1;
  transform: translateX(0);
}
.fade-left {
  transform: translateX(100px);
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
.fade-up {
  transform: translateY(100px);
}
.fade-down.active {
  opacity: 1;
  transform: translateY(0);
}
.fade-down {
  transform: translateY(-100px);
}
.custom-form .form-control, .custom-form .form-select {
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  padding: 0.75rem;
  color: #494949;
}
.custom-form .form-select {padding-right: 2.25rem;}
.custom-form .form-control::placeholder, .custom-form .form-select::placeholder {
  color: #494949;
}
.custom-form .form-control:focus , .custom-form .form-select:focus {
  box-shadow: none;
  border: 1px solid #0cb8b6;
}
.txt-4c {color: #4C4C4C;}
.w-img img, .wi-100{width: 100%;}
.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.custom-pagination .page-link {
  border: 1px solid #DFE3E8;
  font-size: 15px;
  color: #212B36;
  font-weight: 600;
  border-radius: 4px;
  padding: 5px 10px;
}
.custom-pagination .page-link:focus, .custom-pagination a.page-link:hover {
  border: 1px solid #0CB8B6;
  color: #0CB8B6;
}
.custom-pagination .btn-link {
  border: 1px solid #0CB8B6;
  color: #0CB8B6;
  background: #0CB8B626;
}
.custom-pagination .btn-link:hover {
  background: #0CB8B6;
  color: #fff!important;
}
.text-justify {text-align: justify;}
.slide-wrapper {
  position: relative;
  overflow: hidden;
}
.slide-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.slide-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(217, 217, 217, 0) 40%, rgba(12, 184, 182, 0.5) 75%, #043336 100%);
  pointer-events: none;
  z-index: 1;
}
.slide-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
}
.slide-content .h-txt {
  font-size: 52px;
  font-weight: 700;
}
.slide-content .p-txt {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
}
.owl-carousel {user-select: none;}

/* ====================================================== HOME CSS ========================================================== */
.main-htxt {
  color: #4C4C4C;
  font-weight: 700;
  font-size: 45px;
  margin-bottom: 0.4rem;
  /* text-transform: capitalize; */
}
.sub-htxt {
  color: #3F3F46;
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 1.4rem;
}
.home-sec .info-txt p{
  font-size: 27px;
  text-align: justify;
  color: #4C4C4C;
  line-height: 1.75;
}
.home-sec .about-us, .home-sec .latest-stories {
  background: #fff;
}
.brand-slider .brand-imgs img{
  border-radius: 20px;
}
/* Initial state - no visibility */
.brand-fade-up, .brand-fade-down, .brand-fade-up2, .brand-fade-down2, .brand-fade-left { opacity: 0; }
/* When .active is added, start animation */
.brand-fade-up.active { animation: fadeUp 2.5s ease forwards; }
.brand-fade-down.active { animation: fadeDown 2.5s ease forwards; }
.brand-fade-up2.active { animation: fadeUp2 2.5s ease forwards; }
.brand-fade-down2.active { animation: fadeDown2 2.5s ease forwards; }
.brand-fade-left.active { animation: fadeLeft 2.5s ease forwards; }
/* Keyframe for fade animation */
@keyframes fadeUp {
  0% { opacity: 1; transform: translate3d(0px, 150px, 0px); }
  50% { opacity: 1; transform: translate3d(0px, -150px, 0px); }
  100% { opacity: 1; transform: translate3d(0px, 0px, 0px); }
}
@keyframes fadeDown {
  0% { opacity: 1; transform: translate3d(0px, -150px, 0px); }
  50% { opacity: 1; transform: translate3d(0px, 150px, 0px); }
  100% { opacity: 1;  transform: translate3d(0px, 0px, 0px); }
}
@keyframes fadeUp2 {
  55% { opacity: 0; transform: translate3d(0px, 150px, 0px); }
  100% {  opacity: 1; transform: translate3d(0px, 0px, 0px); }
} 
@keyframes fadeDown2 {
  55% { opacity: 0; transform: translate3d(0px, -150px, 0px); }
  100% { opacity: 1;  transform: translate3d(0px, 0px, 0px); }
}
@keyframes fadeLeft {
  55% { opacity: 0; transform: translate3d(150px, 0px, 0px); }
  100% { opacity: 1;  transform: translate3d(0px, 0px, 0px); }
}

/* ====================================================== CONTACT US CSS ========================================================== */
.contact-us .d-contact {
  display: flex;
  align-items: baseline;
  column-gap: 0.5rem;
  color: #8D8D8D;
  margin-bottom: 0.75rem;
}
.contact-us .d-contact .icon, .contact-us .social a {
  color: #0CB8B6;
}
.contact-us .social {
  gap: 0.75rem;
  font-size: 22px;
  align-items: center;
}

/* ====================================================== POWER BRAND CSS ========================================================== */
.power-brand .sub-info {overflow: hidden;}
.power-brand .kabz-bg {background: linear-gradient(90deg, rgb(0 92 18 / 40%) 0%, rgb(244 236 0 / 40%) 100%);}
.power-brand .nuolyf-bg {background: linear-gradient(90deg, #CFFFF4 0%, #FFE0CA 100%);}
.power-brand .recovr-bg {background: linear-gradient(90deg, #FFEBEC 0%, #DACEFF 100%);}
.power-brand .vansatva-bg {background: linear-gradient(90deg, #D6FBFD 0%, #DAFFD8 100%);}
.power-brand .tt-bg {background: linear-gradient(90deg, #E2DAF9 0%, #C4E5FF 100%);}
.power-brand .sub-info .main-txt {color: #3F3F46; margin-bottom: 0.75rem; font-weight: 600;}
.power-brand .brand-bg{
  background: linear-gradient(90deg, #00ED87 0%, #034EA2 100%);
  position: absolute;
  bottom: 0;
  left: -46px;
  border-radius: 50%;
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.power-brand .txt-4c{font-size: 20px;}

/* ====================================================== ABOUT US CSS ========================================================== */
.about-us .h-subtxt{
  background: linear-gradient(180deg, rgba(3, 78, 162, 0.1) 4.17%, rgba(12, 184, 182, 0.1) 100%);
  color: #4C4C4C;
  font-style: italic;
}
.about-us .h-subtxt .inner-txt {line-height: 1.7;font-weight: 400;}
.about-us .aboutus-imgbg {background: url(../img/aboutus-bg.png) no-repeat center bottom;}
.about-us .mission-vision {
  background: url(../img/aboutus-icon-bg.png) no-repeat center;
  background-size: cover;
}
.about-us .mission-card ,.about-us .vission-card{
  border-radius: 16px;
  border: 0;
  box-shadow: inset 0px 16px 32px -8px rgba(12, 12, 13, 0.4);
  color: #4C4C4C;
  height: 100%;
}
.about-us .mission-card { background: linear-gradient(133.45deg, #EFD8FF 2.57%, #CFFFF9 100%);}
.about-us .vission-card {background: linear-gradient(133.45deg, #D8FFFF 2.57%, #FFDECF 100%);}

/* ====================================================== BLOG CSS ========================================================== */
.blog-list, .blog-detail {overflow-x: hidden;}
.blog-list .card {
  height: 100%;
  border: 1px solid #E8E8EA;
  border-radius: 12px;
  padding: 15px;
}
.blog-list .card .card-txt {
  display: grid;
  height: 100%;
  margin-top: 1rem;
}
.blog-list .tech-txt, .blog-detail .tech-txt {
  background: #0CB8B626;
  color: #0CB8B6;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  display: inline;
}
.blog-list .blog-title, .blog-detail .blog-title {
  color: #4C4C4C;
  font-weight: 600;
}
.blog-list .profile-txt, .blog-detail .profile-txt {
  color: #97989F;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-weight: 500;
  margin-top: auto;
}
.blog-list .profile-txt {
  justify-content: space-between;
  font-size: 15px;
}
.blog-detail .profile-txt {font-size: 14px;}
.blog-detail .blog-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-detail .blog-social a{
  display: flex;
  color: #0CB8B6;
}
.blog-detail .post-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-detail .post-header .icon {
  color: #0CB8B6;
  font-size: 18px;
}
.blog-detail .post-txt span{
  font-size: 14px;
  color: #696A75;
}
.blog-detail .post-txt p{
  color: #4C4C4C;
  font-weight: 600;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-detail .recent-post a {
  width: 160px;
  flex: none;
}
.ip-search .form-control {
  border: 1px solid #0CB8B6;
  padding: 0.75rem;
  font-size: 16px;
  box-shadow: none!important;
}
.ip-search .btn {
  background: #0CB8B6;
  border: 1px solid #0CB8B6;
  color: #fff;
  font-size: 18px;
}
.ip-search .btn:hover {
  background: #0CB8B626;
  color: #0CB8B6;
}
.ip-search {flex-wrap: nowrap;}
.blog-dropdown {width: 100%;}
.blog-dropdown .form-control {border-top-right-radius: 0; border-bottom-right-radius: 0;}
.blog-dropdown .dropdown-menu {width: 100%;}
.blog-dropdown .dropdown-item {
  color: #97989F;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
.blog-dropdown .dropdown-item:hover, .blog-dropdown .dropdown-item:focus {color: #4C4C4C;}
.blog-dropdown .dropdown-item.active, .blog-dropdown .dropdown-item:active {background: #0CB8B626; color: #0CB8B6;}


/* ====================================================== CAREER CSS ========================================================== */
.career-main .career-inner {
  overflow: hidden;
  position: relative;
}
.career-main .align-center {align-content: center;}
.career-main .signup-slider {display: none;}

.job-list .banner-txt {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.custom-table tbody, .custom-table thead {
  vertical-align: middle;
}
.custom-table thead tr th {
  background: #0CB8B6;
  color: #fff;
  font-weight: 600;
}
.custom-table tr th , .custom-table tr td {
  padding: 0.65rem;
}
.job-list .sort-by {
  border: 0;
  box-shadow: none!important;
  outline: 0!important;
  padding: 0px 5px;
}
.job-detail .share-social {
  display: flex;
  gap: 0.5rem;
}
.job-detail .share-social a{
  font-size: 18px;
  color: #0CB8B6;
}
.job-detail .h6-txt {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.job-detail .res-list {
  list-style: disc;
  display: grid;
  gap: 0.25rem;
  padding-left: 1rem;
}
.refresh-btn {
  font-size: 23px;
  color: #0CB8B6;
  border: 0;
  outline: 0!important;
  box-shadow: none!important;
  background: none;
}
.logo-img-width {width: 200px!important;}

.btn-style{
    border:1px solid #000!important;
    color: #000!important;
    border-radius: 50%;
    height: 35px!important;
    width: 35px!important;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-button-prev, 
.swiper-button-next{
    display: block;
}
.swiper-button-prev2, 
.swiper-button-next2{
    display: none;
}
.swiper-button-prev:after, .swiper-button-next:after{
    font-size: 18px!important;
    font-weight: 700!important;
}

.swiper-button-prev2:after, .swiper-button-next2:after{
    font-size: 18px!important;
    font-weight: 700!important;
    color: #000;
}