html {
    scroll-behavior: smooth;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family:'Poppins',sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--wed-black);
    text-transform: none;
    font-style: normal;
    background-color: #fff;
    position: relative;
    margin: 0px !important;
    padding: 0px;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
    font-family:'Poppins',sans-serif;
}
h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 24px;
}
h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
h5 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}
p {
    margin: 0 0 16px;
    line-height: 1.3;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    border: none;
}
.primary-btn {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    padding: 6px 6px 6px 30px;
    color: #fff;
    text-transform: capitalize;
    background-color: #0e51ab;
}
.primary-btn.light{
    background-color: #fff;
    color: #0e51ab;
}
.primary-btn::before{
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
}
.primary-btn.dark::before{
    background-color: #000;
}
.primary-btn .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
}
.primary-btn .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--white-color);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.primary-btn .btn-wrap span span {
    position: relative;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    margin-left: 15px;
    border-radius: 50px;
    display: inline-block;
    color: #0e51ab;
    background-color: #fff;
}
.primary-btn.light .btn-wrap span span{
    background-color: #0e51ab;
    color: #fff;
}
.primary-btn:hover .btn-wrap  .text-one:first-child{
	-webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}
.primary-btn:hover .btn-wrap >span> span {
    color: #fff;
    background-color: #0e51ab;
}
.primary-btn .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
	color: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.primary-btn.dark .btn-wrap .text-two{
    color: #fff;
}
.primary-btn.dark:hover .btn-wrap >span> span {
    color: #0e51ab;
    background-color: #fff;
}
.primary-btn:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.primary-btn:hover::before{
	top: -40%;
}
.primary-btn.light:hover .btn-wrap .text-two{
    color: #0e51ab;
}
/***********************
* header
***********************/
.topbar-inner {
    display: flex;
    justify-content: space-between;
}
.topbar {
    background-color: #0e51ab;
    color: #fff;
    padding: 6px 0;
}
.topbar p {
    margin-bottom: 0;
}
.topbar-right ul {
    display: flex;
    column-gap: 35px;
}
.topbar-right ul li a {
    color: #fff;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
#topbar-text::after {
    content: "|";
    margin-left: 3px;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
header.main-header {
    position: absolute;
    top: 37px;
    width: 100%;
    z-index: 999;
    transition: all 0.5s;
}
.logo {
    max-width: 200px;
}
.logo img{
    filter: grayscale(100%) brightness(100);
    transition: all 0.5s;
}
.main-header.dark .logo img{
    filter: none;
}
.main-header.dark {
    background-color: #fff;
}
.main-header.dark .main-menu>ul>li {
    color: #000;
}
.main-header.dark .main-menu>ul>li>a {
    color: #000;
}
.main-menu>ul {
    display: flex;
    column-gap: 30px;
}
.main-menu>ul>li {
    display: flex;
    align-items: center;
    column-gap: 6px;
    padding: 32px 0;
    color: #fff;
}
.main-menu>ul>li svg {
    width: 14px;
    transition: all 0.5s;
    height: 14px;
    will-change: transform;
}
.main-menu>ul>li>a{
    color: #fff;
    font-weight: 500;
}
.main-menu>ul>li.dropdown {
    position: relative;
}
.sub-menu {
    position: absolute;
    width: 230px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
    padding: 12px 0;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}
.main-menu>ul>li:hover svg{
    transform: rotate(180deg);
}
.main-menu>ul>li.dropdown:hover .sub-menu{
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
.sub-menu ul li {
    padding: 0px 20px;
    position: relative;
}
.sub-menu ul li:last-child {
    border-bottom: 0;
}
.sub-menu ul li a {
    color: #000;
    font-weight: 500;
    width: 100%;
    padding: 6px 0;
    padding-right: 20px;
    display: inline-block;
    background-image: linear-gradient(transparent calc(100% - 0.5px), #0e51ab 1px);
    background-repeat: no-repeat;
    background-position-y: 0px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline forwards;
}
.sub-menu ul li::after {
    content: "";
}
.sub-menu ul li:hover a {
    color: #0e51ab;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
.sub-menu ul li::before {
    content: "\f061";
    color: #000;
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
.sub-menu ul li:hover::before{
    color: #0e51ab;
}
.mega-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
    padding: 0;
    margin: 0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0px 12px 13px 0px #00000026;
}
.main-menu>ul>li:hover .mega-menu{
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
.mega-menu-inner {
    padding: 24px;
}
.mega-tabs {
    display: flex;
    column-gap: 50px;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #6363636b;
}
.mega-tabs .tab-btn {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid #6363636b;
    transition: all 0.5s;
    border-radius: 6px;
    background-color: transparent;
    color: #636363;
    letter-spacing: 0.5px;
}
.mega-tabs .tab-btn.active {
    border-color: #0e51ab;
    background-color: #0e51ab;
    box-shadow: 0 0 18px 8px #0e51ab29;
    color: #fff;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.mega-row {
    display: flex;
    flex-wrap: wrap;
}
.mega-row h4 {
    margin-bottom: 12px;
    font-size: 20px;
}
.mega-row h4 a {
    color: #000;
}
.mega-row ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
}
.mega-row ul li a {
    color: #000;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}
.mega-row ul li::after {
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    font-size: 14px;
    color: #1e1e1e;
    transform: rotate(270deg);
}
.mega-row h4 a:hover {
    color: #0e51ab;
}
.mega-row ul li a:hover {
    color: #0e51ab;
}
.mega-row ul li a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #0e51ab6e;
    transition: all 0.5s;
}
.mega-row ul li a:hover::after {
    width: 100%;
}
/* .mega-col {
    width: 25%;
    padding: 30px;
    border-right: 1px solid #00000080;
    border-bottom: 1px solid #00000080;
}
.mega-col:nth-child(-n + 4) {
    padding-top: 0;
}
.mega-col:nth-child(1), .mega-col:nth-child(5), .mega-col:nth-child(9) {
    padding-left: 0;
}
.mega-col:nth-of-type(4n + 4) {
    border-right: 0;
    padding-right: 0;
}
.mega-col:last-child {
    border: none;
}
.mega-col:nth-last-child(-n+4) {
    border-bottom: 0;
} */
@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }

    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}
@keyframes underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }

    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}
.mega-tab-row {
    display: flex;
    column-gap: 30px;
}
.mega-menu-left {
    width: 35%;
    flex-shrink: 0;
    padding-top: 24px;
    border-right: 1px solid #6363636b;
}
.mega-menu-left ul li a {
    padding: 8px 20px;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    color: #000;
    font-size: 18px;
    align-items: center;
    font-weight: 500;
    border-bottom: 1px solid #c7d7ec;
}
.mega-menu-left ul li a span {
    opacity: 0;
    transition: all 0.5s;
}
.mega-menu-left ul li.active a span {
    opacity: 1;
    color: #0e51ab;
}
.mega-menu-left ul li.active a, .mega-menu-left ul li:hover a {
    color: #0e51ab;
    background-color: #0e51ab3b;
    padding-left: 20px;
}
.mega-menu-left ul li:last-child a {
    border-bottom: 0;
}
.mega-menu-right {
    padding-top: 24px;
}
.mega-menu-right ul{
    display: inline-flex ;
    flex-direction: column;
    row-gap: 4px;
}
.mega-menu-right ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
    display: inline-block;
    background-image: linear-gradient(transparent calc(100% - 0.5px), #0e51ab 1px);
    background-repeat: no-repeat;
    background-position-y: 0px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline forwards;
    width: max-content;
}
.mega-menu-right ul li a{
    color: #000;
    font-weight: 500;
    position: relative;
}
.mega-menu-right ul li:hover{
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
.mega-menu-right ul li a:hover{
    color: #0e51ab;
}
.mega-menu-right ul li::after {
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    font-size: 14px;
    color: #1e1e1e;
    transform: rotate(270deg);
}
.mega-menu-right ul li:hover::after{
    color: #0e51ab;
}
.mega-menu-buttom {
    margin-top: 30px;
}
.mega-menu-buttom span {
    color: #000;
    line-height: 1.3;
    display: inline-block;
}
.mega-menu-right-content {
    display: none;
}
.mega-menu-right-content.active{
    display: block;
}
/***********************
* hero
***********************/
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-box {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}
.hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270.2deg, rgba(0, 0, 0, 0) -6.22%, #001735 101.85%);
    background-color: #001735a3;
}
.hero-content, .hero-image{
    position: relative;
    z-index: 1;
    color: #fff;
}
.hero-content>span {
    margin-bottom: 12px;
    display: block;
    font-size: 18px;
}
.hero-content > * {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.6s ease;
}
.hero-content.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}
.hero-content.animate-out > * {
    opacity: 0;
    transform: translateY(-80px);
}
.hero-content.animate-in span { transition-delay: 0.2s; }
.hero-content.animate-in h1 { transition-delay: 0.4s; }
.hero-content.animate-in p { transition-delay: 0.6s; }
.hero-content.animate-in a { transition-delay: 0.8s; }
ul.slick-dots {
    display: flex;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    column-gap: 12px;
}
ul.slick-dots li button {
    font-size: 0;
    height: 16px;
    width: 16px;
    border: none;
    background-color: #fff;
    border-radius: 16px;
    transition: all 0.5s;
}
ul.slick-dots li.slick-active button {
    width: 40px;
}
.hero-content-title {
    padding-left: 32px;
    border-left: 8px solid #0e51ab;
}
.hero-content-title span {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.hero-content p {
    margin-bottom: 30px;
}
/***********************
* about
***********************/
.about-section {
    padding: 100px 0;
}

.heading-box {
    margin-bottom: 30px;
}
.heading-box .tagline {
    text-transform: uppercase;
    letter-spacing: 0.06rem;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    padding-left: 40px;
    position: relative;
}
.heading-box .tagline::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 30px;
    background-color: #0e51ab;
}
ul.about-list {
    margin-bottom: 30px;
}
ul.about-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    font-size: 18px;
}
ul.about-list li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
.about-image-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 12px;
    margin-right: 80px;
    /* margin-bottom: 30px; */
}

