html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: FuturaBT-Book, sans-serif;
  font-family: "Jost", sans-serif;
  font-weight: normal;
  line-height: 24px;
  overflow-x: hidden;
}

@font-face {
  font-family: "FuturaBT-Light";
  src: url("../fonts/30E29C_0_0.eot");
  src: url("../fonts/30E29C_0_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_0_0.woff2") format("woff2"),
    url("../fonts/30E29C_0_0.woff") format("woff"),
    url("../fonts/30E29C_0_0.ttf") format("truetype");
}

@font-face {
  font-family: "FuturaBT-LightItalic";
  src: url("../fonts/30E29C_1_0.eot");
  src: url("../fonts/30E29C_1_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_1_0.woff2") format("woff2"),
    url("../fonts/30E29C_1_0.woff") format("woff"),
    url("../fonts/30E29C_1_0.ttf") format("truetype");
}

@font-face {
  font-family: "FuturaBT-Book";
  src: url("../fonts/30E29C_2_0.eot");
  src: url("../fonts/30E29C_2_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_2_0.woff2") format("woff2"),
    url("../fonts/30E29C_2_0.woff") format("woff"),
    url("../fonts/30E29C_2_0.ttf") format("truetype");
}

@font-face {
  font-family: "FuturaBT-Medium";
  src: url("../fonts/30E29C_3_0.eot");
  src: url("../fonts/30E29C_3_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_3_0.woff2") format("woff2"),
    url("../fonts/30E29C_3_0.woff") format("woff"),
    url("../fonts/30E29C_3_0.ttf") format("truetype");
}

@font-face {
  font-family: "FuturaBT-MediumItalic";
  src: url("../fonts/30E29C_4_0.eot");
  src: url("../fonts/30E29C_4_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_4_0.woff2") format("woff2"),
    url("../fonts/30E29C_4_0.woff") format("woff"),
    url("../fonts/30E29C_4_0.ttf") format("truetype");
}

@font-face {
  font-family: "FuturaBT-Bold";
  src: url("../fonts/30E29C_5_0.eot");
  src: url("../fonts/30E29C_5_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_5_0.woff2") format("woff2"),
    url("../fonts/30E29C_5_0.woff") format("woff"),
    url("../fonts/30E29C_5_0.ttf") format("truetype");
}

@font-face {
  font-family: "FuturaBT-Heavy";
  src: url("../fonts/30E29C_6_0.eot");
  src: url("../fonts/30E29C_6_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_6_0.woff2") format("woff2"),
    url("../fonts/30E29C_6_0.woff") format("woff"),
    url("../fonts/30E29C_6_0.ttf") format("truetype");
}

@font-face {
  font-family: "FuturaBT-HeavyItalic";
  src: url("../fonts/30E29C_7_0.eot");
  src: url("../fonts/30E29C_7_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_7_0.woff2") format("woff2"),
    url("../fonts/30E29C_7_0.woff") format("woff"),
    url("../fonts/30E29C_7_0.ttf") format("truetype");
}

@font-face {
  font-family: "BauerBodoniBT-Roman";
  src: url("../fonts/30E29C_8_0.eot");
  src: url("../fonts/30E29C_8_0.eot?#iefix") format("embedded-opentype"),
    url("../fonts/30E29C_8_0.woff2") format("woff2"),
    url("../fonts/30E29C_8_0.woff") format("woff"),
    url("../fonts/30E29C_8_0.ttf") format("truetype");
}


/* header */


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #33333300;
  padding: 10px 20px;
}


.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin: 0 25px;
}

.navbar ul li a {
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-weight: 600;
}

.navbar ul li a:hover {
  color: #ff9800;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.4s;
}



.gallery .col-lg-3 {
  padding-bottom: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 30px;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

/* Overlay */
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* Black overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Title text */
.gallery-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  opacity: 1;
  z-index: 2;
  transition: opacity 0.3s ease;
  width: 100%;
  text-align: center;
  background: #e17f29a3;
  padding: 12px;
  backdrop-filter: blur(5px);
}

/* Hover effects */
.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover .gallery-title {
  opacity: 1;
  background: #e17f2900;
}

.mx-150 {
  max-width: 150px;
}

