/* Root Variables */
:root {
    --primary-blue: #034EA2;
    --dark-blue: #022F6B;
    --light-blue: #0563C1;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #ffffff;
}
li {
  list-style-type: none;
}
h2{
  font-size: 50px;
  color: #11202D;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1440px;
    }
}
@media screen and (min-width: 1400px) and (max-width: 1499px) {
  .container {
        max-width: 1440px;
        padding: 0px 40px;
    }
}
@media (min-width: 1400px) {
    .container1 {
        max-width: 1200px;
        margin: 0 auto;
    }
}
/* Navbar Styles */
/* .navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}
.navbar-nav .nav-link.active {
    color: #034EA2 !important; 
} */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link.active {
    color: #034EA2 !important;
}

/* ✅ Hamburger icon ko chota karna */
.navbar-toggler {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
}

/* ✅ Close (X) button dikhana jab menu open ho */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3E%3C/svg%3E");
}

/* ✅ Hero section shift hona band karna */
.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Desktop pe normal rakhna */
@media (min-width: 992px) {
    .navbar-collapse {
        position: relative;
        top: auto;
        box-shadow: none;
    }
}

/* Mobile menu styling */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px;
    }
    
    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }
}
/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    padding: 12px 35px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 78, 162, 0.3);
}

/* Custom CTA Button matching design */
.btn-cta {
    background: linear-gradient(90deg, #00A2FF 0%, #034EA2 100%);
    color: #fff;
    border: none;
    padding: 12px 12px 12px 24px;
    font-weight: 700;
    border-radius: 0px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(3,78,162,0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    margin-top: 20px;
}

.btn-cta .btn-label {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
}

.btn-cta .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #222222;
    width: 40px;
    height: 40px;
    border-radius: 0px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(3,78,162,0.25);
    color: #FFE500;
}

/* Smaller variant for compact buttons */
.btn-cta.btn-sm {
    padding: 8px 14px;
}

/* Industry Cards */
.industry-card {
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.05);
}

.industry-card img {
    height: 100%;
    object-fit: cover;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3, 78, 162, 0.9), transparent);
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-overlay {
    background: rgba(3, 78, 162, 0.95);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Dots Navigation */
.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* Full Width Image */
.full-width-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.red-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 2;
}

/* Features */
.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
/* footer a:hover {
    opacity: 0.8;
} */

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-color: #DDDDDD42;
    /* background-color: rgba(255, 255, 255, 0.1); */
    transition: all 0.3s ease;
    border: 1px solid #DDDDDD42;
}

footer .social-icons a:hover {
   background-color: rgba(255, 255, 255, 0.1);
    /* transform: translateY(-3px); */
}
.section-space--inner--top--80 {
    padding-top: 80px;
}
.footer-content-wrapper {
    margin-bottom: 50px;
}
.footer-logo {
    margin-bottom: 35px;
}
.footer-desc {
    color: #f1f1f1;
    margin-bottom: 35px;
    max-width: 370px;
    font-size: 15px;
}
.footer-intro-wrapper .social-links {
    line-height: 1;
}
.social-links ul li {
    display: inline-block;
    margin-right: 20px;
}
.footer-intro-wrapper .social-links li a {
    color: #f1f1f1;
}

.social-links ul li a {
    display: block;
    color: rgba(34, 34, 34, 0.4);
}
.footer-widget__title {
    color: #fff;
    margin-bottom: 40px;
    font-size: 0.875rem;
}
.footer-widget__navigation {
    line-height: 1;
}
.footer-widget__navigation li:first-child {
    padding-top: 0;
}

.footer-widget__navigation li {
    padding: 12px 0;
    line-height: 1;
    color: #fff;
}
.footer-widget__navigation li a{
    color: #fff;
    font-size: 15px;
}
.footer-copyright-wrapper {
    padding: 25px 0;
    color: #f1f1f1;
    font-size: 0.875rem;
    border-top: 1px solid;
}
.footer-copyright-left {
    color: #f1f1f1;
}
.footer-copyright-center ul li a {
    color: #f1f1f1;
}
.footer-copyright-right {
    text-align: right;
}
.footer-copyright-right__navigation li {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}
ul.footer-widget__navigation {
  padding-left: 0;
}
/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .industry-card {
        height: 250px;
    }
    
    .full-width-image {
        height: 300px;
    }
    
    .red-sidebar {
        width: 40px;
    }
}