.about-revel{
    margin-bottom: 0px !important;
}
.about-image-2 {
    overflow: hidden;
    display: inline-block;
    border-radius: 12px;
    position: absolute;
    z-index: 1;
    width: 80%;
    right: 0;
    bottom: -70px;
}
.about-left {
    position: relative;
    margin-bottom: 50px;
}
.about-image-2 img {
    border-radius: 12px;
    border: 5px solid #fff;
}
.about-image-1 img {
    border-radius: 12px; 
}
.heading-box h2 {
    margin-bottom: 12px;
    font-size: 32px;
}
.heading-box.text-center .tagline::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 30px;
    background-color: #0e51ab;
}
.heading-box.text-center .tagline{
    padding-right: 40px;
}
.category-box {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.category-section {
    padding-bottom: 100px;
}
.category-image img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.category-details {
    background-color: #0e51ab;
    padding: 12px;
    height: 100%;
}
.category-image {
    position: relative;
    aspect-ratio: 4/5;
}
.category-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all .4s ease;
}
.category-box:hover .category-image::after{
    backdrop-filter: blur(4px);
    box-shadow: 2px 2px 100px 0px rgba(0, 0, 0, 0.1) inset;
}
.category-details h4 a {
    color: #fff;
}
a.link-btn {
    padding: 5px 0;
    color: #ffff;
    display: inline-flex;
    column-gap: 7px;
    position: relative;
}
.link-btn::after{
   content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: all 0.5s;
}
.mega-content .link-btn  {
    padding: 5px 0;
    color: #000;
    display: inline-flex;
    column-gap: 9px;
    position: relative;
    font-size: 15px;
}
.mega-content .link-btn::after{
   content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #000;
    transition: all 0.5s;
}
.link-btn:hover::after{
    width: calc(100% + 10px);
}
a.link-btn:hover span {
    transform: translateX(10px);
}
a.link-btn span {
    transition: all 0.5s;
}
.category-details h4 {
    margin-bottom: 2px;
    font-size: 18px;
}
/***********************
* industry
***********************/
.industry-section {
    position: relative;
    padding: 60px;
    border-radius: 20px;
    background-color: #0e51ab29;
    margin: 0 20px;
    overflow: hidden;
}
.logo-shape {
    position: absolute;
    bottom: -55px;
    left: 0;
    width: 30%;
    opacity: 0.2;
}
.industry-left {
    padding-right: 150px;
}
.industry-box {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed #0e51abc2;
    display: flex;
    column-gap: 35px;
    align-items: center;
    transition: all 0.5s;
}
.industry-box:hover {
    background-color: #0e51ab26;
}
.industry-box:last-child {
    margin-bottom: 0;
}
.industry-box-left {
    width: 40%;
    flex-shrink: 0;
}
.industry-box-left .icon {
    height: 80px;
    width: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(297deg, rgb(128 161 205) 0%, rgb(254 254 254 / 12%) 52%, rgb(14 81 171 / 43%) 100%);
}
.industry-box-left h4 {
    margin-bottom: 0;
    font-size: 20px;
}
ul.industry-list li {
    margin-bottom: 7px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}
ul.industry-list li::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/sparkler.svg);
    background-size: 20px;
}
/***********************
* why-choose
***********************/
.why-choose-section {
    padding: 100px 0;
    padding-bottom: 60px;
}
.why-choose-left {
    padding-right: 20px;
    height: 100%;
}
ul.why-choose-list li {
    margin-bottom: 7px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}
ul.why-choose-list li::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-image: url(../img/point-icon.svg);
    background-size: 20px;
}
ul.why-choose-list {
    margin-bottom: 30px;
}
.why-choose-right {
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.why-choose-right img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.why-choose-right:hover img {
    transform: scale(1.1);
}
.why-choose-lower {
    margin-top: 50px;
}
.why-choose-box {
    position: relative;
    margin: 0 0px 30px 118px;
    padding: 40px 0px 0px 40px;
    border-top: 1px solid #0e51ab;
    border-left: 1px solid #0e51ab;
    border-top-left-radius: 32px;
}
p.why-counter {
    position: absolute;
    left: -118px;
    top: 0;
    font-size: 42px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    color: #0e51ab;
    transition: all 0.5s;
}
.why-choose-box h4 {
    margin-bottom: 10px;
    font-weight: 600;
}
.why-choose-box p {
    margin-bottom: 0;
}
/***********************
* counter
***********************/
.counter-section {
    padding-bottom: 60px;
}
.counter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #0e51ab;
        border-radius: 12px;
}
.why-container-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25%;
    padding: 60px 50px 50px 50px;
    position: relative;
}
.why-container-box p:first-child {
    font-size: 50px;
    line-height: 1;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1px;
    font-weight: 700;
    font-family: sans-serif;
}
.why-container-box p:nth-child(2) {
    margin-bottom: 0;
    color: #fff;
}
span.count-separator {
    position: absolute;
    width: 10px;
    height: 90px;
    top: 50%;
    inset-inline-end: -5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.15;
}
.why-container-box:last-child span.count-separator {
    display: none;
}
/***********************
* testimonia
***********************/
.testimonia-section {
    position: relative;
    padding: 120px 0px;
    background: rgb(245, 247, 251);
    overflow: hidden;
}
.testimonia-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    filter: blur(80px);
    background: rgba(30, 90, 255, 0.08);
    border-radius: 50%;
}
.testimonia-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -180px;
    right: -180px;
    filter: blur(90px);
    background: rgba(0, 140, 255, 0.06);
    border-radius: 50%;
}
.testimonial-box {
    background-color: #fff;
    border-radius: 12px;
    height: 240px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.auther-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: end;
    justify-content: end;
    background-color: #d8e3f1;
    border-radius: 30px 0 0 0;
}
.auther-image::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -1px;
    height: 30px;
    width: 30px;
    background-color: transparent;
    background-image: radial-gradient(at top left, #FFFFFF00 70%, #d8e3f1 72%);
}
.auther-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -30px;
    height: 30px;
    width: 30px;
    background-color: transparent;
    background-image: radial-gradient(at top left, #FFFFFF00 70%, #d8e3f1 72%);
}
.testimonial-item {
    padding-right: 30px;
}
.auther-image img {
    width: 50px;
}
.testimonial-slider .slick-list {
    margin-left: 30px;
}
.testimonial-head {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-top: 20px;
}
.testimonial-box .icon {
    position: absolute;
    bottom: -10px;
    left: 63%;
    font-size: 60px;
    color: #0e51ab;
    opacity: 0.3;
}
.testimonial-head h4 {
    margin-bottom: 0;
    font-size: 20px;
}
.testimonial-head span {
    color: #555555;
    font-size: 14px;
}
.testimonial-box p {
    font-size:16px;
}
.testimonial-slider ul.slick-dots {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    justify-content: center;
    margin-top: 20px;
}
.testimonial-slider ul.slick-dots button{
    background-color: #0e51ab;
}
/***********************
* blog
***********************/
.blog-section {
    padding: 80px 0;
}
.heading-box-outer {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    align-items: end;
}
.heading-box-outer .heading-box {
    margin-bottom: 0;
}
.heading-box-outer .heading-box h2 {
    margin-bottom: 0;
}
.blog-image {
    overflow: hidden;
    position: relative;
}
.blog-date {
    width: 70px;
    height: 70px;
    background-color: #0e51ab;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    color: #fff;
}
.blog-date span {
    display: block;
    letter-spacing: 0;
    font-size: 20px;
    margin-bottom: 1px;
}
.blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.blog-image:hover img {
    transform: scale(1.1);
}
ul.blog-meta {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 5px;
    padding: 15px 0;
    margin-bottom: 0;
    padding-bottom: 10px;
}
ul.blog-meta li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
ul.blog-meta li p {
    margin-bottom: 0;
    color: #565656;
}
ul.blog-meta li i {
    color: #0e51ab;
}
.blog-box h4 a {
    color: #000;
}
.blog-box h4 a:hover {
    color: #0e51ab;
}
.blog-details h4 {
    font-size: 20px;
    margin-bottom: 12px;
}
.blog-details>p{
    color: #565656;
}
a.link-btn.dark {
    color: #000;
}
a.link-btn.dark::after {
    background-color:#000;
}
.blog-details {
    padding: 0 20px 20px;
}
.blog-box {
    height: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, .07);
}
/***********************
* cta
***********************/
.cta-section {
    position: relative;
    padding-bottom: 50px;
}
.cta-section::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(50% + 25px);
    background-color: #0e51ab29;
}
.cta-box {
    padding: 60px 30px;
    border-radius: 12px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 1;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0b1c32a6;
}
.cta-btn {
    display: flex;
    justify-content: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 10px;
}
/***********************
* footer
***********************/
.footer {
    padding-top: 150px;
        position: relative;
    background: #f7f9fc;
    overflow: hidden;
}
.footer::before {
         content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.footer-about {
    background-color: #fff;
    border-radius: 12px;
    margin-right: 40px;
    padding: 24px;
}
.footer-logo {
    margin-bottom: 30px;
    max-width: 210px;
}
.footer-link {
    display: flex;
    column-gap: 50px;
    justify-content: space-between;
}
.footer-contact ul li {
    margin-bottom: 12px;
    display: flex;
    column-gap: 12px;
    align-items: flex-start;
}
.footer-contact ul li span {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #0e51ab;
    color: #fff;
    position: relative;
    transition: all 0.5s;
}
.footer-contact ul li span::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
.footer-contact ul li span i {
    position: relative;
    z-index: 1;
}
.footer-contact ul li:hover span {
    color: #0e51ab;
}
.footer-contact ul li:hover span::after {
    transform: translate(-50%, -50%) scale(1);
}
.footer-contact ul li p {
    margin-bottom: 0;
}
.footer-contact ul li p a {
    color: #000;
    display: block;
    font-weight: 500;
}
.footer-contact ul li p a:hover{
    color: #0e51ab;
}
.footer-contact {
    max-width: 390px;
}
ul.footer-menu li {
    margin-bottom: 6px;
    list-style: disc;
    margin-left: 20px;
}
ul.footer-menu li a {
    color: #000;
    font-weight: 500;
    position: relative;
    font-size: 16px;
}
ul.footer-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    transition: all 0.5s;
    background-color: #0e51ab;
}
ul.footer-menu li a:hover::after {
    width: 100%;
}
ul.footer-menu li a:hover {
    color: #0e51ab;
}
.footer-lower {
    padding: 20px 0;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    position: relative;
}
.footer-lower p {
    margin-bottom: 0;
}
.footer-lower::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #0e51ab 54.95%, rgba(255, 255, 255, 0) 100%);
}
ul.social-media {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
ul.social-media li a{
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #0e51ab;
    color: #fff;
    position: relative;
}
ul.social-media li a::after{
     content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #fff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
ul.social-media li a i {
    position: relative;
    z-index: 1;
}
ul.social-media li a:hover {
    color: #0e51ab;
}
ul.social-media li a:hover::after {
    transform: translate(-50%, -50%) scale(1);
}
.submenu-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.submenu-left{
    width: 48%;
}

.submenu-left h3{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #111111;
    margin-bottom: 25px;
}

.submenu-left p{
    font-size: 15px;
    line-height: 1.4;
    color: #666666;
    margin-bottom: 15px;
    max-width: 700px;
}

.submenu-right{
    width: 40%;
}

.submenu-right ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.submenu-right ul li{
    margin-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

.submenu-right ul li:last-child{
    margin-bottom: 0;
}

.submenu-right ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu-right ul li a::after{
    content: "→";
    font-size: 20px;
    transition: all 0.3s ease;
}

.submenu-right ul li a:hover{
    color: #0B57D0;
    padding-left: 10px;
}

.submenu-right ul li a:hover::after{
    transform: translateX(8px);
}
.btn-link{
        line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
    transition: all 0.5s;
        width: fit-content;
}
.btn-link::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: red;
    transition: all 0.5s;  
}
/***********************
* page banner css
***********************/
.page-header-section {
    padding: 150px 0 180px;
    background-image: url(../images/banner-2.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: #fff;
}
ul.breadcrumb {
    column-gap: 30px;
    padding: 0;
    font-size: 18px;
    margin-bottom: 0;
    z-index: 1;
    position: relative;
    justify-content: center;
}
ul.breadcrumb li {
    position: relative;
}

ul.breadcrumb li a, ul.breadcrumb li span {
    color: #fff;
}
ul.breadcrumb li::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -20px;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: #fff;
}
.image-overlay-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270.2deg, rgba(0, 0, 0, 0) -6.22%, #001735 101.85%);
    background-color: #001735a3;
}
/* contact Details */
.karma-contact-strip{
    padding:80px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* Optional dotted wave bg effect */
.karma-contact-strip::before,
.karma-contact-strip::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border:2px dashed rgba(0,0,0,0.08);
    border-radius:50%;
    z-index:0;
}

.karma-contact-strip::before{
    left:-100px;
    top:-100px;
}

.karma-contact-strip::after{
    right:-100px;
    bottom:-100px;
}

.contact-strip-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.contact-strip-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:45px 30px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:.3s;
    text-align: center;
    flex-direction: column;
}