@media (min-width: 1600px) {
  .main-header .col-lg-8 .col-sm-12 h1 {
    font-size: 56px !important;
    line-height: 70px !important;
  }
}

.main-header .col-lg-8,
.main-header .col-md-8 {
  position: relative;
}

.main-header .col-lg-8 .col-sm-12 h5 {
  text-align: left;
  margin-top: 25px;
  font-size: 28px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 5px;
  line-height: 37px;
}

.main-header .col-lg-8 .col-sm-12 h6 {
  font-size: 20px;
  font-style: italic;
  color: #fff;
  text-align: center;
}

.main-header .col-lg-8 .col-sm-12 h1 {
  text-align: left;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 0px;
  margin-top: 0px;
  line-height: 58px;
}

.main-header .col-lg-8 h2 {
  text-align: center;
  font-weight: 200;
  font-size: 24px;
  color: #fff;
  margin-top: 8px;
}

.main-header .col-lg-8 .col-sm-12 img {
  margin: 0 auto 15px;
}

.main-header .col-lg-8 h1 span {
  font-weight: 700;
  display: block;
}

.main-header .col-lg-8 p {
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.main-header .col-lg-4 {
  margin-top: 20px;
  min-height: 662px;
}

.register-form {
  background: #ffff;
  padding: 20px 10px;
  border-radius: 8px;
}

.main-header .col-lg-4 .col-sm-12 h3 {
  margin-top: 0px;
  margin-bottom: 25px;
  font-size: 26px;
}

.main-header .col-lg-4 .col-sm-12 .form-control {
  border-bottom: #393e52 1px solid;
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 15px;
  padding-left: 0px;
  min-height: 40px;
}

.main-header .col-lg-4 .col-sm-12 .form-control:focus {
  border-bottom: #d03025 1px solid;
  color: #d03025;
}

.main-header .col-lg-4 .col-sm-12 .submit-btn {
  background: #3d8b49;
  color: #fff;
  padding: 10px 45px;
  border: none !important;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  border-radius: 26px;
  margin-top: 15px;
  width: 100%;
  transition: all 0.3s linear;
}

.main-header .col-lg-4 .col-sm-12 .submit-btn:hover {
  background: #dd7315;
}


.checkbox label,
.radio label {
  font-size: 10px;
  line-height: 18px;
}

.main-header .col-lg-4 .col-sm-12 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../images/arrow-nav.png) no-repeat right 10px center;
}

.query .col-lg-10 p {
  color: #fff;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-4 {
  padding-bottom: 40px !important;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.gallery {
  padding-right: 100px;
  padding-left: 100px;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.markets .col-lg-12 h2 {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
}

.markets .col-lg-4 img {
  margin: 0 auto;
}

.markets .col-lg-4 {
  margin-top: 40px;
}

.markets .col-lg-4 h3 {
  font-size: 21px;
  line-height: 30px;
}

.markets .col-lg-4 h3 span {
  display: block;
}

.why-choose p {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
}

.why-choose ul li {
  padding-bottom: 14px;
  text-align: left;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  background: #dd7315;
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s linear;
}

.why-choose ul li:hover {
  background: #c57025;
  transform: translateX(10px);
}

.img-style {
  transition: all 0.3s linear;
  position: relative;
}

.mr-30 {
  margin-right: 30px;
}

.img-style:first-child::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #3d8b49;
  position: absolute;
  right: -30px;
  top: 30px;
  border-radius: 5px;
}

.img-style img {
  transition: all 0.3s linear;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.img-style:hover img {
  transform: scale(1.01);
}

.bg-white {
  background: #fff;
  padding: 8px;
}

.heading-position {
  position: absolute;
  top: 160px;
  left: 0;
  padding: 40px 20px 20px 40px;
  max-width: 750px;
}

.franchise-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.franchise-brand img {
  width: 160px;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

.break-banner .container {
  position: relative;
  z-index: 2;
}

.break-banner {
  position: relative;
  background: url("../images/about2.png") center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  background-attachment: fixed;
}

.break-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 18%);
  z-index: 1;
  width: 100%;
  height: 100%;
}

.break-banner2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 18%);
  z-index: 1;
  width: 100%;
  height: 100%;
}

