
/*======================================
    Normalize CSS
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
html {
  scroll-behavior: smooth;
}
:root{
    --primary : #223bb2;
    --secondary : #000;
    --pink : #e2277d;
    --yellow : #fda51d;
    --blue : #473cbc;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-pink {
    background-color: var(--pink) !important;
}
.text-pink {
    color: var(--pink) !important;
}
.bg-yellow {
    background-color: var(--yellow) !important;
}
.text-yellow {
    color: var(--yellow) !important;
}
.bg-blue {
    background-color: var(--blue) !important;
}
.text-blue {
    color: var(--blue) !important;
}
.text-justify {
    text-align: justify;
}
body {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-weight: normal;
  color: #727272;
  overflow-x: hidden;
  font-size: 15px;
}
.underLine:before{
  content:"";
  width: 115px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
/* Mobile view ke liye hide kar do */
@media (max-width: 767px) {
  .underLine:before {
    display: none;
  }
}
p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 28px;
}

* {
  margin: 0;
  padding: 0;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

select {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: var(--primary);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;
  background-color: -internal-light-dark(white, #3b3b3b);
  cursor: default;
  margin: 0em;
  font: 400 14px;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark(#767676, #858585);
  -o-border-image: initial;
     border-image: initial;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
  margin: 0px;
  color: var(--primary) ;
}
ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}


.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/* Bread Crumbs */
.breadcrumbs {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  padding-top: 15%;
  z-index: 2;
  overflow: hidden;
}
.breadcrumbs.overlay::before {
  background-color: #18222d9c;
  opacity: 0.9;
  z-index: -1;
}
.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 35px;
  color: #fff;
  font-weight: 700;
  position: relative;
  line-height: 50px;
  padding-bottom: 20px;
}
.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
}
.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li a {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  color: var(--primary);
}
.breadcrumbs .breadcrumb-nav li a:after {
  content: '';
  height: 80%;
  width: 2px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  right: 0;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
  .breadcrumbs {
    padding-top: 30%; /* Adjust as needed */
  }
}

@media (max-width: 992px) {
  .breadcrumbs {
    padding-top: 35%; /* Adjust as needed */
  }
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding-top: 40%; /* Adjust as needed */
  }
}

@media (max-width: 576px) {
  .breadcrumbs {
    padding-top: 45%; /* Adjust as needed */
  }
}

@media (max-width: 400px) {
  .breadcrumbs {
    padding-top: 50%; /* Adjust as needed */
  }
}



.section {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 300px;
  position: relative;
  z-index: 5;
}

.section-title h3 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--secondary);
  text-transform: capitalize;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 42px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
}

.section-title p {
  font-size: 16px;
  line-height: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    padding: 0px 200px;
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    padding: 0px 20px;
    margin-bottom: 50px;
  }
  .section-title h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .section-title h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .section-title p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .section-title {
    padding: 0px 10px;
    margin-bottom: 40px;
  }
  .section-title h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .section-title h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 18px;
  }
  .section-title p {
    font-size: 15px;
  }
}

.section-title.align-right {
  padding: 0;
  padding-left: 600px;
}

.section-title.align-right h2:before {
  display: none;
}

.section-title.align-right h2:after {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 2px;
  width: 50px;
  background: var(--secondary);
  content: "";
}

.section-title.align-left {
  padding: 0;
  padding-right: 600px;
}

.section-title.align-left h2:before {
  left: 0;
  margin-left: 0;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--secondary);
}

/* Overlay */

.overlay {
  position: relative;
  z-index: 1;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: var(--primary);
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}