.contact-strip-item:hover{
    transform:translateY(-5px);
}

.icon-box{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#0e51ab;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.icon-box.dark{
    background:#111827;
}

.content span{
    display:block;
    font-size:16px;
    color:#777;
    margin-bottom:6px;
}

.content h4{
    font-size:20px;
    font-weight:500;
    color:#0b163f;
    margin:0;
}
.contact-strip-item a{
    color: #000 !important;
}
/* contact form */

.valve-contact-section{
    padding:100px 7%;
    position:relative;
    overflow:hidden;
    padding-top: 30px;
    padding-bottom: 90px;
}

.valve-contact-wrapper{
    display:flex;
    gap:70px;
    justify-content:space-between;
    flex-wrap:wrap;
}

/* LEFT SIDE */

.valve-left{
    flex:1;
    min-width:320px;
}

.valve-tag{
    color:#0D5BD7;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    gap:12px;
}

.valve-tag span{
    width:45px;
    height:4px;
    background:#0D5BD7;
    display:block;
    border-radius:20px;
}

.valve-left h2{
    font-size:30px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
    max-width:480px;
}

.valve-left p{
    font-size:18px;
    line-height:1.4;
    color:#555;
    max-width:760px;
    margin-bottom:25px;
}

/* FEATURES */

.valve-features{
    list-style:none;
    margin-bottom:35px;
}

.valve-features li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
    font-size:18px;
    color:#222;
}

.valve-features li i{
    color:#0D5BD7;
    margin-top:4px;
}

/* BUTTON */

.valve-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;
    background:#0D5BD7;
    color:#fff;
    text-decoration:none;
    padding:18px 32px;
    border-radius:60px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.valve-btn i{
    width:42px;
    height:42px;
    background:#fff;
    color:#0D5BD7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.valve-btn:hover{
    transform:translateY(-3px);
}

/* RIGHT SIDE FORM */

.valve-form-box{
    flex:1;
    min-width:760px;
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.valve-form-box h3{
    font-size:32px;
    margin-bottom:30px;
    font-weight:800;
}

.valve-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.valve-form .full{
    grid-column:1 / -1;
}

.valve-form input,
.valve-form textarea,
.valve-form select{
    width:100%;
    padding:18px 20px;
    border:none;
    background:#f8f8f8;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:0.3s;
}

.valve-form input:focus,
.valve-form textarea:focus,
.valve-form select:focus{
    border:2px solid #0D5BD7;
    background:#fff;
}

.valve-form textarea{
    height:150px;
    resize:none;
}

.valve-submit{
    background:#0D5BD7;
    color:#fff;
    border:none;
    padding:18px 30px;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.valve-submit:hover{
    background:#083f97;
}
.shiv-map-section{
    width:100%;
    position:relative;
    overflow:hidden;
}

.map-wrapper{
    width:100%;
    border-radius:0;
    line-height:0;
}

.map-wrapper iframe{
    width:100%;
    height:550px;
    display:block;
    filter:grayscale(0%);
}
.last-li::after{
    display: none;
}

.industries-section{
    position:relative;
    padding:100px 20px;
    overflow:hidden;
}

/* Background circles */

.industries-section::before,
.industries-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,0.7);
    z-index:0;
}

.industries-section::before{
    width:500px;
    height:500px;
    top:-250px;
    left:-150px;
}

.industries-section::after{
    width:600px;
    height:600px;
    right:-250px;
    top:120px;
}



/* Heading */

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header h2{
    font-size:40px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
    color:#111;
}

.section-header p{
    max-width:780px;
    margin:auto;
    font-size:16px;
    line-height:1.4;
    color:#666;
}

/* Reviews */

.review-wrapper{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-top:40px;
    flex-wrap:wrap;
}

.review-box{
    display:flex;
    align-items:center;
    gap:16px;
}

.review-box img{
    width:55px;
    height:55px;
}

.review-content h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:5px;
}

.review-content span{
    color:#666;
    font-size:18px;
}

/* Cards */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    background:#fff;
    border-radius:32px;
    padding:35px;
    position:relative;
    transition:0.4s ease;
    overflow:hidden;
    min-height:280px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    cursor:pointer;
}

/* Hover Animation */

.industry-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.industry-card::before{
    content:"";
    position:absolute;
    width:0%;
    height:100%;
    background:#0e51ab;
    left:0;
    top:0;
    z-index:0;
    transition:0.5s ease;
}

.industry-card:hover::before{
    width:100%;
}

.industry-card *{
    position:relative;
    z-index:2;
    transition:0.4s ease;
}

.industry-card:hover h3,
.industry-card:hover p{
    color:#fff;
}

.industry-card:hover .icon-box{
    background:#fff;
}

.industry-card:hover .icon-box svg{
    stroke:#0e51ab;
}

.industry-card:hover .arrow{
    color:#fff;
}

/* Icon */

.industry-card .icon-box{
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 0 0 4px #f9f9f9;
}

.industry-card .icon-box svg{
    width:30px;
    height:30px;
    stroke:#0e51ab;
}

/* Arrow */

.arrow{
    position:absolute;
    top:35px;
    right:35px;
    font-size:34px;
    color:#b7b7b7;
}

/* Content */

.industry-card h3{
    font-size:18px;
    margin-bottom:20px;
    font-weight:700;
    color:#111;
}

.industry-card p{
    font-size:16px;
    line-height:1.4;
    color:#666;
}

/* Responsive */

@media(max-width:1100px){

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:55px;
    }

}

@media(max-width:768px){

    .industries-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:42px;
    }

    .section-header p{
        font-size:18px;
    }

    .industry-card h3{
        font-size:30px;
    }

    .industry-card p{
        font-size:17px;
    }

}
/* SECTION */

.faq-section{
    position:relative;
    padding:100px 20px;
    overflow:hidden;
    background:#fff;
}

/* CONTAINER */