.break-banner2 .container {
  position: relative;
  z-index: 2;
}

.break-banner2 {
   position: relative;
  background: url("../images/franchise.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;

}

.banner-text-bg {
  background: #08080894;
  width: fit-content;
  margin: 0 auto;
  padding: 60px 0;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.banner-text-bg .col-lg-3 {
  margin-bottom: 30px;

}

.banner-text-bg .col-lg-3 p {
 background-color: #3d8b49;
 padding: 20px;
 min-height: 125px;
 border-radius: 30px;
}

.break-banner2 .custom_flex{
  display: flex;
  justify-content: end;
  align-items: center;
}

.great .col-lg-6 ul {
  margin: 30px 0 0 0;
  padding: 0px 0 0 20px;
}

.break-banner2 .max-width-1024 {
  width: 600px;
}

.break-banner2 .banner-text-bg{
  margin-right: 20px;
 
}

.m-auto {
  margin: 0 auto;
}

.max-width-1024 {
  width: 750px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 30px;
}

.great .col-lg-6 ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

.great .col-lg-12 h3 {
  font-size: 32px;
  font-weight: 600;
}

.heading {
  font-size: 40px !important;
  font-weight: 400 !important;
  margin-bottom: 40px !important;
  margin-top: 0px !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.highlights-text {
  color: #3d8b49;
}

.abouts {
  padding-right: 100px;
  padding-left: 100px;
  background: #fff;
}

.abouts .col-lg-6 img {
  position: relative;
  z-index: 0;
  border-radius: 5px;
  transition: all 0.3s linear;
}

.abouts .col-lg-6:hover img {
  transform: scale(1.01);
}


.abouts .col-lg-6:first-child::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #3d8b49;
  position: absolute;
  right: -30px;
  top: 30px;
  border-radius: 5px;
}

.abouts .col-lg-6:last-child {
  padding: 25px 30px 25px 80px;
}

.abouts .col-lg-6 h5 {
  margin-top: 0px;
  letter-spacing: 3px;
  font-size: 14px;
  color: #d32525;
  text-transform: uppercase;
}


.abouts .col-lg-6:last-child p {
  font-size: 18px;
  line-height: 30px;
}

.abouts .col-lg-6 p a {
  text-decoration: none;
  color: #000;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.abouts .col-lg-6 p a:hover {
  color: #d32525;
}

.abouts .col-lg-6 p a .fa {
  font-size: 12px !important;
  margin-left: 2px;
  position: relative;
  top: -3px;
}

.partners {
  padding: 60px 15px;
}

/* .partners .col-lg-10 {
  padding: 40px 35px;
  border: #000 1px dashed;
  min-height: 300px;
  background: #fff;
} */

.partners .col-lg-10 h3 {
  margin-top: 0px;
  margin-bottom: 35px;
  font-size: 32px;
  font-weight: 600;
}

.partners .col-lg-10 img {
  margin: 0 auto;
}

.mx-70 {
  max-width: 70px !important;
}

.team {
  padding: 30px 60px 80px;
}

.team .col-lg-8 h2 {
  font-size: 26px;
  color: #000;
  font-weight: 500;
  margin-top: 0px;
}

.team .col-lg-8 h5 {
  color: #df0d20;
  font-family: "FuturaBT-Light";
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.team .col-lg-8 h2 span {
  display: block;
  font-weight: 500;
}

.team .pk_testimonial_grid h2 {
  font-size: 24px;
  font-family: "FuturaBT-Light";
  font-weight: 800;
  color: ##191919;
}

.team .phpkida_testimonials_grids {
  width: 100%;
}

.team .pk_testimonial_grid {
  position: relative;
  padding: 0px 22px;
}

.team .pk_testimonial_grid .col-sm-12 {
  box-shadow: rgb(0 0 0 / 6%) 0px 20px 30px;
  background: #fff;
  padding: 0px;
  border-bottom: #f7f7f7 1px solid;
}

.team .pk_testimonial_grid .col-sm-12 .col-sm-12 {
  padding: 20px 40px;
  border: none;
  text-align: center;
}

.team .pk_testimonial_grid .col-sm-12 .col-sm-12 .fa {
  color: #ed1c24;
  margin-top: 15px;
  font-size: 24px;
  margin-left: 20px;
}

.team .pk_testimonial_grid .col-sm-12 .col-sm-12 .fa:first-child {
  margin-left: inherit;
}

.team .pk_testimonial_grid:focus,
.agileits_testimonial_grid:focus {
  outline: none;
}

.team .team .pk_testimonial_grid_pos {
  position: absolute;
  width: 100%;
  text-align: center;
}

.team .pk_testimonial_grid_pos img {
  margin: 0 auto;
}

.team .pk_testimonial_grid p {
  color: #000;
  line-height: 24px;
  position: relative;
  font-family: "FuturaBT-Light";
}

.team .col-lg-12 .col-sm-3 .btn-danger {
  background: #ed1c24;
  border-radius: 0px;
  border: none;
  padding: 10px 22px;
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 15px;
  margin-top: 4px;
  font-weight: 600;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  border: 1px solid #ed1c24;
  font-family: "FuturaBT-Light";
}

.team .col-lg-12 .col-sm-3 span .fa {
  font-size: 20px;
}

.team .col-lg-12 .col-sm-3 .btn-danger:hover {
  background: #fff;
  color: #ed1c24;
}

.team .pk_testimonial_grid p:before {
  content: "";
  font-size: 2em;

  color: #ec9114;
  font-family: FontAwesome;
  position: absolute;
  top: 0%;
  left: 0%;
}

.team .agileits_testimonial_grid h4 {
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  margin: 1em 0 0.5em;
  font-family: "FuturaBT-Light";
}

.team .agileits_testimonial_grid h5 {
  font-size: 17;
  color: #df0d20;
}

.participating-brands {
  padding: 60px 15px;
  background: #fdfdfd;
}

.participating-brands .col-lg-2 {
  width: 20%;
}

.participating-brands .col-lg-2 .col-sm-12 {
  margin-bottom: 20px;
  padding: 0px;
}

.participating-brands .col-lg-2 .col-sm-12 img {
  border: #ccc 1px solid;
}

.participating-brands h3 {
  font-size: 40px;
  color: #000;
  font-weight: 600;
  margin-top: 0px;
  text-align: center;
  margin-bottom: 60px;
}

.thankus {
  padding: 100px 15px;
  font-family: "FuturaBT-Light";
}

.thankus .thankyou-box {
  padding: 80px 30px;
  box-shadow: 0 0 10px #eee;
  border: #000000 12px inset;
}

.thankus .col-lg-8 h1 {
  font-size: 60px;
  font-weight: 700;
  color: #242424;
  text-transform: capitalize;
}

.thankus p {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.models .form-control {
  min-height: 48px;
  box-shadow: none;
  border-radius: 0px;
}

.models select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/down-arrow.png) no-repeat right 10px center;
}

.topbar .col-lg-4 .btn-primary {
  background: #f36f21;
  padding: 12px;
  margin-top: 10px;
  font-weight: 600;
  width: 100%;
  border: none;
  border-radius: 0px;
  font-size: 20px;
  text-transform: uppercase;
}

.topbar .col-lg-4 .btn-primary:hover {
  background: #e65f0f;
}

.topbar .col-lg-4 .checkbox label,
.topbar .col-lg-4 .radio label {
  font-size: 12px;
  line-height: 16px;
}


.bottom-footer {
  padding: 50px 15px 20px 15px;
  background: #f4f4f4;
}

.bottom-footer p {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
}

.box {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      border-radius: 12px;
      transition: transform 0.9s ease-in-out;
}

.box:hover {
      transform: rotateY(360deg);
    }

.formst {
  padding: 20px;
}

.formst input,
.formst textarea,
.formst select {
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  resize: none;
  color: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(209, 209, 209);
  border-image: initial;
  padding: 8px 15px;
  margin: 0px 0px 20px;
}

.formst .form-control {
  margin-bottom: 10px;
}

.btn.btn-black {
  color: rgb(255, 255, 255) !important;
  background: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
}

.btnknew {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  background: #ff8a73;
  height: 48px;
  font-weight: 500;
  font-size: 17px;
  padding: 12px 25px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  color: #fff;
  width: 50%;
  margin: auto;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}

.btnknew2 {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  background: #000;
  height: 48px;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  color: #fff;
  border: none;
  width: 50%;
  margin: auto;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}

.btnknew:hover {
  background: #fe9883;
  text-decoration: none;
  color: #fff;
}

.thsh {
  margin: 20px 0 0;
  font-size: 30px;
  color: #000;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
}

.linebd {
  width: 180px;
  margin: 0 auto 40px;
}

.linefi {
  width: 140px;
  height: 1px;
  background: #ef7f1a;
  margin: 0 auto 1px;
}

.linese {
  width: 140px;
  height: 1px;
  background: #333;
  margin: 0 auto 0 40px;
}

.text-white {
  color: #fff;
}

/* 10-09-2025 */
.franchise-logo{
  width: 240px;
}

.franchise-logo {
    margin: 0 auto;
    padding-bottom: 20px;
}

ul#footer-menu li {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-right: 20px;
    border-right: 1px solid #a7a6a6;
    padding-right: 20px;
    margin-top: 10px;
}

ul#footer-menu li a{
color:#666;
text-decoration:none;
}