/*=============================================
=            banner            =
=============================================*/
.banner-video-area {
  background-repeat: no-repeat;
  background-position: left center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .banner-video-area {
    background-image: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .banner-video-area__image {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .banner-video-area__content .section-title-area .title {
    margin-top: -5px;
  }
}

.banner-image img {
  width: 100%;
}

.banner-image-content {
  padding: 30px 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .banner-image-content {
    padding: 80px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-image-content {
    padding: 50px 15px;
  }
}
.banner-image-content__title {
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: 400;
  color: #06112c;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .banner-image-content__title {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
.banner-image-content__title .highlight {
  font-weight: 700;
  display: block;
}
.banner-image-content__text {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 30px;
}
.banner-image-content__btn {
  border: 2px solid #ddd;
  height: 50px;
  letter-spacing: 0.5px;
  padding: 0 25px;
  line-height: 46px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #222;
}
.banner-image-content__btn:hover {
  background-color: #DE2021;
  border-color: #DE2021;
  color: #222;
}

.banner-image-two {
  padding: 140px 0;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .banner-image-two {
    padding: 100px 0;
  }
}
.banner-image-two__content {
  width: 660px;
  max-width: 100%;
  padding-left: 45px;
  padding-right: 45px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .banner-image-two__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.banner-image-two__subtitle {
  letter-spacing: 2px;
  font-size: 0.875rem;
  line-height: 1.1;
  color: #DE2021;
  margin-bottom: 15px;
}
.banner-image-two__title {
  font-size: 3.125rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .banner-image-two__title {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-image-two__title {
    font-size: 1.5625rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 1200px) {
  .banner-image-two__title {
    font-size: calc(1.28125rem + 0.375vw);
  }
}
.banner-image-two__title .highlight {
  font-weight: 700;
  display: block;
}
.banner-image-two__text {
  font-size: 0.9375rem;
  color: #ffffff;
  font-weight: 400;
  max-width: 450px;
  margin-bottom: 40px;
}
.banner-image-two .ht-btn {
  color: #222;
}

.banner-image-three-area {
  background-repeat: no-repeat;
  background-position: right 50px;
}

.banner-image-three__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-image-three__content {
  max-width: 450px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-image-three__content {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-image-three__content {
    padding-top: 60px;
  }
}
.banner-image-three__content .subtitle {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.banner-image-three__content .title {
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .banner-image-three__content .title {
    font-size: calc(1.4375rem + 2.25vw);
  }
}
.banner-image-three__content .title .highlight {
  color: #DE2021;
  font-weight: 700;
}
.banner-image-three__content .subtitle-big {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
  color: #222;
  margin-bottom: 20px;
}
.banner-image-three__content .text {
  margin-bottom: 40px;
}
.banner-image-three__image {
  padding: 120px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-image-three__image {
    padding-top: 80px;
    padding-bottom: 80px;
    border-left: 1px solid #eee;
  }
}
@media only screen and (max-width: 767px) {
  .banner-image-three__image {
    padding-top: 60px;
    padding-bottom: 60px;
    border-left: 1px solid #eee;
  }
}
@media only screen and (max-width: 575px) {
  .banner-image-three__image {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.banner-image-three__image .banner-image {
  position: relative;
}
.banner-image-three__image .banner-sign {
  position: absolute;
  bottom: -40px;
  right: -80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-image-three__image .banner-sign {
    right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-image-three__image .banner-sign {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-image-three__image .banner-sign {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-image-three__image .banner-sign {
    right: 15px;
    bottom: 15px;
  }
}

/*=====  End of banner  ======*/
/*=====  End of banner  ======*/
/*=====  End of banner  ======*/
/*=====  End of banner  ======*/
/*=====  End of banner  ======*/
/*=====  End of banner  ======*/
/*=====  End of banner  ======*/



.section-space--inner--120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-title-area .title--left--style2:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background: #ddd;
}

.section-title-area .title:after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #034EA2;
    position: absolute;
    left: 0;
    bottom: 0;
}

.section-title-area .title--left--style2--black2 {
    color: #11202D;
}

.section-title-area .title--left--style2 {
    font-size: 3.125rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

.section-title-area .title {
    font-size: 48px;
    line-height: 1;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.section-title-area .title--left--style2 span.translate-left {
    display: block;
    -webkit-transform: translateX(-110px);
    transform: translateX(-110px);
}

.section-title-content--style2 {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 40px;
}
.banner-video-area {
  min-height: 600px; /* 🔥 height compulsory */
  background-image: url('../images/patterns.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/* industry slider three*/
.industry-three-slider__area {
  background-repeat: no-repeat;
  background-position: left top;
}
.industry-three-slider__area .section-title-area {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .industry-three-slider__area .section-title-area {
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .industry-three-slider__area .section-title-area {
    margin-bottom: 40px;
  }
}
.industry-three-slider__single-slide .item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.industry-three-slider__single-slide .item-wrap__image {
  background-size: cover;
  height: 355px;
}
.industry-three-slider__single-slide .item-wrap__content {
  height: 355px;
  background-color: #11202D;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .industry-three-slider__single-slide .item-wrap__content {
    margin-bottom: 0;
  }
}
.industry-three-slider__single-slide .item-wrap__content__icon {
  color: #fff;
  line-height: 1;
  font-size: 70px;
}
.industry-three-slider__single-slide .item-wrap__content__title {
  padding-right: 60px;
  position: relative;
  line-height: 1.66;
  margin-bottom: 0;
}
.industry-three-slider__single-slide .item-wrap__content__title a {
  color: #ffffff;
}
.industry-three-slider__single-slide .item-wrap__content__title a:hover {
  color: #ffffff;
}
.industry-three-slider__single-slide .item-wrap__content__title:after {
  content: "\f30f";
  font-family: Ionicons;
  font-size: 1.5rem;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
}
@media (max-width: 1200px) {
  .industry-three-slider__single-slide .item-wrap__content__title:after {
    font-size: calc(1.275rem + 0.3vw);
  }
}
.industry-three-slider__single-slide:nth-child(2n+1) .item-wrap__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.industry-three-slider__single-slide:nth-child(2n+1) .item-wrap__content {
  background-color: #DE2021;
  margin-top: 40px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .industry-three-slider__single-slide:nth-child(2n+1) .item-wrap__content {
    margin-top: 0;
  }
}
.industry-three-slider__navigation-wrapper .ht-swiper-button-nav {
  position: static;
  display: inline-block;
  margin-right: 10px;
  -webkit-transform: none;
          transform: none;
}
.industry-three-slider__navigation-wrapper .ht-swiper-button-nav:last-child {
  margin-right: 0;
}
.section-space--inner--bottom--120 {
    padding-bottom: 120px;
}
.icon-info-wrapper {
    margin-bottom: -30px;
}
.single-icon-info {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.single-icon-info__image {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
}
.single-icon-info__content {
    -ms-flex-preferred-size: calc(100% - 100px);
    flex-basis: calc(100% - 100px);
    margin-left: 20px;
}
.single-icon-info__title--black2 {
    color: #034EA2;
}
.single-icon-info__title {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 15px;
}
.single-icon-info__text:last-child {
    margin-bottom: -5px;
}
p.single-icon-info__text {
    color: #888888;
}
.section-title-area--middle {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-title-area {
    line-height: 1;
}
.section-space--bottom--80 {
    margin-bottom: 80px;
}
.section-title-area--middle .title {
    display: inline-block;
}
.section-title-area .title--style2--black2 {
    color: #11202D;
}
.section-title-area .title--style2 {
    position: relative;
    font-size: 3.125rem;
    line-height: 1;
    margin-top: -5px;
}
.section-title-area .title {
    /* font-size: 2.5rem; */
    /* line-height: 1; */
    /* position: relative; */
    padding-bottom: 30px;
    margin-bottom: 0;
}
.section-title-area .title--style2:before {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background: #ddd;
}
.section-title-area--middle .title:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.section-title-area .title--style2:after {
    height: 3px;
}
.section-title-area .title:after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #DE2021;
    position: absolute;
    left: 0;
    bottom: 0;
}
/* ============================================
   INDUSTRIES SLIDER SECTION - EXACT MATCH
   ============================================ */

/* Industries Section Background */
.industry-three-slider__area {
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

.industry-three-slider__area .section-title-area {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .industry-three-slider__area .section-title-area {
        padding-left: 0;
        margin-bottom: 40px;
    }
    span.translate-left.right-custom {
        transform: translateX(0) !important;
    } 
}

/* Section Title */
.section-title-area .title.title--left--style2 {
    font-size: 3.125rem;
    line-height: 1.2;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 30px;
    color: #000000;
    font-weight: bold;
}

.section-title-area .title span.translate-left {
    display: block;
    transform: translateX(-110px);
}

.section-title-area .title.title--left--style2 span.translate-left.right-custom {
    display: block;
    transform: translateX(-25px);
}
.section-title-area .title.title--left--style2::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background: #ddd;
}

.section-title-area .title::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-color: #034EA2;
    position: absolute;
    left: 0;
    bottom: 0;
}

.section-title-content--style2 {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #58595B;
    margin-bottom: 40px;
}

/* Navigation Buttons */
.industry-three-slider__navigation-wrapper {
    display: flex;
    gap: 10px;
}

.ht-swiper-button-nav {
    width: 50px;
    height: 50px;
    border: 2px solid #034EA2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #034EA2;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    position: static;
    transform: none;
    margin-right: 10px;
}

.ht-swiper-button-nav:last-child {
    margin-right: 0;
}

.ht-swiper-button-nav:hover {
    background: #034EA2;
    color: white;
}

/* Swiper Container */
.industry-three-slider__container {
    overflow: visible !important;
}

/* Single Slide */
.industry-three-slider__single-slide {
    height: auto;
}

.industry-three-slider__single-slide .item-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Section */
.item-wrap__image {
    height: 355px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Content/Color Box */
.item-wrap__content {
    height: 355px;
    background-color: #11202D;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
}

.item-wrap__content__icon {
    color: #fff;
    line-height: 1;
    font-size: 70px;
}

.item-wrap__content__title {
    padding-right: 60px;
    position: relative;
    line-height: 1.66;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.item-wrap__content__title a {
    color: #ffffff;
    text-decoration: none;
}

.item-wrap__content__title::after {
    content: "\f30f";
    font-family: 'Ionicons';
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
}

/* Alternating Pattern - Odd slides (1,3,5...) */
.industry-three-slider__single-slide:nth-child(odd) .item-wrap__image {
    order: 2;
}

.industry-three-slider__single-slide:nth-child(odd) .item-wrap__content {
    background-color: #DE2021;
    order: 1;
    margin-top: 0;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .industry-three-slider__single-slide:nth-child(odd) .item-wrap__content {
        margin-bottom: 0;
    }
}

/* Even slides (2,4,6...) */
.industry-three-slider__single-slide:nth-child(even) .item-wrap__content {
    background-color: #11202D;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .industry-three-slider__single-slide:nth-child(even) .item-wrap__content {
        margin-bottom: 0;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .section-title-area .title {
        font-size: 2rem;
    }

    .section-title-area .title span.translate-left {
        transform: translateX(0);
    }

    .item-wrap__image,
    .item-wrap__content {
        height: 300px;
        padding: 30px;
    }

    .item-wrap__content__icon {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .industry-three-slider__area {
        padding: 60px 0;
    }

    .section-title-area .title {
        font-size: 1.75rem;
        padding-bottom: 20px;
    }

    .item-wrap__image,
    .item-wrap__content {
        height: 250px;
    }

    .item-wrap__content {
        padding: 25px;
    }

    .item-wrap__content__title {
        font-size: 1.25rem;
    }
}

.logic_slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* FULL SCREEN IMAGES */
.logic_slider__images {
  width: 100%;
  height: 100%;
  position: relative;
}

.logic_slider__images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.logic_slider__images img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* LEFT OVERLAY */
.logic_slider__list {
   position: absolute;
  left: 0;
  top: 0;
  width: 15%;
  height: 100%;
  background: #0000004f;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

/* ITEMS */
.logic_slider__item {
  flex: 1; /* 🔥 THIS IS THE KEY */
  padding: 40px 30px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* vertical center text */
  transition: background 0.3s;
  border-bottom: 0.05px solid;
}

.logic_slider__item span {
 font-size: 16px;
  opacity: 1;
  color: #ffffff;
}

.logic_slider__item h4 {
   font-size: 22px;
  margin-top: 8px;
  font-weight: 600;
}

.logic_slider__item:hover {
  background: rgba(0,0,0,0.2);
}

.logic_slider__item.active {
  background: #034EA2;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .logic_slider {
    height: 70vh;
  }

  .logic_slider__list {
    width: 100%;
    height: auto;
    bottom: 0;
    top: auto;
    left: 0;
    flex-direction: row;
    background: rgba(0,0,0,0.7);
  }

  .logic_slider__item {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
  }

  .logic_slider__item span {
    font-size: 12px;
  }

  .logic_slider__item h4 {
    font-size: 14px;
  }
}

@media (max-width: 640px) {

  .logic_slider {
    height: 60vh;
  }

  .logic_slider__item h4 {
    font-size: 13px;
  }
}
.logic_slider__item {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}


    .reviews-section {
    position: relative;
    padding: 200px 0 100px 0;
    overflow: hidden;

    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


        .bg-watermark {
            position: absolute;
            top: 50%;
            right: -100px;
            transform: translateY(-50%);
            font-size: 200px;
            font-weight: 700;
            color: rgba(0, 0, 0, 0.03);
            z-index: 1;
            pointer-events: none;
            user-select: none;
        }

        .reviews-container {
            /* position: relative; */
            z-index: 2;
            overflow: hidden;
            padding-bottom: 80px;
        }

        .reviews-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .review-card {
            flex: 0 0 calc((100% - 60px) / 3);
            background: #fff;
            padding: 40px 30px;
            border-radius: 2px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid #034EA2;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.review-card.is-center {
    transform: translateY(0);
    z-index: 2;
}

/* SIDE cards (BOTTOM) */
.review-card.is-side {
    transform: translateY(40px);
    z-index: 1;
}
/* .review-card:hover {
    transform: translateY(-5px) !important;
} */

        /* .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        } */

        .review-message {
            font-size: 22px;
            line-height: normal;
            color: #222222;
            margin-bottom: 25px;
            min-height: 120px;
        }

        .star-rating {
            color: #F8C823;
            font-size: 20px;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .reviewer-details h5 {
            font-size: 20px;
            font-weight: 700;
            color: #222222;
            margin-bottom: 5px;
        }

        .reviewer-details p {
            font-size: 16px;
            font-style: italic;
            color: #888888;
            margin: 0;
        }

        .slider-arrows {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: -40px;
        }

        .arrow-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #00AEEF;
            background: #fff;
            color: #222222;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arrow-btn:hover {
          border: 2px solid #034EA2;
            background: #034EA2;
            color: #fff;
        }

        .arrow-btn.btn-active {
            background: #fff;
            color: #222222;
        }
.arrow-btn:hover {
    background: #034EA2;
    color: #fff;
}
        /* Responsive */
        @media (max-width: 992px) {
            .review-card {
                flex: 0 0 calc((100% - 30px) / 2);
                transform: none;
            }
            .bg-watermark {
                font-size: 150px;
            }
        }

        @media (max-width: 768px) {
            .review-card {
                flex: 0 0 100%;
                transform: translateY(0) !important;
            }
            .bg-watermark {
                font-size: 100px;
                right: -50px;
            }
            .review-message {
                min-height: auto;
            }
        }


        /* blog section home page */
        /* .title-line {
  width: 40px;
  height: 3px;
  background: #0d6efd;
  margin-top: 8px;
} */
.title-line {
  position: relative;
  width: 40px;              /* center blue line */
  height: 3px;
  background-color: #0d6efd;
  margin-top: 10px;
}

/* left & right thin lines */
.title-line::before,
.title-line::after {
  content: "";
  position: absolute;
  top: 35%;
  width: 60px;
  height: 1px;
  background: #d9d9d9;     /* light grey side line */
}

.title-line::before {
  right: 100%;
  /* margin-right: 10px; */
}

.title-line::after {
  left: 100%;
  /* margin-left: 10px; */
}

.blog-list-item {
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}

.blog-list-item h6 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 6px;
  color: #11202D;
}

.blog-list-item span {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
}

.featured-blog img {
  max-height: 280px;
  object-fit: cover;
}

.featured-blog .date {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: #11202D;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
  color: #034EA2;
}
h5.featured-heading { 
  font-size: 26px;
  color: #11202D;
}
h5.featured-heading:hover {
  font-size: 26px;
  text-decoration: underline;
  color: #034EA2;
  cursor: pointer;
}
p.featured-text {
  font-size: 15px;
}


/* SECTION */
/* .industries-section {
  padding: 100px 0;
  background: url("../images/industries.webp") no-repeat center center;
  background-size: cover;
  overflow: hidden;
} */
.industries-section {
  padding: 120px 0;
  background: url("../images/industries.webp") no-repeat center top;
  background-size: cover;
  overflow: hidden;
}

/*  */
/* MAIN ROW (LEFT + RIGHT) */
.industries-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* LEFT SIDE */
.industries-left {
  position: relative;
  margin-left: 4%;
}

.watermark {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  font-size: 140px;
  font-weight: 800;
  color: #f1f1f1;
  pointer-events: none;
}

.industries-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c2d;
}

.title-line {
  width: 40px;
  height: 3px;
  background: #0d6efd;
  margin: 18px 0;
}

.industries-left p {
  max-width: 420px;
  color: #888888;
}

/* SLIDER ARROWS */
.industries-slider {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.industries-slider .arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #034EA2;
  background: transparent;
  color: #034EA2;
  font-size: 18px;
  cursor: pointer;
}

.industries-slider .arrow.next {
  background: #fff;
  color: #034EA2;
}
.industries-slider .arrow:hover {
 background: #034EA2;
  color: #fff;
}
/* RIGHT SIDE */
.industries-right {
  padding: 50px 0px;
  width: 100%;
}

/* 👉 MAIN GRID (2 BLOCKS SIDE BY SIDE) */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 80px; */
}

/* 👉 EACH BLOCK (UPAR-NICHE) */
.industry-row {
  display: flex;
  flex-direction: column;
}

/* BOX COMMON */
.box {
  position: relative;
  height: 260px;
  display: flex;
  color: #fff;
}

/* IMAGE BOX */
.box.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLUE BOX COMMON */
.box.blue {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.box.blue img {
  width: 36px;
}

/* LIGHT (TOP TEXT) */
.box.light {
  background: #00a6e6;
  justify-content: flex-start;
}

.box.light img {
  margin-bottom: auto;
}

/* DARK (BOTTOM TEXT) */
.box.dark {
  background: #0a4f9c;
  justify-content: space-between;
}

.box.dark img {
  margin-bottom: 12px;
}

/* TEXT */
.box h5 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .industries-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .industries-grid {
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(2, 1fr);
  }

  .watermark {
    display: none;
  }
}
.industry-row.top {
  padding-top: 10%;
}
/* wrapper */
.industries-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

/* moving track */
.industries-track {
  display: flex;
  transition: transform 0.8s ease-in-out; /* GIF jevu */
}

/* each slide = full width */
.slide {
  min-width: 100%;
}
  span.translate-left.right-custom {
    transform: translateX(-40px);
  }
.product-card {
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-content {
  padding: 22px;
}

.product-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.product-content a {
  font-size: 14px;
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.product-content a:hover {
  text-decoration: underline;
}

/* CTA Button */
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d6efd;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.view-btn span {
  font-size: 18px;
  line-height: 1;
}

.view-btn:hover {
  background: #0b5ed7;
}


.key-products {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
}

.product-card {
  border: 1px solid #eee;
  background: #fff;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 260px;           /* SAME image height */
  object-fit: cover;
}

.product-body {
  padding: 22px;
}

.product-body h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 14px;
}

.product-body a {
  font-size: 14px;
  color: #0d6efd;
  text-decoration: none;
}

.product-body a:hover {
  text-decoration: underline;
}

/* Button */
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
  background: #0d6efd;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.view-btn span {
  font-size: 18px;
}


/* aboutus page */

/* ================= ABOUT PAGE ONLY ================= */

.about_page .feature-background__wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.about_page .feature-background__image--style2 {
    min-height: 600px;
}

.about_page .feature-background__image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    min-height: 300px;
    height: 100%;
}
.feature-background__content--style2 {
    padding-top: 120px;
    padding-bottom: 120px;
}
.about_page .feature-background__content-area--style2 {
    padding-left: 100px;
}

.about_page .feature-background__content-wrapper {
    width: 670px;
    max-width: 100%;
}

.about_page .section-space--inner--190 {
    padding-top: 190px;
    padding-bottom: 190px;
}

.about_page .section-title-area {
    line-height: 1;
}

.about_page .section-space--bottom--60 {
    margin-bottom: 30px;
}

.about_page .section-title-area .title--style4--about {
    width: 100%;
}
.about_page h1.title.title--style4.title--style4--about {
  font-size: 40px;
}
.about_page .section-title-area .title::after {
  display: none;
}
.about_page .section-title-area .title--style4 {
    line-height: 1.2;
    padding-bottom: 30px;
    margin-top: -5px;
    font-size: 40px;
}
.about_page .feature-background__single-content-wrapper p {
font-size: 15px;
color: #888888;
}
@media (max-width: 991px) {
  .about_page .feature-background__content-area--style2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about_page .section-space--inner--190 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about_page .section-title-area .title--style4--about {
    width: 100%;
  }
}
.career-title-area .title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: -5px;
}
.section-space--bottom--50 {
    margin-bottom: 50px !important;
}
.about-list-wrapper .about-list-title {
    font-size: 20px;
    line-height: 1.2;
    display: inline-block;
    margin-bottom: 25px;
}
.about-list-wrapper .about-list-title:after {
    content: "";
    display: block;
    margin-top: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00AEEF 0%, #034EA2 100%);
}
.about-list-wrapper p {
  font-size: 15px;
  color: #888888;
}

.about-icon-box-wrapper {
    margin-top: 60px;
    margin-bottom: -30px;
}
.about-icon-box {
    text-align: center;
    margin-bottom: 30px;
}
.about-icon-box__image {
    margin-bottom: 30px;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.about-icon-box__content .title {
    font-size: 1.25rem;
    margin-bottom: 20px;
}
.see-more-link {
    display: inline-block;
    position: relative;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eee;
    color: #ffc246;
}
p{
  color: #888888;
}

.dark-bg {
    background-color: #00AEEF;
}
.feature-background__content.feature-background__content--style2.contant_main {
      width: 700px;
    max-width: 100%;
    padding: 50px 0;
    padding-left: 120px;
        padding-top: 120px;
    padding-bottom: 120px;
}
.section-space--bottom--40 {
    margin-bottom: 40px !important;
}
.feature-list li {
    font-size: 0.9375rem;
    position: relative;
    margin-bottom: 25px;
    padding-left: 30px;
    color: #ffffff;
    list-style-type: none;
}
.feature-list li:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    display: block;
    font-family: Ionicons;
    content: "\f122";
    font-size: 0.75rem;
    color: #034EA2;
}
.about-icon-box__content p.content {
  font-size: 15px;
}

.mb-10 {
  margin-bottom: 40px;
}
.py-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact-info-box {
    position: relative;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 20px;

    /* FIGMA MATCH SHADOW */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
}

/* Bottom gradient line */
.contact-info-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00AEEF 0%, #034EA2 100%);
}
.contact-info-box h6{
  font-size: 22px;
}
.contact-info-box p{
font-size: 16px;
}
h2.fw-bold.mb-10.contact_heading {
    font-size: 50px;
}
label.form-label.fw-medium{
  font-size: 20px;
  color: #222222;
}
input.form-control , textarea.form-control {
  border-color: #A9A9A9;
  color: #888888;
  font-size: 15px;
}
.row.gx-5.py-10.align-items-start.right_form {
  gap: 8%;
}


.product-cards {
    display: flex;
    flex-direction: column;
    height: 100%; /* parent row ni height follow karva mate */
}
.product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
}
.products-row {
    display: flex;
    gap: 20px; /* boxes vachche space */
    align-items: stretch; /* badha boxes same height ma */
}
/* Floating white box */
/* .product-info {
    background: #fff;
    padding: 20px;
    width: 85%;
    margin: -60px auto 0;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
} */
.product-info {
    background: #fff;
    padding: 20px;
    width: 85%;
    margin: -60px auto 0;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    flex-grow: 1; /* badha cards ne equal height aapvu */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* content ne space ma divide kare */
}
.product-info::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00AEEF 0%, #034EA2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-info:hover {
    cursor: pointer;
}
.product-info:hover::after {
    opacity: 1;
    cursor: pointer;
}
.product-info h6 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 22px;
    color: #11202D;
}
h6.blog-heading {
   margin-bottom: 50px;
}
.product-info p {
    font-size: 16px;
    color: #58595B;
    margin-bottom: 30px;
}

.product-info a {
    font-size: 16px;
    color: #58595B;
    text-decoration: none;
    font-weight: 500;
}

.product-info a:hover {
    text-decoration: none;
    color: #034EA2;

}
.product-cta {
      display: flex;
    justify-content: center;
    margin-top: 20px;
}
.product-heading {
  font-size: 50px;
  padding-top: 5%;
}


/* BANNER */
/* .product_detail_banner {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.product_detail_banner_img {
    height: 100%;
    object-fit: cover;
}

.product_detail_banner_overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.45); *
} */

/* .product_detail_banner_content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
} */

/* .product_detail_banner_content h2 {
    font-size: 36px;
    font-weight: 600;
} */

/* IMAGE */
/* .product_detail_main_img {
    max-width: 80%;
} */

/* SIDEBAR */
/* .product_detail_sidebar {
    border: 1px solid #e5e5e5;
    padding: 20px;
}

.product_detail_sidebar_title {
    font-weight: 600;
    margin-bottom: 15px;
}

.product_detail_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product_detail_list li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.product_detail_list li.active {
    color: #0d6efd;
    font-weight: 600;
} */

/* CONTENT */
/* .product_detail_heading {
    font-size: 18px;
}

.product_detail_desc {
    font-size: 14px;
} */

/* TABLE */
/* .product_detail_table th {
    background: #f8f9fa;
    font-size: 14px;
}

.product_detail_table td {
    font-size: 14px;
} */
/* .product_detail_banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
} *
./* product_detail_banner_content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  width: 100%;
  }
  
  .product_detail_banner_content h2 {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 15px 0px 0px;
  font-size: 40px;
  font-weight: 600;
  }
  h2.text-center.fw-bold.mb-4.product_detail_title {
  font-size: 50px;
  padding-bottom: 20px;
  } */
   .product_detail_banner {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.product_detail_banner_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional overlay (enable if needed) */
.product_detail_banner_overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.4); */
    z-index: 1;
}

/* Banner text : LEFT + VERTICAL CENTER */
.product_detail_banner_content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    width: 100%;
}

.product_detail_banner_content h2 {
    max-width: 1440px;          /* container width */
    margin: 0 auto;
    padding: 0 15px;
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
}


/* =========================
   MAIN PRODUCT IMAGE
========================= */
.product_detail_main_img {
    max-width: 80%;
}


/* =========================
   SIDEBAR
========================= */
.product_detail_sidebar {
    /* border: 1px solid #e5e5e5; */
    background: #fff;
    padding: 20px 0;
      border: 1px solid #e6e6e6;
    box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.10);
}

.product_detail_sidebar_title {
    font-weight: 600;
    font-size: 22px;
    padding: 0 20px 15px;
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 10px;
    color: #11202D;
}

.product_detail_list {
    list-style: none;
    padding: 0;
    margin: 0;
        width: 100%;
    margin-left: 20px;
}

.product_detail_list li {
    padding: 10px 20px;
    font-size: 18px;
    /* border-bottom: 1px solid #f1f1f1; */
    cursor: pointer;
    transition: all 0.3s ease;
    color: #58595B;
        margin-bottom: 6px;
}

/* Active product (IMAGE-2 style) */
.product_detail_list li.active {
    background: linear-gradient(
        90deg,
        #034EA2 0%,
        rgba(3, 78, 162, 0.7) 50%,
        rgba(3, 78, 162, 0.0) 90%
    );
    color: #fff;
    font-weight: 600;
    width: auto;
}
.product_detail_list li.active a {
    color: #fff;
}
.product_detail_list li a{
  color: #58595B;
}
/* Hover */


/* =========================
   CONTENT AREA
========================= */
.product_detail_heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #11202D;
    padding-bottom: 10px;
}

.product_detail_desc {
    font-size: 18px;
    color: #58595B !important;
    line-height: 26px;
    max-width: 95%;
    padding: 10px 0px;
}


/* =========================
   TABLE
========================= */
.product_detail_table {
    border-color: #e5e5e5;
}

.product_detail_table th {
        background: #ffffff;
    font-size: 18px;
    font-weight: 600;
    /* text-align: center; */
    color: #58595B;
}

.product_detail_table td {
    font-size: 16px;
    color: #58595B;
}


/* =========================
   BUTTON
========================= */
.product_detail_btn {
    background: #0d5bd7;
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 14px;
}


/* =========================
   PAGE TITLE BELOW BANNER
========================= */
h2.text-center.fw-bold.mb-4.product_detail_title {
    font-size: 50px;
    padding-bottom: 20px;
}
.product_detail_table th:first-child {
  white-space: nowrap;
}
.product_detail_table th:first-child,
.product_detail_table td:first-child {
  white-space: nowrap;
}

@media (max-width: 767px) {
h1 {
  font-size: 30px !important;
}
p {
  font-size: 18px !important;
}
h2 {
  font-size: 26px !important;
}
.industries-section {
  padding: 0;
}
.reviews-section {
  padding: 50px 0 50px 0;
}
.blog-list-item h6 {
  font-size: 20px;
}
h5.featured-heading {
  font-size: 22px;
}
.section-space--inner--120 {
      padding-top: 60px;
    padding-bottom: 60px;
}
.icon-info-area.section-space--inner--120 {
    margin-left: 20px;
}
 .single-icon-info__title {
  font-size: 22px;
 }
 .footer-widget__title {
  margin-bottom: 18px;
 }
 .footer-widget{
  padding: 35px 0px 0px 0px;
 }
 .footer-widget__title {
  font-size: 16px;
 }
 
h4.footer-widget__title.main-start {
    display: none;
} 
ul.footer-widget__navigation {
  margin-top: 0px !important;
}
.footer-widget.last {
  padding: 0;
}
 .footer-copyright-right__navigation li{
  padding: 0 3px;
 }
 ul.footer-copyright-right__navigation {
  padding-left: 0px;
  margin-bottom: 0px;
 }
 .footer-copyright-right__navigation li a {
  color: #fff;
 }
 .footer-copyright-wrapper {
  text-align: center;
 }
 .footer-row{
  gap: 10px;
 }
 .footer-copyright-right {
  text-align: center;
 }
 .footer-logo {
  width: 45%;
 }
 .sm-min-vh-70 {
  min-height: 70vh !important;
 }
 .hero-section {
  height: auto;
 }
 .feature-background__content.feature-background__content--style2.contant_main {
     padding-left: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
 }
 .feature-list li { 
line-height: normal;
 }
 .contacts-padding {
    margin-top: 10%;
}
.product_detail_banner {
  height: 200px;
}
.product_detail_banner_content h2 {
      padding: 0 25px;
}
table.table.table-bordered.product_detail_table {
    overflow: auto;
    display: block;
}
.product_detail_list li a {
  font-size: 14px;
}
.product_detail_list li {
  margin-bottom: 0px;
    padding: 10px 0px 10px 20px;
}
.product_detail_list li.active {
      margin-left: 10px;
}
.industries-left p {
    max-width: 350px; 
}
.industries-left {
  margin-left: 0%;
}
.industries-right {
  width: 60%;
}
.box {
  height: auto;
}
.box.blue {
    padding: 22px; 
}
.box h5 {
    font-size: 16px;
    line-height: normal;
    margin: 0;
}
.box.light img {
  margin-bottom: 20px;
}
img.mobile_logo {
  height: 40px !important;
}
.icon-info-area.section-space--inner--120.main_in {
  padding-left: 0;
          margin-left: 0;
}
.product_detail_list {
  margin-left: 0px;
}
}


/* intl-tel-input full width */
.iti {
    width: 100%;
}

/* Match Bootstrap input height */
.iti__control,
.iti input {
    height: calc(3.2rem + 5px); /* same as py-3 */
    font-size: 15px;
    color: #888888;
}

/* Flag box styling */
.iti__flag-container {
    border-right: 1px solid #ced4da;
}

/* Input border match Bootstrap */
.iti input {
    border: 1px solid #A9A9A9;
    border-radius: 0.375rem;
    padding-left: 90px !important; /* space for flag + code */
}

/* Focus same as Bootstrap */
.iti input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

/* Dropdown z-index fix */
.iti__country-list {
    z-index: 9999;
}
/* Overlay with blur */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal card */
.custom-modal {
    /* background: #fff;
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: scaleIn 0.3s ease; */
      background: #fff;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;          /* 🔥 IMPORTANT */
    border-radius: 8px;
    padding: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: scaleIn 0.3s ease;

    display: flex;             /* 🔥 */
    flex-direction: column;    /* 🔥 */
    overflow: hidden;   
}
.custom-modal-body {
    overflow-y: auto;          /* 🔥 INTERNAL SCROLL */
    padding-right: 5px;
    -webkit-overflow-scrolling: touch;
}
/* Title */
.modal-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}
h2.fw-bold.mb-10.modal_text {
    font-size: 32px;
    text-align: center;
}
/* Animation */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .custom-modal {
        margin: 0 15px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) { 
h2 {
  font-size: 30px !important;
}
h1{
  font-size: 40px !important;
}
.footer1 {
  padding-bottom: 6%;
}
.feature-background__content.feature-background__content--style2.contant_main {
      padding-left: 50px !important;
}
.product_detail_banner_content h2 {
  padding: 0 45px;
}
.col-lg-5.contacts-padding {
  margin-top: 10%;
}
}
@media screen and (min-width: 992px) and (max-width: 1024px) { 
h2 {
  font-size: 30px !important;
}
h1{
  font-size: 40px !important;
}
.about_page .feature-background__content-area--style2 {
  padding-left: 50px;
}
.feature-background__content.feature-background__content--style2.contant_main {
      padding-left: 50px !important;
}
.product_detail_banner_content h2 {
  padding: 0 45px;
}
.product_detail_list {
  margin-left: 5px;
}
} 


/* blog */
.blog-card {
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 22px;
}

.blog-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.blog-content a {
  font-size: 14px;
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* CTA Button */
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d6efd;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.view-btn span {
  font-size: 18px;
  line-height: 1;
}

.view-btn:hover {
  background: #0b5ed7;
}


.key-blogs {
  padding: 80px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
}

.blog-card {
  border: 1px solid #eee;
  background: #fff;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 260px;           /* SAME image height */
  object-fit: cover;
}

.blog-body {
  padding: 22px;
}

.blog-body h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 14px;
}

.blog-body a {
  font-size: 14px;
  color: #0d6efd;
  text-decoration: none;
}

.blog-body a:hover {
  text-decoration: underline;
}
.blog_contents {
    margin: 0 auto;
    padding-top: 4%;
}
a.blog-link:hover {
  color: #034EA2;
  text-decoration: underline;
}
h6.blog-heading:hover {
    color: #034EA2;
}