.faq-container{
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.faq-header{
    text-align:center;
    margin-bottom:50px;
}

.faq-header h2{
    font-size:32px;
    color:#000;
    font-weight:800;
    margin-bottom:15px;
}

.faq-header p{
    color:#000;
    font-size:20px;
}

/* BOX */

.faq-box{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* TAB BUTTONS */

.faq-tabs{
    display:flex;
    border-bottom:1px solid #ececec;
    overflow-x:auto;
}

.faq-tabs::-webkit-scrollbar{
    height:4px;
}

.faq-tab-btn{
    flex:1;
    padding:26px 20px;
    border:none;
    background:#fff;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#666;
    transition:0.3s;
    position:relative;
    white-space:nowrap;
}

.faq-tab-btn.active{
    color:#0e51ab;
}

.faq-tab-btn.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:#0e51ab;
}

.tab-count{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: #f8f8f8;
    color: #0e51ab;
    border-radius: 50%;
    font-size: 14px;
    margin-left: 8px;
}

/* TAB CONTENT */

.faq-tab-content{
    display:none;
    padding:20px 40px 40px;
}

.faq-tab-content.active{
    display:block;
}

/* FAQ ITEM */

.faq-item{
    border-bottom:1px solid #ececec;
    padding:10px 0;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    gap:20px;
}

.faq-question h3{
    font-size:18px;
    color:#111;
    font-weight:700;
    line-height:1.5;
    margin-bottom: 0px;
}

.faq-icon{
    font-size:26px;
    color:#0e51ab;
    transition:0.3s;
    flex-shrink:0;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

.faq-answer p{
    padding-top:0px;
    font-size:16px;
    line-height:1.4;
    color:#666;
    max-width:95%;
    margin-bottom:0px
}

/* ACTIVE FAQ */

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

/* HOVER */

.faq-item:hover .faq-question h3{
    color:#1f5eff;
}

/* RESPONSIVE */

@media(max-width:992px){

    .faq-header h2{
        font-size:44px;
    }

    .faq-question h3{
        font-size:20px;
    }

}

@media(max-width:768px){
    .faq-header h2{
        font-size:34px;
    }
    .faq-tab-content{
        padding:10px 20px 30px;
    }
    .faq-tab-btn{
        font-size:15px;
        padding:20px 16px;
    }
    .faq-question h3{
        font-size:18px;
    }
    .faq-answer p{
        font-size:16px;
    }

}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    position:relative;
    background:#f8f8f8;
    border-bottom-left-radius:80px;
    border-bottom-right-radius:80px;
    padding:80px 0;
    padding-bottom: 60px;
    overflow:hidden;
}

/* =========================
   HEADER
========================= */

.testimonial-header{
    text-align:center;
    margin-bottom:55px;
    padding:0 20px;
}

/* Badge */

.review-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#0e51ab;
    color:#fff;
    padding:14px 28px;
    border-radius:100px;
    font-size:17px;
    font-weight:600;
    margin-bottom:35px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.review-badge .star{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#3c52ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}

/* Heading */

.testimonial-header h2{
    font-size:32px;
    line-height:1.1;
    font-weight:800;
    color:#111;
    max-width:950px;
    margin:auto;
}

/* =========================
   MARQUEE
========================= */

.marquee-wrapper{
    overflow:hidden;
    position:relative;
    margin-bottom:30px;
}

.marquee-track{
    display:flex;
    width:max-content;
    gap:28px;
}

/* Left Animation */

.marquee-left .marquee-track{
    animation:scrollLeft 35s linear infinite;
}

/* Right Animation */

.marquee-right .marquee-track{
    animation:scrollRight 35s linear infinite;
}

/* Pause On Hover */

.marquee-wrapper:hover .marquee-track{
    animation-play-state:paused;
}

/* =========================
   CARD
========================= */

.testimonial-card{
    width: 390px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 25px;
    flex-shrink: 0;
    transition: 0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* Quote */

.quote{
    font-size:70px;
    line-height:1;
    color:#3c52ff;
    margin-bottom:0px;
    font-weight:800;
}

/* Text */

.testimonial-text{
    font-size: 16px;
    line-height: 1.4;
    color: #222;
    margin-bottom: 28px;
    font-weight: 500;
}

/* User */

.user-box{
    display:flex;
    align-items:center;
    gap:16px;
}

.user-box img{
    width:50px !important;
    height:50px !important;
    border-radius:50% !important;
    object-fit:cover;
}

.user-info h4{
    font-size:18px;
    color:#111;
    margin-bottom:5px;
    font-weight:700;
}

.user-info p{
    color:#8d8d8d;
    font-size:14px;
}

/* =========================
   ANIMATION
========================= */

@keyframes scrollLeft{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@keyframes scrollRight{

    0%{
        transform:translateX(-50%);
    }

    100%{
        transform:translateX(0);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .testimonial-card{
        width:360px;
    }

    .testimonial-text{
        font-size:20px;
    }

}

@media(max-width:768px){

    .testimonial-section{
        border-radius:0;
        padding:70px 0;
    }

    .testimonial-header h2{
        font-size:38px;
    }

    .review-badge{
        font-size:14px;
        padding:12px 20px;
    }

    .testimonial-card{
        width:300px;
        padding:28px;
    }

    .testimonial-text{
        font-size:17px;
    }

    .user-info h4{
        font-size:20px;
    }

}
.container-fluid{
    width: 1400px;
}
/* =========================
   KARMA WHY SECTION
========================= */

.karma-why-section{
    position:relative;
    padding:80px 0;
    background:#f5f7fb;
    overflow:hidden;
}

/* Background Glow */

.karma-why-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(30,90,255,0.08);
    border-radius:50%;
    top:-200px;
    left:-200px;
    filter:blur(80px);
}

.karma-why-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(0,140,255,0.06);
    border-radius:50%;
    bottom:-180px;
    right:-180px;
    filter:blur(90px);
}


/* Heading */

.karma-heading{
    text-align:center;
    max-width:800px;
    margin:auto auto 70px;
}

.karma-heading .sub-title{
    display:inline-block;
    padding:10px 22px;
    background:rgba(29,78,216,0.08);
    border:1px solid rgba(29,78,216,0.12);
    color:#1d4ed8;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.karma-heading h2{
    font-size:32px;
    line-height:1.1;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

.karma-heading h2 span{
    color:#1d4ed8;
}

.karma-heading p{
    font-size:16px;
    line-height:1.4;
    color:#6b7280;
}

/* Grid */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Cards */

.why-card{
    position:relative;
    padding:50px;
    border-radius:12px;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.4);
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 60px rgba(29,78,216,0.12);
}

.card-number{
    position:absolute;
    top:35px;
    right:40px;
    font-size:70px;
    font-weight:700;
    color:rgba(29,78,216,0.08);
    line-height:1;
}

.card-icon{
    width:80px;
    height:80px;
    border-radius:24px;
    background:#1d4ed8;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:35px;
    box-shadow:0 15px 35px rgba(29,78,216,0.25);
}

.why-card h3{
    font-size:26px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
    line-height:1.2;
}

.why-card p{
    font-size:16px;
    line-height:1.4;
    color:#6b7280;
    max-width:500px;
}

/* Hover Border Animation */

.why-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:30px;
    padding:1px;
    background:linear-gradient(135deg,transparent,rgba(29,78,216,0.3),transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

/* Responsive */

@media(max-width:991px){

    .karma-heading h2{
        font-size:48px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:40px;
    }

    .why-card h3{
        font-size:32px;
    }
}

@media(max-width:767px){

    .karma-why-section{
        padding:80px 0;
    }

    .karma-heading h2{
        font-size:36px;
    }

    .karma-heading p{
        font-size:16px;
    }

    .why-card{
        padding:35px 25px;
        border-radius:24px;
    }

    .card-number{
        font-size:50px;
        top:20px;
        right:25px;
    }

    .card-icon{
        width:65px;
        height:65px;
        font-size:26px;
        border-radius:18px;
    }

    .why-card h3{
        font-size:28px;
    }
}
/* =========================
   TEAM HERO
========================= */

.team-hero-section{
    padding:140px 0 120px;
    background:linear-gradient(135deg,#081f4d,#0f3d91);
    overflow:hidden;
    text-align:center;
    color:#fff;
}

.team-hero-content{
    max-width:850px;
    margin:auto;
    position:relative;
    z-index:2;
}

.sub-title,
.small-title{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.1);
    color:#fff;
    font-size:16px;
    font-weight:600;
    margin-bottom:5px;
}

.team-hero-content h1{
    font-size:74px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.team-hero-content h1 span{
    color:#60a5fa;
}

.team-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#dbeafe;
}

.shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
}

.shape1{
    width:350px;
    height:350px;
    background:rgba(96,165,250,0.25);
    top:-120px;
    left:-100px;
}

.shape2{
    width:400px;
    height:400px;
    background:rgba(59,130,246,0.2);
    bottom:-180px;
    right:-120px;
}

/* =========================
   TEAM SECTION
========================= */

.main-team-section{
    padding:80px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:32px;
    margin-top:10px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.team-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 15px 50px rgba(0,0,0,0.05);
}

.team-card:hover{
    transform:translateY(-12px);
}

.featured-card{
    transform:translateY(-25px);
    background:linear-gradient(180deg,#0f3d91,#1d4ed8);
}

.featured-card .team-content h3,
.featured-card .team-content p,
.featured-card .team-role{
    color:#fff;
}

.team-image{
    height:360px;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.team-card:hover img{
    transform:scale(1.08);
}

.team-content{
    padding:40px;
}

.team-role{
    color:#1d4ed8;
    font-weight:500;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.team-content h3{
    font-size:24px;
    margin:0px;
}

.team-content p{
    color:#6b7280;
    line-height:1.5;
    margin-bottom:0px;
    font-size: 16px;
    margin-top: 12px;
}

.team-social{
    display:flex;
    gap:15px;
}

.team-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#f3f4f6;
    color:#1d4ed8;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.3s;
}

.team-social a:hover{
    background:#1d4ed8;
    color:#fff;
}

/* =========================
   STATS
========================= */

.team-stats-section{
    padding-bottom:120px;
}

.stats-wrapper{
    background:linear-gradient(135deg,#0f3d91,#2563eb);
    border-radius:35px;
    padding:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
    color:#fff;
}

.stat-box h3{
    font-size:64px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:#dbeafe;
}

/* =========================
   CULTURE SECTION
========================= */

.work-culture-section{
    padding:120px 0;
}

.culture-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.culture-image img{
    width:100%;
    border-radius:35px;
}

.culture-content h2{
    font-size:58px;
    line-height:1.2;
    margin:20px 0 25px;
}

.culture-content p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:35px;
}

.culture-points{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.point{
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    font-weight:500;
}

.point i{
    color:#1d4ed8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .team-grid,
    .stats-wrapper,
    .culture-grid{
        grid-template-columns:1fr;
    }

    .featured-card{
        transform:none;
    }

    .team-hero-content h1{
        font-size:54px;
    }

    .section-heading h2,
    .culture-content h2{
        font-size:42px;
    }
}

@media(max-width:767px){

    .team-hero-section{
        padding:100px 0;
    }

    .team-hero-content h1{
        font-size:40px;
    }

    .section-heading h2,
    .culture-content h2{
        font-size:34px;
    }

    .team-content{
        padding:30px 25px;
    }

    .team-content h3{
        font-size:28px;
    }

    .stats-wrapper{
        padding:50px 30px;
    }

    .stat-box h3{
        font-size:48px;
    }
}
/* =========================
   TEAM VALUES SECTION
========================= */

.team-values-section{
    padding:80px 0;
    background:#f5f7fb;
    position:relative;
    overflow:hidden;
}

/* Background Glow */

.team-values-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(29,78,216,0.08);
    border-radius:50%;
    top:-200px;
    left:-150px;
    filter:blur(90px);
}

.team-values-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(59,130,246,0.06);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
    filter:blur(80px);
}

.team-values-section .container{
    width:90%;
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Heading */

.values-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 70px;
}

.small-title{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(29,78,216,0.08);
    color:#1d4ed8;
    font-size:14px;
    font-weight:600;
    margin-bottom:5px;
}

.values-heading h2{
    font-size:32px;
    line-height:1.1;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

.values-heading h2 span{
    color:#1d4ed8;
}

.values-heading p{
    font-size:18px;
    line-height:1.4;
    color:#6b7280;
}

/* Grid */

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.value-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.5);
    border-radius:12px;
    padding:50px 35px;
    text-align:center;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.04);
    position:relative;
    overflow:hidden;
}

.value-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 60px rgba(29,78,216,0.12);
}


/* Icon */

.value-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#1d4ed8;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 30px;
    font-size:28px;
    box-shadow:0 15px 35px rgba(29,78,216,0.25);
}

/* Text */

.value-card h3{
    font-size:22px;
    line-height:1.3;
    margin-bottom:12px;
    color:#111827;
}

.value-card p{
    color:#6b7280;
    font-size:16px;
    line-height:1.4;
}

/* Hover Border */

.value-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:12px;
    padding:1px;
    background:linear-gradient(135deg,transparent,rgba(29,78,216,0.25),transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
}

/* Responsive */

@media(max-width:991px){

    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .values-heading h2{
        font-size:48px;
    }
}

@media(max-width:767px){

    .team-values-section{
        padding:80px 0;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .values-heading h2{
        font-size:36px;
    }

    .value-card{
        padding:40px 25px;
    }

    .value-card h3{
        font-size:28px;
    }

    .value-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }
}
/* =========================
   MISSION VISION SECTION
========================= */

.mission-vision-section{
    padding:80px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

/* Background Glow */

.mission-vision-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(37,99,235,0.08);
    border-radius:50%;
    top:-180px;
    left:-150px;
    filter:blur(90px);
}

.mission-vision-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(29,78,216,0.06);
    border-radius:50%;
    bottom:-150px;
    right:-120px;
    filter:blur(80px);
}

.mission-vision-section .container{
    width:90%;
    max-width:1350px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Heading */

.mv-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 60px;
}

.sub-title{
    display:inline-block;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:5px;
}

.mv-heading h2{
    font-size:32px;
    line-height:1.1;
    color:#111827;
    margin-bottom:25px;
    font-weight:700;
}

.mv-heading h2 span{
    color:#2563eb;
}

.mv-heading p{
    color:#6b7280;
    font-size:18px;
    line-height:1.9;
}

/* Grid */

.mv-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* Card */