ul#footer-menu li a:hover{
color:#dd7315;
}

ul#footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-section {
  background: linear-gradient(to right, #3d8b49, #b66eb4);
  color: #fff;
  padding: 60px 20px;
  position: relative;
  text-align: center;
}

.cta-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 auto;
  font-size: 24px;
  line-height: 32px;
  max-width: 850px;
}

/* CTA Button */
.btn-cta {
  background-color: #fff;
  color: #ff6a00;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #f2f2f2;
  color: #d94e00;
  transform: translateY(-2px);
}

.shift-up {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}

.video-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 100vh;
  /* Full height */
  /* display: flex;
      align-items: center; */
}

/* Background Video */
.video-bg .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  z-index: -1;
}

/* Overlay for readability */
.video-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 20%);
  z-index: 0;
}



.slider-bg::before {
  content: "";
  position: absolute;
  inset: 0;
background-image: url(../images/circle.png);
  z-index: 0;
  height: 100%;
  width: 100%;
}

.slider-bg::after {
  content: "";
  position: absolute;
  inset: 0;
 background-color: #fff200;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.cssbuttons-io-button {
  background: #dd7315;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 20px;
  font-weight: 600;
  border-radius: 26px;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #ff7800;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  width: fit-content;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 26px;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #b15300;
  right: 0.3em;
  transition: all 0.3s;
  text-decoration: none !important;
}