.button .btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 30px;
  background-color: var(--secondary);
  color: #fff;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  margin-right: 7px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn {
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn {
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn i {
  display: inline-block;
  margin-right: 5px;
}

.button .btn:last-child {
  margin: 0;
}

.button .btn:hover {
  color: #fff;
  background-color: var(--primary);
}

.button {
  margin-left: 0 !important;
}

.button .btn-alt {
  background-color: var(--primary) !important;
  color: #fff !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn-alt {
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn-alt {
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn-alt:hover {
  background-color: var(--secondary) !important;
  color: #fff !important;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

/*======================================
    Header CSS
========================================*/
.header {
  position: relative;
}

/*===== NAVBAR =====*/
.navbar {
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: absolute;
  background: transparent !important;
}

/*.header-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}*/

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #333;
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: var(--primary);
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: #333;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar {
    padding: 17px 0;
  }
}

@media (max-width: 767px) {
  .navbar {
    padding: 17px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 200px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #333;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(29, 42, 93, 0.1);
            box-shadow: 0px 15px 20px 0px rgba(29, 42, 93, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 28px;
}

.navbar-nav .nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 35px 0;
  position: relative;
  text-transform: capitalize;
}

.navbar-nav .nav-item a i {
  display: inline-block;
  margin-left: 4px;
  font-size: 8px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #5E678C;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #5E678C;
  }
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: var(--secondary);
}

.header .navbar-nav .dropdown-menu li a.active {
  color: var(--secondary) !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item a:hover::after,
  .navbar-nav .nav-item a:hover::before,
  .navbar-nav .nav-item a.active::after,
  .navbar-nav .nav-item a.active::before {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item a:hover::after,
  .navbar-nav .nav-item a:hover::before,
  .navbar-nav .nav-item a.active::after,
  .navbar-nav .nav-item a.active::before {
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .sub-nav-toggler {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

.header {
  position: relative;
}

/* Header Button */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .button {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header .button {
    display: none !important;
  }
}

.header .button .btn {
  color: #fff;
  padding: 12px 25px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header .button .btn:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: transparent;
}

/* Dropdown Menu */
.header .navbar-nav .dropdown-menu {
  background: #fff;
  width: 230px;
  text-align: left;
  -webkit-box-shadow: 0 15px 26px rgba(0, 0, 0, 0.07);
          box-shadow: 0 15px 26px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 0px 0 8px 8px;
  margin: 0;
  border: none;
  border-top: 3px solid var(--primary);
  padding: 15px 0;
}

.header .navbar-nav .dropdown-menu li a {
  padding: 10px 25px;
  color: var(--primary);
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  background: transparent;
  border-radius: 0;
  text-transform: uppercase;
}

.header .navbar-nav .dropdown-menu li a:hover {
  color: var(--primary);
}

.header .navbar-nav li .sub-menu li a:before {
  display: none;
}

.header .navbar-nav li .sub-menu li:last-child a {
  border-bottom: 0px;
}

.header .navbar-nav li .sub-menu li:hover a {
  color: var(--primary);
}

.header .button {
  display: inline-block;
  margin-left: 45px;
}
.navbar-expand-lg .navbar-nav {
  margin-left: auto;
}
.button .btn .dir-part {
  background-color: #ffffff;
}

.header .navbar-nav li .sub-menu li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.header {
    position: relative; /* Ensure position is set to relative, absolute, or fixed */
    z-index: 10; /* Higher value than slider to appear on top */
}



/*======================================
    Hero Area CSS
========================================*/
#slider {
    position: relative;
    z-index: 1;
}
.hero-area {
  position: relative;
  background: #F4F7FA;
  overflow: hidden;
}

.hero-area .hero-inner {
    width: 100%;
    height: 100vh; /* or whatever height you want */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 3;
}

.hero-area.style2 .tns-controls {
  width: 100%;
}

.hero-area.style2 .tns-controls button:first-child {
  left: 30px;
}

.hero-area.style2 .tns-controls button:last-child {
  right: 30px;
}

.hero-area.style2 .tns-controls button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 2;
  color: var(--primary);
  font-size: 17px;
  background: #fff;
  border: none;
  padding: 2px 5px;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  position: absolute;
  z-index: 5;
  top: 50%;
  margin-top: -25px;
}

.hero-area.style2 .tns-controls button:hover {
  color: var(--primary);
}

.hero-area.style2 .hero-inner {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 3;
  margin-top: 90px;
}


/*======================================
   Inner pages Sidebar
========================================*/
.sidebar .widget {
  padding: 40px;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 5px;
  border: 1px solid var(--primary);
}

.sidebar .widget:last-child {
  margin-bottom: 0;
}

.sidebar .widget .widget-title {
  font-size: 17px;
  font-weight: 600;
  color: #081828;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--primary);
}


.sidebar .widget.categories-widget ul li {
  margin-bottom: 10px;
}

.sidebar .widget.categories-widget ul li:last-child {
  margin-bottom: 0;
}

.sidebar .widget.categories-widget ul li a {
  padding: 14px 20px;
  padding-right: 20px;
  background-color: #fff;
  color: #081828;
  font-weight: 500;
  display: block;
  border-radius: 5px;
  border: 1px solid var(--primary);
  position: relative;
  padding-right: 40px;
}

.sidebar .widget.categories-widget ul li a i {
  float: right;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 20px;
  height: 18px;
  top: 50%;
  margin-top: -9px;
}

.sidebar .widget.categories-widget ul li a:hover {
  color: #fff;
  border-color: transparent;
  background-color: var(--primary);
}

.sidebar .widget.categories-widget ul li a:hover span {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}
.sidebar .widget.popular-tag-widget {
  padding-bottom: 30px;
}

.popular-tag-widget .tags > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 20px;
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500;
  background: var(--primary);
  margin-right: 7px;
  margin-bottom: 10px;
  color: #fff;
  background: transparent;
  color: #888;
  border: 1px solid var(--primary);
  border-radius: 5px;
}

.popular-tag-widget .tags > a:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: transparent;
}

.widget.call-us {
  background-color: var(--primary);
  background-image: url("../images/pattern.png");
  border: none;
}

.widget.call-us h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.widget.call-us h4 span {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.widget.call-us .button {
  margin-top: 30px;
}

.widget.call-us .button .btn {
  background-color: #fff;
  color: #081828;
}


/*======================================
   Clients Logo CSS
========================================*/
.client-logo {
  background-color: #F4F7FA;
  padding: 60px 0;
}

.client-logo .single-logo {
  padding: 0 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo .single-logo {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .client-logo .single-logo {
    padding: 15px 30px;
    border: 1px solid #eee;
    background: #fff;
  }
}

@media (max-width: 767px) {
  .client-logo .single-logo img {
    width: 75%;
  }
}

/*======================================
    organiser CSS
========================================*/
.organiser .section-title {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .organiser .section-title {
    margin-bottom: 30px;
  }
}

/* Card */
.organiser .single-organiser {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

/* Image wrapper */
.organiser .organiser-image {
  width: 100%;
  height: 110px; /* desktop fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

/* Equal size images */
.organiser .organiser-image img {
  object-fit: contain; /* pura image visible rahe */
  object-position: center;
  border-radius: 10%;
  background-color: #fff;
  padding: 10px;
}

/* Title */
.organiser .single-organiser h4 {
  font-size: 16px;
  font-weight: 600;
  flex-grow: 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .organiser .organiser-image {
    height: 120px;
  }
  .organiser .organiser-image img {
    width: 180px;
    height: 180px;
  }
}

/*======================================
    Footer CSS
========================================*/
.footer-bg {
    background: linear-gradient(rgba(0, 0, 0,0), rgba(0, 0, 0, 0)),
                url(../images/footer-bg.png) no-repeat;
    background-size: cover;
    position: relative;
    padding-bottom: 0;
    width: 100%;
    padding-top:230px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .single-footer {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer .single-footer {
    margin-top: 40px;
    text-align: center;
  }
}

.footer .single-footer.f-about {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .footer .single-footer.f-about {
    padding: 0;
  }
}

.footer .single-footer.f-about .logo {
  margin-bottom: 20px;
}

.footer .single-footer.f-about .logo img {
    width: 70%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .single-footer.f-about .logo img {
    width: 125px;
  }
}

@media (max-width: 767px) {
  .footer .single-footer.f-about .logo img {
    width: 120px;
  }
}

.footer .single-footer.f-about p {
  color: #000;
  margin-top: 20px;
  font-size: 15px;
  margin-bottom: 25px;
}

.footer .single-footer.f-about .social-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
    padding-top: 12px;
}

.footer .single-footer.f-about .social li {
  display: inline-block;
  margin-right: 15px;
}

.footer .single-footer.f-about .social li:last-child {
  margin: 0;
}

.footer .single-footer.f-about .social li a {
  color: #fff;
}

.footer .single-footer.f-about .social li a:hover {
  color: var(--secondary);
}

.footer .single-footer.f-about .copyright-text {
  color: #fff;
  font-size: 15px;
  margin-top: 40px;
}

.footer .single-footer.f-about .copyright-text span {
  display: block;
}

@media (max-width: 767px) {
  .footer .single-footer.f-about .copyright-text {
    margin-top: 20px;
  }
}

.footer .single-footer.f-about .copyright-text a {
  color: #fff;
  text-decoration: underline;
}

.footer .single-footer.f-link li {
  display: block;
  margin-bottom: 15px;
}

.footer .single-footer.f-link li:last-child {
  margin: 0;
}

.footer .single-footer.f-link li a {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.footer .single-footer.f-link li a:hover {
  color: var(--pink);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .footer .single-footer.newsletter {
    padding-left: 80px;
  }
}

.footer .single-footer.newsletter p {
  color: #fff;
}

.footer .single-footer h3 {
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .single-footer h3 {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .footer .single-footer h3 {
    margin-bottom: 25px;
  }
}


.footer .copyright-area .inner-content {
  border-top: 1px solid rgba(238, 238, 238, 0.288);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .footer .copyright-area .inner-content {
    margin-top: 50px;
    text-align: center;
  }
}

.footer .copyright-area .copyright-owner {
  text-align: right;
}

@media (max-width: 767px) {
  .footer .copyright-area .copyright-owner {
    text-align: center;
    margin-top: 3px;
  }
}

.footer .copyright-area p {
  color: #fff;
  font-size: 15px;
}

.footer .copyright-area p a {
  text-decoration: underline;
  color: #4a4747;
}

.footer .copyright-area p a:hover {
  color: var(--secondary);
}

/*======================================
    About Us CSS
========================================*/
.about-us {
  background-color: #F4F7FA;
  position: relative;
}

.about-us .round-shape {
  position: absolute;
  top: -100px;
  left: -100px;
  height: 200px;
  width: 200px;
  z-index: 9;
}

.about-us .about-left {
  padding-right: 100px;
}

.about-us .about-left p {
  margin-bottom: 25px;
}

.about-us .about-left .section-title {
  padding: 0;
  margin-bottom: 40px;
}

.about-us .about-left .section-title span {
  position: relative;
  padding-left: 60px;
  text-transform: uppercase;
}

.about-us .about-left .section-title span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  height: 2px;
  width: 50px;
  margin-top: -1px;
  background-color: var(--primary);
}

.about-us .about-left .section-title h2 {
  margin: 0;
  font-size: 40px;
  line-height: 55px;
  margin-bottom: 40px;
}

.about-us .about-left .section-title h2::before {
  display: none;
}

.about-us .about-right {
  position: relative;
}

.about-us .about-right img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.about-us .about-right .project {
  color: #fff;
  background-color: var(--primary);
  padding: 45px 40px;
  display: inline-block;
  position: absolute;
  left: 30px;
  bottom: 30px;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  background-image: url("../images/pattern.png");
}

.about-us .about-right .project span {
  display: block;
  font-size: 30px;
  margin-top: 8px;
  font-weight: 800;
}

/*======================================
    Our parllax CSS
========================================*/
.parllax-quaot {
    background: linear-gradient(rgba(0, 0, 0,0),rgb(0, 0, 0,0)), url(../images/parallax.png) center center no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
.parllax-quaot .counter-box {
    /*border: 1px solid #fff;*/
    border-radius: 15px;
    padding: 30px;
}

.parllax-quaot h3 {
  font-size: 60px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  color: #fff;
}

.parllax-quaot  p {
  font-size: 15px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
    .parllax-quaot {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
        padding: 40px 0;
    }

    .parllax-quaot h3 {
        font-size: 36px;
    }

    .parllax-quaot h4 {
        font-size: 18px;
    }
}
/*======================================
    Our Merchant & buyer CSS
========================================*/
.parllax-mb-quaot {
    background: linear-gradient(rgba(0, 0, 0, 0),rgb(0, 0, 0,0)), url(../images/parallax.png) center center no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}
/* Mobile view fix */
@media only screen and (max-width: 768px) {
    .parllax-mb-quaot {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
}
.parllax-mb-quaot .counter-box {
    /* border: 1px solid #fff; */
    border-radius: 15px;
}

.parllax-mb-quaot h3 {
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  color: #fff;
}

.parllax-mb-quaot  p {
  font-size: 15px;
  color: #fff;
}
/*======================================
    Contact CSS
========================================*/
.contact-us {
  position: relative;
  background-color: #F4F7FA;
}

.contact-us .inner-title {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px dashed var(--primary);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.contact-us .inner-content {
  padding: 50px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}

.contact-us .title {
  margin-bottom: 30px;
}

.contact-us .contant-inner-title {
  margin-bottom: 45px;
}

.contact-us .single-head {
  position: relative;
  z-index: 5;
}

.contact-us .single-info {
  text-align: left;
  margin-bottom: 30px;
  padding-left: 70px;
  position: relative;
}

.contact-us .single-info i {
  font-size: 18px;
  display: inline-block;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  line-height: 50px;
  border-radius: 5px;
}

.contact-us .single-info ul {
  display: inline-block;
}

.contact-us .single-info ul span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
}

.contact-us .single-info ul li:last-child {
  margin-bottom: 0;
}

.contact-us .single-info ul li {
  font-weight: 500;
  display: inline-block;
  font-size: 13px;
  color: #081828;
  display: block;
  margin-bottom: 4px;
}

.contact-us .single-info ul li a {
  font-weight: 500;
  display: inline-block;
  font-size: 13px;
  color: #081828;
}

.contact-us .single-info ul li a:hover {
  color: var(--primary);
}

.contact-us .single-info .title {
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
}

.contact-us .single-info .title span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}

.contact-us .form-main {
  margin-right: 50px;
}

.contact-us .form .form-group {
  margin-bottom: 15px;
  display: block;
}

.contact-us .form .form-group input {
  height: 55px;
  line-height: 55px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 0px 20px;
  color: #333;
  border-radius: 0px;
  font-weight: 400;
  border-radius: 5px;
}

.contact-us .form .form-group textarea {
  height: 180px;
  width: 100%;
  border: 1px solid #e6e2f5;
  padding: 15px 20px;
  color: #333;
  border-radius: 0px;
  resize: none;
  font-weight: 400;
  border-radius: 5px;
}

.contact-us .form .button {
  margin: 0;
}

.contact-us .form .button .btn {
  height: 50px;
  border: none;
}

.map-section {
  background-color: #fff;
}

.map-section .map-container {
  -webkit-box-shadow: 0 10px 30px rgba(111, 111, 111, 0.1);
          box-shadow: 0 10px 30px rgba(111, 111, 111, 0.1);
  padding: 20px;
  border-radius: 7px;
}




/*======================================
    Download Pages
========================================*/
.service-sidebar .download {
  background-color: #F4F7FA;
  padding: 35px;
  border: 1px solid #eee;
  border-radius: 5px;
}

.service-sidebar .download li {
  display: block;
  margin-bottom: 15px;
}

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

.service-sidebar .download li a {
  padding: 15px 20px;
  background-color: #fff;
  color: #081828;
  font-weight: 500;
  display: block;
  border-radius: 5px;
  border: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}

.service-sidebar .download li a i {
  float: right;
  font-size: 17px;
  position: absolute;
  top: 0;
  right: 20px;
  height: 18px;
  top: 50%;
  margin-top: -9px;
}

.service-sidebar .download li a:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: transparent;
}


/*======================================
    Call To Action CSS
========================================*/
.call-action {
  background-color: #F4F7FA;
}

.call-action .inner-content {
  position: relative;
  padding: 80px 0;
  border-radius: 10px;
  z-index: 0;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action .inner-content {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .call-action .inner-content {
    padding: 50px 0;
    text-align: center;
  }
}

.call-action .inner-content .bg-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.call-action .text h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: var(--primary);
}

.call-action .text h2 span {
  color: #000;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action .text h2 {
    font-size: 25px;
    line-height: 38px;
  }
}

@media (max-width: 767px) {
  .call-action .text h2 {
    font-size: 22px;
    line-height: 32px;
  }
}

.call-action .text h2 span {
  display: block;
  color: #000;
}

.call-action .button {
  float: right;
}

@media (max-width: 767px) {
  .call-action .button {
    float: none;
    margin-top: 30px;
  }
}





/*======================================
    Exhibitors Ragestrtion CSS
========================================*/
.exhib-bg {
  background-image: url(../images/exhib-bg3.jpg);
  background-size: 100%;
  padding: 60px 0;
}
.next-btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 30px;
  background-color: var(--secondary);
  color: #fff;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  margin-right: 7px;
  overflow: hidden;
}




.plans {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 10px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 10px 0px #d8dfeb;
}


.plans .plan input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plans .plan {
  cursor: pointer;
}

.plans .plan .plan-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e1e2e7;
  border-radius: 10px;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  position: relative;
}

.plans .plan .plan-details span {
  margin-bottom: 10px;
  display: block;
  font-size: 19px;
  line-height: 24px;
  color: #252f42;
}




.plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background: #2333ae;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
  box-shadow: 0px 0px 0px 2px #2333ae;
}

.plans .plan input[type="radio"]:checked + .plan-content {
  border: 2px solid #2333ae;
  background: #abafda2e;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}

@media screen and (max-width: 991px) {
  .plans {
    margin: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px;
  }

  .plans .plan {
    width: 100%;
  }

  .plan.complete-plan {
    margin-top: 20px;
  }

  .plans .plan .plan-content .plan-details {
    width: 70%;
    display: inline-block;
  }

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 45%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@media screen and (max-width: 767px) {
  .plans .plan .plan-content .plan-details {
    width: 60%;
    display: inline-block;
  }
}

@media screen and (max-width: 540px) {
  .plans .plan .plan-content img {
    margin-bottom: 20px;
    height: 56px;
    -webkit-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
  }

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 20px;
    right: 10px;
  }

  .plans .plan .plan-content .plan-details {
    width: 100%;
  }

  .plans .plan .plan-content {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}





.exhibitors-reg .card {
    border: 1px solid #473cbc;
}
.form-control {
  border: 1px solid #473cbc;

}
.exhibitors-reg .next-btn {
    background-color: #473cbc;
}


/*======================================
    Error 404 CSS
========================================*/
.error-area {
  height: 100vh;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.error-area .verticle-lines .vlines {
  width: 3px;
  height: 100%;
  background: var(--primary);
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-animation-name: lineanim;
  animation-name: lineanim;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  opacity: 0.2;
}

.error-area .verticle-lines .vlines.one {
  left: 20%;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.error-area .verticle-lines .vlines.two {
  left: 40%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.error-area .verticle-lines .vlines.three {
  left: 60%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.error-area .verticle-lines .vlines.four {
  left: 80%;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@-webkit-keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

@keyframes lineanim {
  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }
  50.1% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  100% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  vertical-align: middle;
}

.d-table-cell {
  display: table-cell !important;
}

.error-area .error-content h1 {
  font-size: 100px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: var(--primary);
  text-shadow: 4px 0px 0px var(--primary);
}

.error-area .error-content h2 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  margin-top: 10px;
  color: #081828;
}

.error-area .error-content p {
  font-weight: 400;
  margin-bottom: 30px;
}
/* Exhibitors list model fix img */
.fixed-size {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.exhibitorsList-bg {
    background-image: url(../images/exhibitorsLists-bg.jpg);
}

/*

.form-control {
    border:0px;
    background-color: #fff;
    background-image: none;
    border: 2px solid #ccc;
    border-radius: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.075) inset;
    color: #555;
    display: block;
    font-size: 14px;
    height: 50px;
    line-height: 1.42857;
    padding: 6px 12px;
    margin: 10px 0px 10px 0px;
}
.form-control:focus {
    border-color: #66afe9;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
    outline: 0 none;
}
*/


/*FFS New Csss*/
.btn {
    transition: all 0.3s ease;
  }
  .btn:hover {
    transform: scale(1.05);
  }
  .p-4 {
    transition: all 0.3s ease;
  }
  .p-4:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}


.marchants .nav-tabs {
    border-bottom: 0px solid #dee2e6;
  }

.marchants .nav-tabs .nav-link {
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    background: #f1f1f1;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
  }

.marchants .nav-tabs .nav-link:hover {
    background: #ffc107;
    color: #000;
  }

.marchants .nav-tabs .nav-link.active {
    background: #ff5722;
    color: #fff;
    font-weight: 600;
    border: none;
  }

  @media (max-width: 576px) {
    .marchants .nav-tabs {
      flex-wrap: wrap;
    }
    .marchants .nav-tabs .nav-link {
      margin-bottom: 8px;
    }
  }














.home-section-3 .card {
  padding: 0;
  justify-content: center;
  border: none;
}
.home-section-3 .main-title {
  margin-bottom: 80px;
  color: #222222;
  text-align: center;
}
@media (max-width: 992px) {
  .home-section-3 .main-title {
    margin-bottom: 50px;
  }
}
.home-section-3 .main-title span {
  opacity: .5;
}
.home-section-3 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-right: 20px;
}
@media (max-width: 992px) {
  .home-section-3 .items-wrapper {
    grid-template-columns: 1fr;
    margin: 0 0 40px 0;
  }
}
.home-section-3 .items-wrapper .item:nth-child(2n) .item-wrapper .card-box .icon-wrapper .ssf-iconfont {
  background-color: #e354e3;
}
.home-section-3 .items-wrapper .item:nth-child(3n) .item-wrapper .card-box .icon-wrapper .ssf-iconfont {
  background-color: #f85f32;
}
.home-section-3 .items-wrapper .item .item-wrapper {
  border-radius: 25px !important;
  background-color: #e1edff;
  height: 100%;
  padding: 30px;
}
@media (max-width: 768px) {
  .home-section-3 .items-wrapper .item .item-wrapper {
    padding: 20px 15px;
  }
}
.home-section-3 .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  text-align: right;
  margin-bottom: 50px;
  margin-top: -4rem;
}
.home-section-3 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .ssf-iconfont {
  display: inline-flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background-color: #715edb;
  color: #ffffff;
  font-size: 28px;
  transition: all 0.3s ease-in-out;
}
.home-section-3 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.home-section-3 .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.home-section-3 .image-wrapper {
  margin-left: 20px;
}
@media (max-width: 992px) {
  .home-section-3 .image-wrapper {
    margin: 0;
  }
}
.home-section-3 .image-wrapper img {
  height: 600px;
  object-fit: cover;
  border-radius: 25px !important;
}
@media (max-width: 992px) {
  .home-section-3 .image-wrapper img {
    height: 300px;
  }
}
.home-section-3 .card-title {
  color: #222222;
}
.home-section-3 .card-text {
  color: #222222;
}


.grayscale-hover {
  transition: all 0.3s ease;
  filter: grayscale(100%);
  border-radius: 15px;
}

.grayscale-hover:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}



.segment-box {
    transition: all 0.3s ease-in-out;
    border: 1px solid #e0e0e0;
}
.segment-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background-color: #f9f9ff;
}
@media (max-width: 768px) {
    .segmentTitle {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 576px) {
    .segmentTitle {
        font-size: 0.75rem !important;
    }
}




.tick-list {
    list-style: none;
    padding-left: 0;
}

.tick-list li::before {
    content: "✔";
    color: green;
    font-size: 0.9em; /* chhota tick */
    margin-right: 8px;
    vertical-align: middle;
}



.comappny-banner-section {
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;                 /* desktop height */
}

/* Mobile view */
@media (max-width: 767px) {
  .comappny-banner-section {
    background-size: contain;    /* image pura dikhe */
    background-repeat: no-repeat;
    height: 130px;               /* mobile height fix */
    background-color: #fff;      /* agar extra space aaye to fill ho jaye */
  }
}



/*promotion CSS*/

.promotion .text, .promotion .massage {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; /* Always uppercase */
}

.promotion .text {
  font-weight: 700;
  font-size: 21px;
  top: 53%;
  left: 25%;
  text-align: center;
  width: 300px;
  color: #fff;
}

.promotion .massage {
  font-weight: 600;
  font-size: 11px;
  top: 64%;
  left: 25%;
  width : 300px;
  color:  #ffff;
  text-align: center;
  overflow-wrap: anywhere;
}

@media only screen and (max-width: 1200px) {
  .promotion .text,
  .promotion .massage { transform: scale(0.8); }
  .promotion .text { top: 60%; left: 9%; }
  .promotion .massage { top: 66%; left: 10%; }
}
@media only screen and (max-width: 992px) {
  .promotion .text,
  .promotion .massage { transform: scale(0.9); }
  .promotion .text { top: 61%; left: 16%; }
  .promotion .massage { top: 66%; left: 17%; }
}
@media only screen and (max-width: 768px) {
  .promotion .set { flex-direction: column-reverse; }
  .promotion .text,
  .promotion .massage { transform: scale(0.9); }
  .promotion .text { top: 60%; left: 12%; }
  .promotion .massage { top: 66%; left: 13%; }
}
@media only screen and (max-width: 576px) {
  .promotion .text,
  .promotion .massage { transform: scale(0.8); }
  .promotion .text { top: 60%; left: 12%; }
  .promotion .massage { top: 66%; left: 13%; }
}
@media only screen and (max-width: 500px) {
  .promotion .text { top: 60%; left: 10%; }
  .promotion .massage { top: 66%; left: 11%; }
}
@media only screen and (max-width: 450px) {
  .promotion .text { top: 52%; left: -6%; }
  .promotion .massage { top: 57%; left: -6%; }
}
@media only screen and (max-width: 450px) {
  .promotion .text { top: 59%; left: 8%; }
  .promotion .massage { top: 66%; left: 9%; }
}
@media only screen and (max-width: 400px) {
  .promotion .text { top: 58%; left: 3% }
  .promotion .massage { top: 65%; left: 5% }
}
@media only screen and (max-width: 350px) {
  .promotion .text,
  .promotion .massage { transform: scale(0.8); }
}
@media only screen and (max-width: 330px) {
  .promotion .text { top: 58%; left: -0% }
  .promotion .massage { top: 66%; left: -0% }
}
@media only screen and (max-width: 300px) {
  .promotion .text,
  .promotion .massage { transform: scale(0.7); }
  .promotion .text { top: 57%; left: -4%; }
  .promotion .massage { top: 65%; left: -4%; }
}