.mv-card{
    background:linear-gradient(180deg,#0f3d91,#1d4ed8);
    border-radius:12px;
    padding:45px 40px;
    color:#fff;
    position:relative;
    overflow:hidden;
    min-height:520px;
    transition:0.4s ease;
    box-shadow:0 20px 50px rgba(29,78,216,0.15);
}

.mv-card:hover{
    transform:translateY(-10px);
}

/* Featured Card */

.active-card{
    background:linear-gradient(180deg,#081f4d,#2563eb);
}

/* Glow Effect */

.mv-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

/* Icon */

.mv-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:35px;
    backdrop-filter:blur(10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* Text */

.mv-card h3{
    font-size:26px;
    margin-bottom:25px;
    line-height:1.2;
}

.mv-card p{
    font-size:18px;
    line-height:1.4;
    color:#e5edff;
}

/* Values */

.values-list{
    margin:0;
    padding-left:22px;
}

.values-list li{
    margin-bottom: 15px;
    line-height: 1.4;
    list-style: disc;
    font-size: 18px;
}

.values-list strong{
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

   .mv-grid {
    grid-template-columns: repeat(2,1fr);
}

    .active-card{
        transform:none;
    }

    .mv-heading h2{
        font-size:48px;
    }

    .mv-card{
        min-height:auto;
    }
}

@media(max-width:767px){

    .mission-vision-section{
        padding:80px 0;
    }

    .mv-heading h2{
        font-size:36px;
    }

    .mv-heading p{
        font-size:16px;
    }

    .mv-card{
        padding:35px 25px;
        border-radius:28px;
    }

    .mv-card h3{
        font-size:30px;
    }

    .mv-card p,
    .values-list li{
        font-size:16px;
    }

    .mv-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }
}
/* =========================
   SECTION
========================= */

.next-industrial-section{
    position:relative;
    padding:120px 0;
    background:#f7f9fc;
    overflow:hidden;
}

/* Light Grid */

.next-industrial-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size:60px 60px;
    z-index:0;
}

.next-industrial-section .container{
    width:90%;
    max-width:1320px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================
   LAYOUT
========================= */

.industrial-layout{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:70px;
    align-items:center;
}

/* =========================
   LEFT CONTENT
========================= */

.industrial-left{
    position:relative;
    z-index:2;
}

.section-tag{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:#2563eb;
    margin-bottom:18px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.industrial-left h2{
    font-size:32px;
    line-height:1.08;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

.main-description{
    font-size:16px;
    line-height:1.4;
    color:#6b7280;
    margin-bottom:40px;
}

/* Features */

.feature-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateX(8px);
}

.feature-icon{
    min-width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.feature-content h4{
    font-size:20px;
    margin-bottom:8px;
    color:#111827;
}

.feature-content p{
    font-size:16px;
    line-height:1.4;
    color:#6b7280;
}

/* Buttons */

.industrial-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
}


.secondary-btn{
    padding:16px 32px;
    border:1px solid #dbe3f1;
    color:#111827;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    background:#fff;
}

/* =========================
   RIGHT IMAGE
========================= */

.industrial-right{
    position:relative;
}

/* Main Image */

.main-image-card{
    position:relative;
    border-radius:12px;
    overflow:hidden;
    height:900px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.main-image-card img{
    width:100%;
    height:100% !important;
    object-fit:cover;
}

/* Floating Left Card */

.floating-info{
    position:absolute;
    left:30px;
    bottom:30px;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    color:#fff;
    padding:30px;
    border-radius:28px;
    width:220px;
    z-index:2;
    box-shadow:0 20px 40px rgba(37,99,235,0.25);
}

.floating-info h3{
    font-size:54px;
    margin-bottom:10px;
}

.floating-info p{
    font-size:16px;
    line-height:1.6;
}

/* Floating Right Card */

.glass-card{
    position:absolute;
    right:-40px;
    bottom:50px;
    width:300px;
    padding:28px;
    background:rgba(255,255,255,0.95);
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    z-index:2;
}

.glass-card h4{
    font-size:28px;
    line-height:1.2;
    margin:15px 0 12px;
    color:#111827;
}

.glass-card p{
    color:#6b7280;
    line-height:1.7;
}

.glass-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .industrial-layout{
        grid-template-columns:1fr;
    }

    .industrial-left h2{
        font-size:46px;
    }

    .main-image-card{
        height:520px;
    }

    .glass-card{
        right:20px;
    }
}

@media(max-width:767px){

    .next-industrial-section{
        padding:80px 0;
    }

    .industrial-left h2{
        font-size:34px;
    }

    .feature-card{
        flex-direction:column;
    }

    .industrial-buttons{
        flex-direction:column;
    }

    .main-image-card{
        height:400px;
        border-radius:28px;
    }

    .floating-info{
        width:170px;
        padding:20px;
    }

    .floating-info h3{
        font-size:38px;
    }

    .glass-card{
        position:relative;
        width:100%;
        right:0;
        bottom:auto;
        margin-top:20px;
    }
}
/* =========================
   NEW FLOATING STATS
========================= */

.floating-stats{
    position:absolute;
    left:40px;
    bottom:40px;
    display:flex;
    align-items:center;
    gap:25px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(16px);
    padding:28px 32px;
    border-radius:30px;
    width:420px;
    box-shadow:
    0 20px 60px rgba(0,0,0,0.08),
    0 10px 40px rgba(37,99,235,0.10);
    z-index:5;
}

/* Number */

.stat-number{
    min-width:120px;
    height:120px;
    border-radius:28px;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:52px;
    font-weight:700;
    box-shadow:0 15px 40px rgba(37,99,235,0.25);
}

/* Content */

.stat-content h4{
    font-size:24px;
    line-height:1.2;
    color:#111827;
    margin-bottom:12px;
}

.stat-content p{
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
}

/* =========================
   MINI BADGE
========================= */

.mini-badge{
    position:absolute;
    top:40px;
    right:-30px;
    display:flex;
    align-items:center;
    gap:14px;
    background:#2563eb;
    color:#fff;
    padding:18px 24px;
    border-radius:18px;
    font-weight:600;
    box-shadow:0 20px 40px rgba(37,99,235,0.25);
    z-index:5;
}

.mini-badge i{
    width:45px;
    height:45px;
    border-radius:14px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/* =========================
   IMAGE CARD
========================= */

.main-image-card{
    position:relative;
    border-radius:12px;
    overflow:hidden;
    height:900px;
    box-shadow:
    0 30px 80px rgba(0,0,0,0.08),
    0 10px 40px rgba(37,99,235,0.08);
}

.main-image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Overlay */

.main-image-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.25),
    transparent 50%);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .floating-stats {
    width: 480px;
}

    .mini-badge{
        right:20px;
    }
}

@media(max-width:767px){

    .floating-stats{
        position:relative;
        left:auto;
        bottom:auto;
        width:100%;
        margin-top:20px;
        flex-direction:column;
        align-items:flex-start;
    }

    .stat-number{
        width:100px;
        height:100px;
        font-size:42px;
    }

    .mini-badge{
        position:absolute;
        top:20px;
        right:20px;
        padding:14px 18px;
        font-size:14px;
    }

    .main-image-card{
        height:420px;
        border-radius:30px;
    }
}
/* =========================
   INDUSTRIAL POLICY SECTION
========================= */

.industrial-policy-section{
    position:relative;
    padding:140px 0 120px;
    overflow:hidden;
    background:#081b38;
}

/* Background */

.policy-bg{
    position:absolute;
    inset:0;
}

.policy-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.policy-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    135deg,
    rgba(7,21,47,0.92),
    rgba(15,61,145,0.82)
    );
}

/* Grid Overlay */

.industrial-policy-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size:70px 70px;
}

/* Container */

.industrial-policy-section .container{
    width:90%;
    max-width:1350px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================
   TOP WRAPPER
========================= */

.policy-top-wrapper{
    display:grid;
    grid-template-columns:1fr 500px;
    gap:20px;
    align-items:center;
    margin-bottom:100px;
}

/* Left Content */

.section-subtitle{
    display:inline-block;
    color:#60a5fa;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.policy-content h2{
    font-size:32px;
    line-height:1.05;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
    max-width:700px;
}

.policy-content p{
    color:#dbeafe;
    font-size:16px;
    line-height:1.4;
    max-width:650px;
}

/* =========================
   STATS
========================= */

.policy-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.stat-box{
    padding:40px 65px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.1);
    text-align:center;
    transition:0.4s ease;
}

.stat-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
}

.stat-box h3{
    font-size:52px;
    color:#fff;
    margin-bottom:10px;
}

.stat-box p{
    color:#dbeafe;
    font-size:16px;
}

/* =========================
   BOTTOM GRID
========================= */

.policy-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* Cards */

.policy-card{
    position:relative;
    padding:45px 35px;
    border-radius:12px;
    background:#fff;
    transition:0.4s ease;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.policy-card:hover{
    transform:translateY(-10px);
}


/* Top Glow */

.policy-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
}

/* Icon */

.card-icon{
    width:70px;
    height:70px;
    border-radius:12px;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
    box-shadow:0 15px 35px rgba(37,99,235,0.25);
}

.active-card .card-icon{
    background:rgba(255,255,255,0.12);
}

/* Text */

.policy-card h3{
    font-size:18px;
    line-height:1.2;
    margin-bottom:18px;
    color:#111827;
}

.policy-card p{
    color:#6b7280;
    line-height:1.4;
    margin-bottom:30px;
    font-size:16px;
}

/* Link */

.policy-card a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .policy-top-wrapper{
        grid-template-columns:1fr;
    }

    .policy-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .policy-content h2{
        font-size:50px;
    }
}

@media(max-width:767px){

    .industrial-policy-section{
        padding:90px 0;
    }

    .policy-grid,
    .policy-stats{
        grid-template-columns:1fr;
    }

    .policy-content h2{
        font-size:36px;
    }

    .policy-card{
        padding:35px 25px;
    }

    .policy-card h3{
        font-size:26px;
    }

    .card-icon{
        width:70px;
        height:70px;
        font-size:26px;
    }
}

.industry-section{
    position:relative;
    padding:120px 0;
    background:#f7f9fc;
    overflow:hidden;
}

/* Light Grid */

.industry-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size:60px 60px;
    z-index:0;
}