.cssbuttons-io-button:hover {
  color: #fff;
  text-decoration: none !important;
}

.cssbuttons-io-button:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  color: #fff;
  text-decoration: none;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #e17413;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}


.cssbuttons-io-button1 {
  background: #eedfb0;
  color: #954009 !important;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 20px;
  font-weight: 600;
  border-radius: 26px;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #eedfb0;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  width: fit-content;
}

.cssbuttons-io-button1 .icon {
  background: #964109;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 26px;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #b1530000;
  right: 0.3em;
  transition: all 0.3s;
  text-decoration: none !important;
}

.cssbuttons-io-button1:hover {
  color: #fff;
  text-decoration: none !important;
}

.cssbuttons-io-button1:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  color: #fff;
  text-decoration: none;
}

.cssbuttons-io-button1:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button1 .icon svg {
  width: 1.5em;
  transition: transform 0.3s;
  color: #ffffff;
}

.cssbuttons-io-button1:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button1:active .icon {
  transform: scale(0.95);
}


.mt-4 {
  margin-top: 3rem;
}

.why-choose {
  background: #f5f5f5;
}

.hero-right button {
  background: #ff9800;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-right button:hover {
  background: #e68900;
}

.add-info {
  background: #3d8b49;
  padding: 20px;
  border-radius: 8px;
 transition: transform 0.3s ease;
}

.add-info:hover {
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    
    background-size: 200% auto;
    background-position: left center;
    transition: background-position 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

}

.add-info:hover{
   transform: scale(1.1);
    transition: transform 0.3s ease;
}

.mt-5 {
  margin-top: 3rem;
}