.industry-section .container{
    width:90%;
    max-width:1320px;
    margin:auto;
    position:relative;
    z-index:2;
}
.footer-links {
    display: flex;
    gap: 5px;
}
.fade-anim{
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px, 0px);
    opacity: 1;
}
.wpcf7-form p{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.wpcf7-form input, .wpcf7-form textarea, .wpcf7-form select{
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: #f8f8f8;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}
span.wpcf7-form-control-wrap[data-name="text-93"]{
    grid-column: 1 / -1 !important;
    width:100%;
}
span.wpcf7-form-control-wrap[data-name="textarea-796"]{
    grid-column: 1 / -1 !important;
    width:100%;
}
.form-btn{
    background: #0e51ab !important;
    color: #fff !important;
    font-weight: 600;
}
/* =========================
   MEGA MENU BUTTON
========================= */

.mega-menu-btn{
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    padding: 4px;
    padding-left: 20px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 16px;
    font-weight: 400;
    background: #0e51ab;
    color: #fff;
    margin-top: 10px;
}
.mega-menu-btn .btn-text{
    line-height: 1.3;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 #fff, 0 22px #fff;
    transition: text-shadow 0.5s ease-in-out;
    color: transparent;
    overflow: hidden;
}
.mega-menu-btn .btn-icon{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    color: #fff;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    width: 35px;
    z-index: 1;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    font-size: 16px;
    line-height: 1;
    position: relative;
}
.mega-menu-btn i{
   transform: rotate(-45deg);
   color: #000;
 }   
.mega-menu-btn:hover i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
        transition: all 0.5s;
}

 /* PRODUCT RANGE SECTION */

    .product-range-section{
        padding:100px 0px;
        background:#fff;
        overflow:hidden;
    }

    .range-container{
        max-width:1500px;
        margin:auto;
    }

    /* TOP */

    .range-top{
        display:flex;
        justify-content:space-between;
        align-items:start;
        gap:80px;
        margin-bottom:60px;
    }

    .range-heading{
        width:50%;
    }

    .range-subtitle{
        display:inline-block;
        color:#3f7cff;
        font-size:16px;
        font-weight:700;
        letter-spacing:1px;
        margin-bottom:8px;
        position:relative;
        padding-left:75px;
    }

    .range-subtitle::before{
        content:'';
        position:absolute;
        left:0;
        top:50%;
        transform:translateY(-50%);
        width:55px;
        height:3px;
        background:#3f7cff;
    }

    .range-heading h2{
        font-size:32px;
        line-height:1.15;
        color:#101828;
        font-weight:700;
    }

    .range-description{
        width:42%;
    }

    .range-description p{
        font-size:16px;
        line-height:1.4;
        color:#667085;
    }

    /* GRID */

    .product-range-grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:35px;
    }

    /* CARD */

    .range-product-card{
        position:relative;
        background:#ffffff;
        border-radius:12px;
        overflow:hidden;
        transition:0.5s;
        box-shadow:0 15px 60px rgba(0,0,0,0.06);
    }

    .range-product-card:hover{
        transform:translateY(-12px);
    }

    .range-product-card::before{
        content:'';
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:5px;
        background:#3f7cff;
    }

    /* ACTIVE CARD */

    .active-card{
        background:linear-gradient(180deg,#0b1d43,#153b87);
    }

    .active-card h3,
    .active-card p,
    .active-card a,
    .active-card .product-number{
        color:#fff !important;
    }

    /* IMAGE */

    .product-image{
        position:relative;
        text-align:center;
    }

    .product-image::after{
        content:'';
        position:absolute;
        bottom:0;
        left:50%;
        transform:translateX(-50%);
        width:85%;
        height:40px;
        background:rgba(0,0,0,0.08);
        filter:blur(18px);
        border-radius:50%;
    }

    .product-image img{
        width:100% !important;
        max-width:320px !important;
        height:320px !important;
        object-fit:contain;
        position:relative;
        z-index:2;
        transition:0.5s;
    }

    .range-product-card:hover .product-image img{
        transform:translateY(-12px) scale(1.04);
    }

    /* CONTENT */

    .product-content{
        padding:40px;
    }

    .product-number{
        font-size:18px;
        font-weight:700;
        color:#3f7cff;
        margin-bottom:18px;
        display:inline-block;
    }

    .product-content h3{
        font-size:22px;
        line-height:1.3;
        margin-bottom:15px;
        color:#111827;
    }

    .product-content p{
        font-size:16px;
        line-height:1.5;
        color:#667085;
        margin-bottom:20px;
    }

    .product-content a{
        display:inline-flex;
        align-items:center;
        gap:10px;
        text-decoration:none;
        color:#3f7cff;
        font-size:18px;
        font-weight:700;
        transition:0.4s;
    }

    .product-content a:hover{
        gap:18px;
    }

    /* ADD THIS CSS */

    .range-product-card{
        opacity:0;
        transform:translateY(80px);
        animation:cardReveal 1s ease forwards;
    }

    /* DELAY */

    .range-product-card:nth-child(1){
        animation-delay:0.2s;
    }

    .range-product-card:nth-child(2){
        animation-delay:0.5s;
    }

    .range-product-card:nth-child(3){
        animation-delay:0.8s;
    }

    /* SCROLL ANIMATION */

    @keyframes cardReveal{

        0%{
            opacity:0;
            transform:translateY(80px) scale(0.95);
        }

        50%{
            opacity:0.5;
        }

        100%{
            opacity:1;
            transform:translateY(0) scale(1);
        }

    }

    /* HOVER EFFECT */

    .range-product-card:hover{
        transform:translateY(-15px);
        box-shadow:0 30px 80px rgba(0,0,0,0.12);
    }

    /* IMAGE FLOAT */

    .product-image img{
        animation:floatImage 4s ease-in-out infinite;
    }

    @keyframes floatImage{

        0%{
            transform:translateY(0px);
        }

        50%{
            transform:translateY(-12px);
        }

        100%{
            transform:translateY(0px);
        }

    }

    /* ACTIVE CARD GLOW */

    .active-card{
        position:relative;
        overflow:hidden;
    }

    .active-card::after{
        content:'';
        position:absolute;
        top:-120%;
        left:-40%;
        width:180%;
        height:180%;
        background:linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.12),
            transparent
        );
        transform:rotate(20deg);
        animation:shine 5s linear infinite;
    }

    @keyframes shine{

        0%{
            top:-120%;
            left:-40%;
        }

        100%{
            top:120%;
            left:60%;
        }

    }
    /* PREMIUM HOVER EFFECT */

    .range-product-card{
        position:relative;
        overflow:hidden;
        background:#fff;
        border-radius:12px;
        min-height:520px;
        transition:0.7s cubic-bezier(0.22,1,0.36,1);
        box-shadow:0 20px 60px rgba(0,0,0,0.08);
        isolation:isolate;
    }

    /* GLOW EFFECT */

    .range-product-card::before{
        content:'';
        position:absolute;
        inset:-2px;
        background:linear-gradient(
            135deg,
            rgba(63,124,255,0.4),
            rgba(255,30,45,0.25),
            transparent
        );
        opacity:0;
        transition:0.7s ease;
        z-index:-1;
        filter:blur(25px);
    }

    .range-product-card:hover::before{
        opacity:1;
    }

    /* FRONT */

    .card-front{
        position:absolute;
        inset:0;
        padding:45px 35px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
        align-items:center;
        background:#fff;
        transition:
            transform 0.8s cubic-bezier(0.22,1,0.36,1),
            opacity 0.5s ease;
    }

    /* HOVER PANEL */
    .card-hover .card-line{
        background: #dad8d8;
    }
    .card-hover{
        position:absolute;
        inset:0;
        background:
        linear-gradient(
            180deg,
            rgba(11,29,67,0.96),
            rgba(23,59,135,0.97)
        );
        backdrop-filter:blur(12px);

        color:#fff;
        padding:45px 40px;

        display:flex;
        flex-direction:column;
        justify-content:space-between;

        opacity:0;
        transform:
            translateY(40px)
            scale(0.96);

        transition:
            transform 0.8s cubic-bezier(0.22,1,0.36,1),
            opacity 0.5s ease;
    }

    /* SMOOTH REVEAL */

    .range-product-card:hover .card-front{
        transform:
            translateY(-60px)
            scale(0.92)
            rotateX(10deg);

        opacity:0;
    }

    .range-product-card:hover .card-hover{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
    }

    /* CARD LIFT */

    .range-product-card:hover{
        transform:
            translateY(-18px)
            scale(1.02);

        box-shadow:
            0 35px 90px rgba(0,0,0,0.18);
    }

    /* PRODUCT IMAGE FLOAT */

    .product-image{
        position:relative;
    }

    .product-image img{
        width:100%;
        max-width:320px;
        height:320px;
        object-fit:contain;
        transition:1s cubic-bezier(0.22,1,0.36,1);
        position:relative;
        z-index:2;
    }

    /* IMAGE ANIMATION */

    .range-product-card:hover .product-image img{
        transform:
            translateY(-18px)
            scale(1.08)
            rotate(-2deg);
    }

    /* SHADOW */

    .product-image::after{
        content:'';
        position:absolute;
        left:50%;
        bottom:10px;
        transform:translateX(-50%);
        width:80%;
        height:35px;
        background:rgba(0,0,0,0.12);
        filter:blur(18px);
        border-radius:50%;
        transition:0.7s ease;
    }

    .range-product-card:hover .product-image::after{
        width:65%;
        opacity:0.7;
    }

    /* TITLE */

    .card-front h3,
    .card-hover h3{
        font-size:20px;
        line-height:1.3;
        text-align:center;
        margin-bottom:7px;
        font-weight:600;
    }

    /* LINE */

    .card-line{
        width:130px;
        height:3px;
        border-radius:12px;
        background:linear-gradient(180deg,#0f3d91,#1d4ed8);
        margin:0 auto 28px;
        transition:0.6s ease;
    }

    .range-product-card:hover .card-line{
        width:170px;
    }

    /* USED FOR */

    .used-for h4{
        font-size: 20px;
        margin-bottom: 28px;
        color: #fff;
    }

    .used-for ul{
        list-style:none;
        padding:0;
        margin:0;
    }

    .used-for ul li{
        position: relative;
        padding-left: 34px;
        margin-bottom: 15px;
        font-size: 18px;
        line-height: 1.7;
        color: #eef3ff;
        transition: 0.4s ease;
    }

    .used-for ul li:hover{
        transform:translateX(8px);
    }

    .used-for ul li::before{
        content: '';
        position: absolute;
        left: 0;
        top: 13px;
        width: 12px;
        height: 12px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 5px rgb(244 233 234 / 18%);
    }

    /* BUTTON */

    .hover-btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 14px 24px;
        background: #fff;
        color: #fff;
        text-decoration: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        transition: 0.5s ease;
        color: #2563eb !important;
    }

    .hover-btn:hover{
        transform:
            translateY(-6px)
            scale(1.04);

        box-shadow:
            0 18px 35px rgb(239 238 238 / 35%)
    }

.valve-info-section{
    position: relative;
    padding: 120px 0;
    background: #f7f9fc;
    overflow: hidden;
}
section.valve-info-section:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}
.valve-info-container{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:70px;
}

/* LEFT */

.section-tag{
    display:inline-block;
    padding:14px 28px;
    border-radius:50px;
    background:#2f6df6;
    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:28px;
}

.info-left h2{
    font-size:28px;
    line-height:1.15;
    color:#111827;
    margin-bottom:24px;
    margin-top:24px;

    font-weight:700;
}

.main-text{
    font-size:18px;
    line-height:1.5;
    color:#5b6475;
    margin-bottom:40px;
}

/* FEATURE GRID */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.feature-card{
    background:#ffffff;
    border-radius:28px;
    padding:30px 20px;
    display:flex;
    align-items:flex-start;
    gap:22px;
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
    transition:0.5s ease;
    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#2f6df6;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
}

.feature-icon{
    min-width:60px;
    height:60px;
    border-radius:18px;
    background:#2f6df6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.feature-content h3{
    font-size:18px;
    line-height:1.4;
    margin-bottom:10px;
    color:#111827;
}