.add-info h4 {
  font-size: 28px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}

.addi-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
  padding: 20px;
  margin-bottom: 2rem;
}

   

.white-border {
  border: 1px solid #ffffff;
  border-radius: 6px;
  padding: 20px;
}

.add-info h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 36px;
  color: #fff;
}

.logo-strip {
  background: #fff;
  position: relative;
  border-radius: 95px;
  padding: 5px 15px;
  margin-top: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(20px);
  width: fit-content;
}

.logo-align-center {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.brand-logo img {
 width: 148px;
  background: #fff;
  padding: 5px;
}

.brand-logo {
  background: #ffffff;
  position: relative;
  border-radius: 95px;
  padding: 0;
  margin-top: 25px;
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* new css */

.why_choose {
  background-image: url(../images/jwellery.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
  height: 100%;
  position: relative;
}

.why_choose::before{
  content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.6;
    background: #010108;
}

.text-white {
  color: #fff !important;
}

.why_h2 {
  font-size: 40px;
  color: #fff;
}

.break-banner h3 {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
 background-color: #3d8b49;
  background-size: 200% auto;  /* Make gradient wider */
  background-position: left center;
  transition: 0.5s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.button:hover {
  background-position: right center; /* Gradient moves left → right */
  opacity: 0.5;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

 .card {
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      position: relative;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
      height: 380px;
      border-bottom: 2px solid #3d8b49;
      border-radius: 0;
      
      
    }

    /* Gradient Border */
    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 3px; /* border thickness */
      border-radius: 20px;
      /* background: linear-gradient(to right, #6a11cb, #2575fc, #6a11cb);
      -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      pointer-events: none; */
    }

    .card img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card:hover img {
      transform: scale(1.1);
    }

    .card-content {
      padding: 20px;
      text-align: center;
    }

    .card-content h3 {
      font-size: 20px;
      margin-bottom: 10px;
      background: #3d8b49;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }

    .card-content p {
      font-size: 16px;
      color: #555;
    }


    









@media (max-width: 1370px) {

  .gallery {
    padding-right: 30px;
    padding-left: 30px;
  }

  .main-header .col-lg-8 .col-sm-12 h5 {
    font-size: 26px;
    line-height: 34px;
  }

  .heading-position {
    padding: 40px 20px 20px 20px;
  }
}

@media (max-width: 1300px) {
  .main-header .col-lg-8 .col-sm-12 h1 {
    font-size: 46px;
    line-height: 52px;
  }

}


@media (max-width: 1200px) {
.brand-logo img {
    width: 100%;
    height: 100%;
}

.brand-logo {
    width: 130px;
    height: 130px;
}
}
@media (max-width: 1200px) {
  .heading-position {
    max-width: 100%;
  }

   .main-header .col-lg-8 .col-sm-12 h1 {
        font-size: 40px;
        line-height: 50px;
    }

  .cta-text {
    max-width: 100%;
  }

  .px-30 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-header .col-lg-8 {
    min-height: 500px;
    background-size: cover;
    text-align: center !important;
    padding: 25px 20px;
    background-position: center top;
  }
   .card{
    margin-bottom: 30px;
  }

}


@media (min-width: 120px) and (max-width: 767px) {
  .main-header .col-lg-8 {
    padding: 25px 20px;
    min-height: 500px;
    text-align: center !important;
    background-position: top;
    background-size: cover;
  }
  .card{
    margin-bottom: 30px;
  }

  .main-header .col-lg-8 .col-sm-12 h5 {
    text-align: center;
    margin-top: 30px;
    font-size: 22px;
  }

  .main-header .col-lg-8 .col-sm-6 img {
    width: 200px;
    margin: 0 auto;
  }

  .main-header .col-lg-8 .col-sm-12 {
    text-align: center !important;
  }

  .main-header .col-lg-8 h5 {
    margin-top: 30px;
    text-align: center;
  }

  .main-header .col-lg-8 .col-sm-12 h5 {
    font-size: 20px;
    line-height: 28px;
  }

  .main-header .col-lg-4 {
    padding: 25px 20px;
  }

  .markets .col-lg-2 {
    width: auto;
    border-bottom: #ccc 1px dashed;
    padding: 25px 15px;
  }

  .markets .col-lg-2:last-child {
    border-bottom: none;
  }

  .markets h2 {
    margin-bottom: 30px;
  }

  .speaker .col-lg-6 {
    padding: 25px 20px;
  }

  .speaker img {
    margin: 0 0 25px 0;
  }

  .team {
    padding: 30px 20px;
  }

  .team .col-lg-8 h2 {
    font-size: 21px;
  }

  .team .pk_testimonial_grid {
    margin: 0px;
    padding-top: 0px;
  }

  .team .pk_testimonial_grid .col-sm-12 .col-sm-12 {
    padding: 20px 15px;
  }

  .speaker .col-lg-6 {
    min-height: inherit;
  }

  .speaker img {
    margin-bottom: 0px;
  }

  .markets h2 {
    font-size: 26px;
  }

  .participating-brands .col-lg-2 {
    width: 50%;
  }

  .markets .col-lg-10 {
    padding: 0px;
  }

  .markets {
    text-align: center;
  }

  .markets .col-lg-4 h3 span {
    display: -moz-box;
  }

  .abouts {
    padding: 25px 20px;
  }

  .abouts .col-lg-6 {
    padding: 30px;
  }

  .abouts .col-lg-6:first-child::before {
    display: none;
  }

  .abouts .col-lg-6:last-child {
    padding: 30px;
  }

  .mx-150 {
    max-width: 80px;
  }
}

@media (max-width: 992px) {
  .main-header .col-lg-8 {
    min-height: 375px;
  }
}

@media (max-width: 880px) {
  .main-header .col-lg-8 {
    min-height: 400px;
  }
}

@media (max-width: 860px) {
  .main-header .col-lg-8 {
    min-height: 430px;
  }
}

@media (max-width: 991px) {
  .img-style:first-child::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #3d8b49 00;
    position: absolute;
    right: 0px;
    border-radius: 5px;
    top: 0;
  }

  .mr-30 {
    margin-right: 0px;
  }

  .abouts .col-lg-6:last-child {
    padding: 25px 0px 0px 0px;
  }

  .heading {
    margin-bottom: 25px !important;
  }

  .gallery-card {
    margin-bottom: 30px;
  }

  .bottom-footer img {
    width: 200px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* .abouts .col-lg-6 {
    padding: 30px;
  } */

  .abouts .col-lg-6:first-child::before {
    display: none;
  }


  /* .abouts .col-lg-6:last-child {
    padding: 30px;
  } */

  .main-header .col-lg-8 {
    padding: 25px 20px;
  }

  .main-header .col-lg-8 .col-sm-6 img {
    width: 100px;
    margin: 0 auto;
  }

  .main-header .col-lg-4 {
    padding: 25px 20px;
  }

  .markets .col-lg-2 {
    width: auto;
    border-bottom: #ccc 1px dashed;
    padding: 25px 15px;
  }

  .markets .col-lg-2:last-child {
    border-bottom: none;
  }

  .markets h2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .max-width-1024 {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 770px) {
  .main-header .col-lg-8 {
    min-height: 470px;
  }
}

@media (max-width: 768px) {
  .cssbuttons-io-button {
    font-size: 18px;
}
  .shift-up {
  padding-bottom: 0px;
}
  .abouts .col-lg-6:last-child p {
    text-align: justify;
  }

  .brand-logo img {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
  }

  .navbar ul {
    position: absolute;
    top: 103px;
    left: -106%;
    width: 100%;
    background: #101010;
    flex-direction: column;
    align-items: center;
    transition: left 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 10px;
  }

  .brand-logo {
    background: #ffffff;
    position: relative;
    border-radius: 95px;
    padding: 0;
    margin-top: -65px;
    backdrop-filter: blur(20px);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .heading-position {
    top: 100px;
  }

  .navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #33333300;
    padding: 0;
    height: 25px;
  }

  .navbar ul li {
    margin: 10px;
    border-bottom: 1px solid #ffffff38;
    padding-bottom: 10px;
  }

  .navbar ul.show {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {

  .main-header .col-lg-4 {
    padding: 25px 0px;
    margin-top: 45px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
  }

  .bottom-footer {
    padding: 30px 15px 15px 15px;
    font-size: 11px;
    background: #f4f4f4;
  }

  .abouts .col-lg-6:last-child {
    padding: 25px 20px 0px 20px;
  }

  .pb-80 {
    padding-bottom: 50px !important;
  }

  .add-info {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s linear;
    margin-bottom: 3rem;
  }

  .partners {
    padding: 40px 15px;
  }

  .heading {
    font-size: 36px !important;
    line-height: 46px;
  }
  .brand-logo img{
    border-radius: 0;
    height: 70px;
    width: 100%;
  }
 

}

@media (max-width: 767px) {
  .cta-text {
    font-size: 18px;
    line-height: 32px;
  }
  .card {
        height: 420px;
  }

  .brand-logo {
    background: transparent;
    position: relative;
    top: -50px;
    text-align: center;
    margin: 0 auto;
  }

  .cta-heading {
    font-size: 1.6rem;
  }

  .btn-cta {
    width: 100%;
    padding: 14px;
  }

  .thankus .col-lg-8 h1 {
    font-size: 40px;
  }

  .thankus p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
  }

  .thankus .thankyou-box {
    padding: 40px 30px;
    box-shadow: 0 0 10px #eee;
    border: #000000 12px inset;
  }

  .break-banner2 .banner-text-bg{
    margin-right: 0;
  }

  .break-banner2 .banner-text-bg .heading {
    font-size: 32px !important;
  }


  .main-header .col-lg-8 .col-sm-12 h1 {
    font-size: 36px;
    text-align: center;
    line-height: 48px;
    margin-top: 13px;
  }

  .main-header .col-lg-4 {
    margin-top: 85px;
    min-height: 700px;
  }

  .heading-position {
    top: 80px;
  }

  .main-header .col-lg-8 {
    min-height: 330px;
  }

  .center-btn {
    display: flex;
    justify-content: center;
  }

}

@media (max-width: 750px) {
  .heading-position {
    top: 65px;
  }

.franchise-logo {
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 20px;
}
  .register-form {
    position: relative;
    top: 0px;
  }

  .main-header .col-lg-4 {
    margin-top: 85px;
    min-height: 740px;
  }
  .custom_flex .heading{
    font-size: 32px;
  }

   .custom_flex .max-width-1024{
    text-align: center;
   }
   .break-banner2 .max-width-1024 {
    width: 100%;
   }
}

@media (max-width: 500px) {

  .custom_flex .heading{
    font-size: 32px;
  }

   .custom_flex .max-width-1024{
    text-align: center;
   }
   .break-banner2 .max-width-1024 {
    width: 100%;
   }


  .cssbuttons-io-button1{
    width:100%;
    font-size: 18px;

  }
  .heading {
    font-size: 34px !important;
    line-height: 46px;
  }

  .max-width-1024 {
    font-size: 16px;
    text-align: justify;
  }

  .abouts .col-lg-6 {
    padding: 30px 30px 0 30px;
  }

  .abouts .col-lg-6:last-child {
    padding: 25px 15px 0px 15px;
  }

  .px-30 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .heading-position {
    padding: 30px 15px 20px 15px;
  }

  .main-header .col-lg-8 .col-sm-12 h1 {
    font-size: 30px;
    text-align: center;
    line-height: 40px;
    margin-top: 13px;
  }


  .main-header .col-lg-8 {
    min-height: 400px;
  }

  .main-header .col-lg-4 {
    padding: 25px 15px;
    margin-top: 40px;
  }

  ul#footer-menu li {
    font-size: 14px;
    margin-right: 10px;
    padding-right: 10px;
}
}

@media (max-width: 425px) {
  .main-header .col-lg-8 {
    min-height: 430px;
  }

  .register-form {
    top: 5px;
  }
      .franchise-logo {
        margin: 0 auto;
        padding-bottom: 5px;
        padding-top: 10px;
    }
}

@media (max-width: 370px) {
  .main-header .col-lg-8 {
    min-height: 470px;
  }

  .brand-logo {
    top: -60px;
  }
}

@media (max-width: 325px) {
    .brand-logo {
        top: -65px;
    }
}