.feature-content p{
    font-size:16px;
    line-height:1.5;
    color:#667085;
}

/* RIGHT */

.info-right{
    position:sticky;
    top:75px;
}

/* MATERIAL BOX */

.material-box{
    background:linear-gradient(180deg,#0f1d45,#1f4aa5);
    border-radius:12px;
    padding:40px;
    box-shadow:0 25px 70px rgba(0,0,0,0.12);
}

.material-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}

.material-top span{
    width:60px;
    height:4px;
    background:#fff;
    border-radius:20px;
}

.material-top h3{
    color:#fff;
    font-size:20px;
    margin:0;
}

.material-items{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.material-row{
    background:rgba(255,255,255,0.08);
    border-radius:18px;
    padding:15px 15px;
}

.material-row h4{
    color:#fff;
    font-size:20px;
    margin-bottom:10px;
}

.material-row p{
    color:#dbe7ff;
    line-height:1.8;
    font-size:16px;
}

/* IMAGE */

.industrial-image{
    background:#fff;
    border-radius:30px;
    padding:40px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
}

.industrial-image img{
    width:100%;
    max-width:320px;
    animation:floatValve 4s ease-in-out infinite;
}

@keyframes floatValve{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

   /* RELATED PRODUCT SECTION */

.related-product-section{
    width:100%;
    padding:100px 5%;
    background:#fff;
    overflow:hidden;
}

.related-product-section *{
    box-sizing:border-box;
}

.related-product-section .container{
    margin:auto;
}

/* HEADER */

.related-product-header{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:40px;
}

.related-tag{
   display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    background: #e8efff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.related-product-header h2{
    font-size:32px;
    line-height:1.2;
    color:#111827;
    margin:0;
}

/* NAVIGATION */

.slider-nav{
    display:flex;
    gap:15px;
}

.slider-nav button{
    width:60px;
    height:60px;
    border:none;
    border-radius:18px;
    background:#f5f7fb;
    color:#111827;
    font-size:18px;
    cursor:pointer;
    transition:0.4s;
}

.slider-nav button:hover{
    background:linear-gradient(135deg,#2563eb,#15306b);
    color:#fff;
    transform:translateY(-4px);
}

/* SLIDER */

.related-slider-wrapper{
    overflow:hidden;
}

.related-product-slider{
    display:flex;
    gap:30px;
    transition:0.5s ease;
}

/* CARD */

.related-product-card{
    min-width:calc(33.33% - 20px);
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    transition:0.4s;
}

.related-product-card:hover{
    box-shadow:0 25px 50px rgba(0,0,0,0.08);
}

/* IMAGE */

.related-product-image{
    overflow:hidden;
}

.related-product-image img{
    width:100%;
    height:420px !important;
    object-fit:contain;
    transition:0.5s;
}
/* CONTENT */

.related-product-content{
    padding:35px;
}

.related-product-content span{
    display:inline-block;
    padding:8px 18px;
    border-radius:12px;
    background:#eef4ff;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    margin-bottom:14px;
}

.related-product-content h3{
    font-size:20px;
    line-height:1.3;
    color:#111827;
    margin-bottom:8px;
}

.related-product-content p{
    font-size:16px;
    line-height:1.5;
    color:#4b5563;
    margin-bottom:15px;
}

.related-product-content a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2563eb;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:0.4s;
}

.related-product-content a:hover{
    gap:16px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .related-product-card{
        min-width:calc(50% - 15px);
    }

}

@media(max-width:767px){

    .related-product-header{
        flex-direction:column;
        align-items:start;
    }

    .related-product-header h2{
        font-size:38px;
    }

    .related-product-card{
        min-width:100%;
    }

}
.industrial-product-detail{
    width:100%;
    padding:90px 5%;
    background:#f5f7fb;
    overflow:hidden;
    padding-bottom:50px;
}

.industrial-product-detail *{
    box-sizing:border-box;
}


/* GRID */

.product-detail-grid{
    display:grid;
    grid-template-columns:580px 1fr;
    gap:65px;
    align-items:start;
}
.page-header-section h1{
    font-size: 36px;
    margin-bottom: 10px;
}

/* IMAGE */
.main-product-image{
    height: 100%;
}
.main-product-image img{
    width:100%;
    border-radius:12px;
    display:block;
    height: 100% !important;
}
.product-image-box{
    height: 100%;
}
/* TAG */

.product-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:#e8efff;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

/* TITLE */

.product-title{
    font-size:32px;
    line-height:1.1;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

/* DESCRIPTION */

.product-description{
    font-size:18px;
    line-height:1.5;
    color:#4b5563;
    margin-bottom:30px;
}

/* RIGHT SIDE CARDS */

.product-info-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.product-info-card{
    background:#fff;
    border-radius:22px;
    padding:30px;
    border:1px solid #e5e7eb;
    position:relative;
    overflow:hidden;
    transition:0.4s;
}

.product-info-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:linear-gradient(135deg,#2563eb,#15306b);
}

.product-info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.product-info-card span{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#2563eb;
    letter-spacing:1px;
    margin-bottom:14px;
    text-transform:uppercase;
}

.product-info-card h4{
    margin:0;
    font-size:24px;
    line-height:1.6;
    color:#111827;
}

/* FEATURE STRIP */

.product-feature-strip{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:35px;
}

.feature-strip-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid #e5e7eb;
    padding:14px 24px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.4s;
}

.feature-strip-item i{
    color:#2563eb;
}

.feature-strip-item:hover{
    background:linear-gradient(135deg,#2563eb,#15306b);
    color:#fff;
    transform:translateY(-4px);
}

.feature-strip-item:hover i{
    color:#fff;
}

/* BUTTONS */

.product-action-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:45px;
    justify-content: space-between;
}

.product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 25px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    transition:0.4s;
}
.product-btn{
    transition:0.4s;
}

.product-btn:hover{
    transform:translateY(-4px);
}

.product-btn i{
    transition:0.4s;
}

.product-btn:hover i{
    transform:translateX(4px) rotate(-8deg);
}
.product-action-buttons .primary-btn{
    background:linear-gradient(135deg,#2563eb,#15306b);
    color:#fff;
    width: 47%;
    gap:15px;
}

.product-action-buttons .primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(37,99,235,0.35);
    color: black;
    background: #fff;
}

.product-action-buttons .secondary-btn{
    background:#fff;
    color:#111827;
    border:1px solid #e5e7eb;
    width:47%;
     gap:15px;
}

.product-action-buttons .secondary-btn:hover{
    background:#111827;
    color:#fff;
}

.outline-btn{
    border:2px solid #2563eb;
    color:#2563eb;
    background:transparent;
}

.outline-btn:hover{
    background:#2563eb;
    color:#fff;
}

/* HIGHLIGHT BOXES */

.product-highlight-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:30px;
}

.highlight-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    border-radius:12px;
    padding:20px;
    border:1px solid #e5e7eb;
    position:relative;
    overflow:hidden;
    transition:0.4s;
}

.highlight-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:linear-gradient(135deg,#2563eb,#15306b);
}

.highlight-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.highlight-icon{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#2563eb,#15306b);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.highlight-content h4{
    font-size:18px;
    line-height:1.4;
    margin-bottom:10px;
    color:#111827;
}

.highlight-content p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#4b5563;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .product-detail-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .product-title{
        font-size:42px;
    }

    .product-info-wrapper{
        grid-template-columns:1fr;
    }

    .product-highlight-wrapper{
        grid-template-columns:1fr;
    }

    .product-action-buttons{
        flex-direction:column;
    }

    .product-btn{
        width:100%;
    }

}
/* =========================================
   FEATURES TAB SECTION
========================================= */

.fetures-tab{
    width:100%;
    padding-bottom:80px;
    padding-top:0px;
    background: #f5f7fb;
}

/* TAB BUTTONS */

.fetures-tab .tabs-nav{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:20px;
    border-bottom: 1px solid #2563eb;
}

.fetures-tab .specification-tab-btn{
    position:relative;
    padding:14px 28px;
    padding-left:0px;
    padding-bottom:10px;
    border:none;
    border-radius:12px;
    background:transparent;
    color:#111827;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    overflow:hidden;
    transition:0.4s;
}

.fetures-tab .specification-tab-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0%;
    height:100%;
    transition:0.5s;
    z-index:0;
}

.fetures-tab .specification-tab-btn span{
    position:relative;
    z-index:2;
}

.fetures-tab .specification-tab-btn:hover::before{
    width:100%;
}

.fetures-tab .specification-tab-btn:hover{
    transform:translateY(-4px);
}

.fetures-tab .specification-tab-btn.active{
    color:#2563eb;
}

/* TAB CONTENT */

.fetures-tab .specification-tab-content{
    display:none;
    background:#fff;
    border-radius:12px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    animation:fadeUp .5s ease;
}

.fetures-tab .specification-tab-content.active{
    display:block;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* TITLE */

.fetures-tab .content-title{
    font-size:28px;
    margin-bottom:30px;
    position:relative;
    padding-bottom:20px;
}

.fetures-tab .content-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:120px;
    height:5px;
    border-radius:12px;
    background:linear-gradient(135deg,#2563eb,#15306b);
}

/* GRID */

.fetures-tab .spec-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:30px;
}

/* BOX */

.fetures-tab .spec-box{
    background:#f8fbff;
    border-radius:12px;
    padding:35px;
    transition:0.4s;
    border:1px solid #e5e7eb;
}

.fetures-tab .spec-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.fetures-tab .spec-box h3{
    font-size:22px;
    margin-bottom:20px;
    color:#15306b;
}

/* LIST */

.fetures-tab .spec-list{
    list-style:none;
}

.fetures-tab .spec-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:10px;
    font-size:16px;
    line-height:1.8;
    color:#374151;
}

.fetures-tab .spec-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#2563eb;
}

/* TABLE */

.fetures-tab .material-table{
    width:100%;
    border-collapse:collapse;
}

.fetures-tab .material-table tr{
    border-bottom:1px solid #e5e7eb;
}

.fetures-tab .material-table td{
    padding:18px;
    font-size:17px;
    line-height:1.7;
}

.fetures-tab .material-table td:first-child{
    font-weight:700;
    width:30%;
    color:#111827;
}

/* AVAILABLE */

.fetures-tab .available-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.fetures-tab .available-item{
    background:#f8fbff;
    padding:30px;
    border-radius:22px;
    text-align:center;
    font-size:18px;
    font-weight:600;
    transition:0.4s;
    border:1px solid #e5e7eb;
}

.fetures-tab .available-item:hover{
    background:linear-gradient(135deg,#2563eb,#15306b);
    color:#fff;
    transform:translateY(-6px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .fetures-tab .spec-grid{
        grid-template-columns:1fr;
    }

    .fetures-tab .available-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:767px){

    .fetures-tab .specification-tab-btn{
        width:100%;
    }

    .fetures-tab .specification-tab-content{
        padding:35px 20px;
    }

    .fetures-tab .available-grid{
        grid-template-columns:1fr;
    }

}
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00557b6e;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 400px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: #fff;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
 }
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 14px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
ul.mobile-menu {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
ul.mobile-menu li {
    border-bottom: 1px solid rgb(41 41 41 / 20%);
        position: relative;
 }
ul.mobile-menu li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
ul.mobile-menu li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #000;
    transition: all 0.5s;
    padding: 0 12px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.mobile-menu .menu-item-has-children ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
 }
ul.mobile-menu .menu-item-has-children ul li a {
    padding-left: 23px;
}
.logo-box {
    max-width: 260px;
}
ul.mobile-menu .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
ul.mobile-menu .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    transition: all 0.3s;
    line-height: 0px;
    background-color: #002a4a !important;
    padding: 0 !important;
    color: #ffffff;
}
 button.ast-menu-toggle {
    display: none !important;
}
 ul.mobile-menu li svg {
    margin: 0 !important;
    width: 20px !important;
}
.locked {
    position: fixed;
    width: 100%;
    top: 0;
}
ul.sub_menu {
    padding-left: 10px !important;
}
.blog-card{
    flex:1;
    min-width:350px;
    background:#fff;
    border:1px solid #eee;
    overflow:hidden;
    position:relative;
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.blog-image{
    position:relative;
}

.blog-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.date-box{
    position:absolute;
    right:0;
    bottom:0;
    background:linear-gradient(135deg,#2563eb,#60a5fa);
    color:#fff;
    width:70px;
    height:70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-weight:700;
}

.date-box span:first-child{
    font-size:18px;
    line-height:1;
}

.date-box span:last-child{
    font-size:14px;
    letter-spacing:1px;
}

.blog-content{
    padding:30px 15px;
	height:340px;
}

.blog-meta{
    display:flex;
    gap:20px;
    color:#666;
    font-size:18px;
    margin-bottom:20px;
}

.blog-meta i{
    color:#2563eb;
    margin-right:8px;
}

.blog-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-title a{
    text-decoration:none;
    color:#20202f;
}

.blog-title a:hover{
    color:#2563eb;
}

.blog-desc{
    font-size:18px;
    line-height:1.4;
    color:#666;
    margin-bottom:20px;
}

.read-more{
    display:block;
    text-align:center;
    padding:22px;
    background:#f2eded;
    text-decoration:none;
    color:#111;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    transition:.3s;
}

.read-more:hover{
    background:#f44336;
    color:#fff;
}

@media(max-width:991px){

    .row{
        flex-direction:column;
    }

    .blog-title{
        font-size:32px;
    }

    .blog-desc{
        font-size:18px;
    }

}
	.page-header-section h1{
    font-size:26px;
}

/* ==========================
BLOG SECTION
========================== */

.single-blog-section{
    padding:80px 0;
    background:#f7f9fc;
    margin-bottom: 100px;
}

.single-blog-wrap{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.post-thumbnail img{
    width:100%;
    border-radius:20px;
}

.post-title{
    font-size:28px;
    font-weight:700;
    color:#152238;
    line-height:1.3;
    margin:30px 0;
}

/* ==========================
META
========================== */

.post-meta{
    display:flex;
    gap:20px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.meta-item{
    flex:1;
    min-width:220px;
    background:#f5f7fb;
    padding:20px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.3s;
}

.meta-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(13,93,184,.12);
}

.meta-item img{
    border-radius:50%;
}

.meta-item i{
    width:60px;
    height:60px;
    line-height:60px;
    text-align:center;
    border-radius:50%;
    background:linear-gradient(135deg,#5d5fef,#0d5db8);
    color:#fff;
    font-size:20px;
}

.meta-item span{
    display:block;
    color:#999;
    font-size:13px;
}

.meta-item h6{
    margin:0;
    color:#152238;
    font-weight:600;
}

/* ==========================
CONTENT
========================== */

.post-content{
    color:#555;
    font-size:16px;
    line-height:1.9;
}

.post-content p{
    margin-bottom:25px;
}

.post-content img{
    border-radius:15px;
}

/* ==========================
QUOTE BOX
========================== */

.quote-box{
    margin-top:50px;
    background:linear-gradient(135deg, #0298f6, #3e3d77);
    padding:50px;
    border-radius:25px;
    position:relative;
    overflow:hidden;
}

.quote-box:before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    right:-100px;
    top:-100px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.quote-box p{
    font-size:20px;
    line-height:1.4;
    color:#fff;
    margin-bottom:20px;
}

.quote-box span{
    display:block;
    text-align:right;
    color:#fff;
    font-weight:600;
}

/* ==========================
SIDEBAR
========================== */

.blog-sidebar{
    position:sticky;
    top:100px;
}

.service-sidebar{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.sidebar-title{
    font-size:28px;
    color:#152238;
    font-weight:700;
    margin-bottom:25px;
}

.service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.service-list li{
    margin-bottom:18px;
}

.service-list li:last-child{
    margin-bottom:0;
}

.service-list li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#f4f6fa;
    padding:18px 20px;
    border-radius:12px;
    text-decoration:none;
    color:#152238;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.service-list li a:hover,
.service-list li.active a{
    background:#0d5db8;
    color:#fff;
}

.service-list li a i{
    width:40px;
    height:40px;
    line-height:48px;
    text-align:center;
    border-radius:50%;
    background:#0d5db8;
    color:#fff;
    transition:.3s;
	justify-content: center;
    align-items: center;
    display: flex;
}

.service-list li:hover i,
.service-list li.active i{
    background:#fff;
    color:#0d5db8;
}

/* ==========================
SUPPORT BOX
========================== */

.support-box{
    background:linear-gradient(180deg,#0d5db8,#08488d);
    border-radius:25px;
    padding:50px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.support-box:before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-80px;
    top:-80px;
}

.support-icon{
    width:120px;
    height:120px;
    margin:auto auto 30px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.support-icon i{
    font-size:50px;
    color:#fff;
}

.support-box h3{
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.support-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#0d5db8;
    padding:16px 30px;
    border-radius:50px;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
}

.support-btn:hover{
    color:#0d5db8;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:991px){

    .single-blog-wrap{
        padding:25px;
    }

    .post-title{
        font-size:30px;
    }

    .sidebar-title{
        font-size:28px;
    }

    .post-meta{
        flex-direction:column;
    }

    .meta-item{
        width:100%;
    }

    .quote-box{
        padding:30px;
    }

    .quote-box p{
        font-size:22px;
    }

    .service-list li a{
        font-size:16px;
    }

    .support-box h3{
        font-size:24px;
    }
}
.single-blog-wrap h2{
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 24px;
}
.single-blog-wrap ul{
    list-style: disc;
    margin-left: 15px;
}
.service-list li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.blog-list-content{
    display:flex;
    align-items:center;
    gap:15px;
    flex:1;
}

.blog-list-image{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    overflow:hidden;
}

.blog-list-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.blog-list-title{
    font-size:15px;
    font-weight:600;
    line-height:1.5;
}

.service-list li a i{
    flex-shrink:0;
}
.sidebar-wrapper{
    position: sticky;
    top: 100px;
}
.karma-cta-section{
    position: relative;
    margin-bottom: -80px;
    z-index: 10;
}

.karma-cta-box{
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: 12px;
    background:#0e51ab;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.karma-cta-box h2{
    color:#fff;
    font-size:28px;
    line-height:1.2;
    margin:20px 0;
    font-weight:700;
}

.karma-cta-box p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    max-width:700px;
    margin:0;
}

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#0052cc;
    padding:18px 34px;
    border-radius:60px;
    font-weight:700;
    text-decoration:none;
    margin-bottom:15px;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    color:#0052cc;
}

.cta-phone{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.cta-shape{
    position:absolute;
    border-radius:50%;
}

.shape-1{
    width:300px;
    height:300px;
    background:rgba(255,255,255,.08);
    right:-100px;
    top:-100px;
}

.shape-2{
    width:220px;
    height:220px;
    background:rgba(255,255,255,.06);
    right:120px;
    bottom:-100px;
}

@media(max-width:991px){

    .karma-cta-box{
        padding:40px 30px;
        text-align:center;
    }

    .karma-cta-box h2{
        font-size:34px;
    }

    .cta-phone{
        justify-content:center;
        margin-top:15px;
    }

    .cta-btn{
        margin-top:25px;
    }
}
.cta-actions{
    display:flex;
    justify-content:flex-end;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:180px;
    padding:18px 28px;
    border-radius:60px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
}

.phone-btn{
    background:#fff;
    color:#0052cc;
}

.email-btn{
    background:rgba(255,255,255,.12);
    color:#fff;
    border:1px solid rgba(255,255,255,.2);
}

.phone-btn:hover,
.email-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:991px){

    .cta-actions{
        justify-content:center;
        margin-top:30px;
    }

    .cta-btn{
        width:100%;
        max-width:250px;
    }

}
.karma-certifications{
    position:relative;
    padding:120px 0;
    background:#fff;
    overflow:hidden;
    padding-top: 0px;
}
.cert-header{
    max-width:700px;
    margin:0 auto 60px;
}

.cert-subtitle{
    display:inline-block;
    color:#1864ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.cert-header h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    color:#111;
}

.cert-header p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.cert-counter-wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:70px;
}

.counter-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.counter-box h3{
    color:#1864ff;
    font-size:42px;
    margin:0;
    font-weight:700;
}

.counter-box span{
    color:#555;
    font-size:15px;
}

.cert-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
}

.cert-card:hover{
    transform:translateY(-10px);
}

.cert-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#1864ff;
    color:#fff;
    font-size:12px;
    padding:8px 15px;
    border-radius:30px;
    z-index:2;
}

.cert-image{
    padding:20px;
    background:#eef4ff;
}

.cert-image img{
    width:100%;
    border-radius:15px;
}

.cert-content{
    padding:30px;
}

.cert-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.cert-content p{
    color:#666;
    line-height:1.4;
    margin-bottom:20px;
}

.cert-content a{
    color:#1864ff;
    font-weight:600;
    text-decoration:none;
}

.cert-bottom-cta{
    margin-top:80px;
    padding:60px;
    border-radius:30px;
    text-align:center;
    background:linear-gradient(135deg,#1864ff,#0d4dc7);
}

.cert-bottom-cta h3{
    color:#fff;
    font-size:38px;
    margin-bottom:20px;
}

.cert-bottom-cta p{
    color:rgba(255,255,255,.85);
    max-width:750px;
    margin:0 auto 30px;
}

.cert-btn{
    display:inline-block;
    background:#fff;
    color:#1864ff;
    padding:18px 35px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
}

@media(max-width:991px){

    .cert-counter-wrap{
        grid-template-columns:repeat(2,1fr);
    }

    .cert-header h2{
        font-size:36px;
    }

    .cert-bottom-cta{
        padding:40px 25px;
    }

    .cert-bottom-cta h3{
        font-size:28px;
    }
}

@media(max-width:767px){

    .cert-counter-wrap{
        grid-template-columns:1fr;
    }

    .cert-header h2{
        font-size:30px;
    }
}