html{
        overflow-x: hidden;
}
body{
    overflow: hidden;
  margin: auto;
 font-family: "Inter", sans-serif !important;

}
body.modal-open {
    padding-right: 0 !important;
}

body h1{
  font-family: 'Optima'!important;
}
body h2{
  font-family: 'Optima'!important;
}

@media(min-width: 1366px){
.cmpad{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
}
@media(max-width: 1366px){
.cmpad{
  padding-left:80px;
  padding-right:80px;
}
}
@media(max-width: 991px){
.cmpad{
  padding-left:40px;
  padding-right:40px;
}

}
@media(max-width: 767px){
.cmpad{
  padding-left:15px;
  padding-right:15px;
}

}

p{
    margin-bottom: 0;
    color: #7D7878;
    font-size: 16px;
    font-weight: 400;
    line-height: 169%;
}

a{
  color: #1A1A1A;
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
   font-size: 16px;
  font-weight: 500;
}
a:hover{
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
ul {
    padding-left: 0px;
    list-style-type: none;
    margin: 0;
}
img{
    display: block;
  max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.posrel{
  position: relative;
}













.btn {
  font-size: 16px;
  padding: 15px;
  display: flex;
  font-weight: 600;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
 
}

.btn span {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.btn span img {
  width: 24px !important;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.mybtn-primary {
 position: relative;
    color: white;
     background: linear-gradient(90deg, #D3AE5E, #AC8530, #D3AE5E) no-repeat;
    min-width: auto;
    border: 1px solid transparent;
    z-index: 1;
  transition: background .3s ease;
}
.mybtn-primary span img{
  filter: brightness(0) invert(1);
}

.mybtn-primary:hover {
 color: #AC8530;
 background: transparent;
 border: 1px solid #AC8530;
}
.mybtn-primary:hover span img{
 filter: unset;
}




.mybtn-secondary {
 position: relative;
    color: white;
     background: #1D1D1E;
    min-width: auto;
    border: 1px solid transparent;
    z-index: 1;
}
.mybtn-secondary span img{
  filter: brightness(0) invert(1);
}

.mybtn-secondary:hover {
 color: #1D1D1E;
  background: transparent;
   border: 1px solid #1D1D1E;
}
.mybtn-secondary:hover span img{
 filter: brightness(0);
}




.mybtn-fill {
  position: relative;
  color: #00BAA6;
  background: transparent;
  background: #fff;
  border: 1px solid transparent;
  overflow: hidden;
  min-width: 161px;
  z-index: 1;
}

.mybtn-fill:hover {
  background: #00BAA6;
  color: #fff;
}

.mybtn-fill span {
  background: #ffffff;
  display: flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}



/* Outer framed container with corner marks */
.frame{
position: relative;
    padding: 1px;
    border: 1px solid #00000030;
    display: inline-block;
}

/* Decorative crop/corner marks (small L shapes) */
.frame::before, .frame::after,
.frame .spn::before, .frame .spn::after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #111;
    box-sizing: border-box;
    background: transparent;
}
/* top-left */
.frame::before{ left:-2px; top:-2px; border-right:none; border-bottom:none; }
/* top-right */
.frame::after{ right:-2px; top:-2px; border-left:none; border-bottom:none; }
/* We'll use span pseudo-elements for bottom corners */
.frame .spn::before{ left:-2px; bottom:-2px; border-right:none; border-top:none; }
.frame .spn::after{ right:-2px; bottom:-2px; border-left:none; border-top:none; }

/* whitecorner */
.framew{
  position: relative;
    padding: 1px;
    border: 1px solid #ffffff4d;
    display: inline-block;
    }

/* Decorative crop/corner marks (small L shapes) */
.framew::before, .framew::after,
.framew .spn::before, .framew .spn::after{
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border: 2px solid #fff;
    box-sizing: border-box;
    background: transparent;
}
/* top-left */
.framew::before{ left:-2px; top:-2px; border-right:none; border-bottom:none; }
/* top-right */
.framew::after{ right:-2px; top:-2px; border-left:none; border-bottom:none; }
/* We'll use span pseudo-elements for bottom corners */
.framew .spn::before{ left:-2px; bottom:-2px; border-right:none; border-top:none; }
.framew .spn::after{ right:-2px; bottom:-2px; border-left:none; border-top:none; }





.mybtn-third .text {
      flex: 1;
    text-align: center;
    color: #000;
    padding: 0 15px;
    background-color: #fff;
    height: 100%;
    display: flex
;
    align-items: center;
     transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.mybtn-third .arrow {
  background-color: #121416;
  color: #fff;
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mybtn-third .arrow img{
  filter: brightness(0) invert(1);
}
.mybtn-third:hover .text{
  background-color: #121416;
  color: #fff;
}
.mybtn-third:hover .arrow{
  background-color: #fff;
}
.mybtn-third:hover .arrow img{
  filter: unset;
}


.bnrhed{
       font-size: 65px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 100%;
    max-width: 561px;
}
.mainhed{
      font-size: 47px;
    font-weight: 500;
    color: #000000;
    line-height: 125%;
}
.mainhed span{
      color: #AC8530;
}







@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


@-webkit-keyframes fillUp {
  0% {
    transform: translate(0, 100px);
  }
  100% {
    transform: translate(0, -100px);
  }
}

@keyframes fillUp {
  0% {
    transform: translate(0, 100px);
  }
  100% {
    transform: translate(0, -100px);
  }
}





/* haeder */

.header{
  position: relative;
    z-index: 11;
  /* padding: 25px 0px; */
  background: transparent;
  height: 0;
}
.hedr{
  padding-top: 10px;
}
.nav-header{
  max-width: 282px;
}

.hedrfll{
  justify-content: space-between;
  align-items: center;
}
.logo{
  width: 190px;
  float: left;

}
.logo img{
  width: 100%;
  max-width: 153px;
  float: left;
}
.hdr-menu{
    height: 100%;
}
.menus{
  display: flex;
      gap: 12px;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}


.megalistcust{
        padding: 20px 7px !important;
    display: flex !important
;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}


/* Fixed header class */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 1px 11px #00000030;
  animation: slideDown 0.3s ease forwards;
  height: auto;
    padding: 10px 0px;
    background: #182100;
}

/* Optional animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}



/*mob*/
/* Wrapper */
/* Wrapper & Container */
.mobile-wrapper {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  float: right;
  height: 100%;
  display: flex
;
    align-items: center;
}

.content {
  background: transparent;
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  position: relative;
}

/* Hide native checkbox */
nav input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* Hamburger Icon */


.hamburger-label {
  position: relative;   /* Use absolute for positioning inside the container */
  top: 7px;        /* Aligns to the right side */
  z-index: 1100;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
.mobile-container {
  position: relative;
}


.hamburger-label::before,
.hamburger-label::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #2060ad;
  left: 0;
  transition: 0.3s ease;
}

.hamburger-label::before {
  top: 0;
}

.hamburger-label::after {
  top: 10px;
}

/* Becomes X when open */
#hamburger1:checked + .hamburger-label::before {
  transform: rotate(45deg);
  top: 8px;
}

#hamburger1:checked + .hamburger-label::after {
  transform: rotate(-45deg);
  top: 8px;
}

/* Overlay full menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Show overlay */
#hamburger1:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
}

/* Navigation links */
.nav-links {
  margin: 0px 0 0 0;
 padding: 125px 0;
 background: #134075;
}

.nav-links li {
  list-style: none;
  /*border-bottom: 1px solid #ddd;*/
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.nav-links li a,
.submenu-label {
  text-decoration: none;
  display: block;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: white;

}

.nav-links li a:hover,
.submenu-label:hover {
  color: #5794de;
}

/* Animate in when menu opens */
#hamburger1:checked ~ .overlay .nav-links li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#hamburger1:checked ~ .overlay .nav-links li:nth-child(1) { transition-delay: 0s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(2) { transition-delay: 0.1s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(3) { transition-delay: 0.2s; }
#hamburger1:checked ~ .overlay .nav-links li:nth-child(4) { transition-delay: 0.3s; }

/* Submenu */
.has-submenu {
  position: relative;
}

.has-submenu input[type="checkbox"] {
  display: none;
}

.submenu {
  display: none;
  background: #0e3563;
}

.submenu li a {
  font-size: 16px;
  padding: 10px 40px;
  border-top: 1px solid #144b8aa8;
}

.has-submenu input[type="checkbox"]:checked ~ .submenu {
  display: block;
  padding-left: 0;
}

@media(min-width:992px){
  .mobile-wrapper{
    display: none;
  }
}
/*mob*/

.header_menu_area ul li a img{
  margin-left: 0px;
    width: 17px;
    filter: brightness(0) invert(1);
}

.header_menu_area {
    position: relative;
    text-align: center;
}
.header_menu_area > ul {
    padding-right: 0px;
    padding: 0px 0px 0px 0px;
    width: auto;
    float: left;
    vertical-align: middle;
}

.header_menu_area > ul > li {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    color: #000000;
    float: left;
    text-decoration: none;
    list-style-type: none;
    position: relative;
    padding: 0px 12px;
    z-index: 1;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    text-decoration: none;
    text-align: center;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
}
.header_menu_area > ul > li > a {
    position: relative;
    display: flex;
    gap: 4px;
    float: left;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-style: normal;
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.header_menu_area > ul > li > a:hover{
    color: #A8D044;
}
/* .stable{
  color: #ffffff !important;
} */



.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    top: 0px;
    padding: 0;
    width: 230px;
    position: absolute;
    right: 20px;
    padding-top: 30px;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99999;
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    
    -o-transition: -o-transform .5s ease,opacity .6s ease,max-height .6s step-end,max-width .6s step-end,padding .6s step-end;
   
}
.menu li:hover>ul {
    visibility: visible;
    opacity: 1;
    transition: all .5s ease-out;
    height: auto;
    right: -80px;
}

.menu ul li a:hover, .menu ul li:hover>a {
        background: #396dab;
    color: #ffffff;
    text-decoration: none;
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}
.menu li:first-child {
    margin-left: 0;
}
.menu li:first-child {
    margin-left: 0;
}
.menu ul li {
    display: block;
    float: left;
    background: 0 0;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
    /* z-index: 9; */
    /* padding-bottom: 50px; */
}
.menu ul li a {
        width: 100%;
    font-size: 16px;
    font-weight: 400;
    padding: 10px;
    display: block;
    color: #ffffff;
    background: #1e5aa1;
    text-align: -webkit-match-parent;
    text-decoration: none;
    /* border-radius: 30px; */
    /* margin-bottom: 10px; */
    text-align: left;
    border-bottom: 1px solid #356bab;
}



/*overlay*/

.side-menu-4 {
    position: relative;
    top: -5px;
    right: 0;
    z-index: 999;
    width: auto;
    float: right;
        padding-left: 11px;
}

.burger-menu img {
  width: 24px;
 
  cursor: pointer;
}

.overlay-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 102;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  display: flex;
  background: rgba(0, 0, 0, 0.95);
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-wrap {
  display: flex;
  width: 100%;
  height: 100%;
}

.left-area,
.right-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px;
}
.right-areamain{
  width: 100%;
  float: left;
}
.right-areamain h2{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.right-areamain p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 14px;
  font-weight: 400;
}
.left-area h6{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 55px;
    font-weight: 500;
    line-height: 127%;
    margin-bottom: 0;
}

.left-area {
  background: #121416;
  color: white;
  text-align: left;
}

.right-area {
  background: #FD421B;
  color: #A8A8A8;
      box-shadow: -1px 0px 13px #10346057;
  text-align: left;
}

.left-area nav ul {
  list-style: none;
  padding: 0;
}

.left-area nav li {
  margin-bottom: 20px;
}

.left-area nav a {
  color: white;
  font-size: 40px;
  text-decoration: none;
}
.close img{
  width: 100%;
  max-width: 30px;
  filter: brightness(0) invert(1);
}
.overlay-menu .close {
  position: absolute;
    right: 60px;
    top: 55px;
    font-size: 30px;
    background: #121416;
    border-radius: 30px;
    cursor: pointer;
    opacity: 0.5;
    z-index: 10;
    transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.overlay-menu .close:hover {
  opacity: 1;
}
.right-area-main{
  width: 100%;
  float: left;
  margin-bottom: 30px;
}
.right-area-main h2{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 35px;
  font-weight: 500;
}
.right-area-main p{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 15px;
  font-weight: 400;
}
.right-area-main a{
  width: 100%;
  float: left;
  text-align: left;
  color: white;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}
.left-area form {
    width: 100%;
    float: left;
    margin-top: 40px;
    transition-delay: 300ms;
}
.ham-field {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.ham-field label {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    width: 100%;
    float: left;
    margin-bottom: 5px;
}
.ham-field input {
    width: 100%;
    float: left;
    padding: 12px;
    border: none!important;
    border-radius: 10px;
    font-size: 15px;
    color: #000;
    height: 51px;
    outline:none!important;
}
.ham-field textarea {
    width: 100%;
    float: left;
    padding: 12px;
      border: none!important;
    border-radius: 10px;
    font-size: 16px;
    color: #000;
    height: 150px;
    outline:none!important;
}



/* banner */
.bnr-carousel .owl-nav {
    display: none;
}
.bnrtxt-carousel .owl-nav {
    display: none;
}

.bnr-carousel .owl-dots{
  position: relative;
    bottom: 47px;
    max-width: 1145px;
    display: flex;
    margin: auto;
    justify-content: flex-end;
    padding-right: 15px;
    display: none;
}
.banner {
  position: relative;
  /* padding-bottom: 90px; */
  height: 100vh;
  z-index: 1;
  background-position: center;
  /* padding-top: 160px; */}
.banner::after{
         content: '';
    background: linear-gradient(0deg, black, transparent);
    opacity: 46%;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: top;
    z-index: 1;
}


.bnrtxt-slider{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    height: calc(100vh - 30px);
    position: relative;
    z-index: 11;
    padding-top: 109px;
    flex-direction: column;
    justify-content: flex-end;
}
.bnrcontact{
        background: linear-gradient(90deg, #e3e9f77a, #ffffff1f);
    border: 1px solid #bebebe75;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 6px 7px;
}
.bnrcontact .ttl{
    display: flex;
    width: 72px;
    height: 24px;
    align-items: center;
    background: #08244D;
    border: 1px solid #ffffff63;
    border-radius: 30px;
    justify-content: center;
    gap: 4px;
}
.bnrcontact .ttl img{
  width: 15px!important;
}
.bnrcontact .ttl span{
font-size: 10px;
    font-weight: 600;
    color: #fff;
    margin-top: 1px;
}
.bnrcontact .nmbr{
  display: flex;
    align-items: center;
    gap: 8px;  
}
.bnrcontact .nmbr img{
  width: 16px!important;
}
 .bnrcontact .nmbr span{
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin-top: 1px;
 }   
 .bnr-point{
  display: flex;
  gap: 13px;
 }
.bnrpoint{
      font-size: 16px;
    color: #fff;
    font-weight: 600;
    display: flex;
    gap: 13px;
    align-items: center;
}





.bnrimg-sec{
  position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;

}
.bnrimg-p{
      position: absolute;
    bottom: 2%;
    left: 73%;
}
.bnrimg-p p{
  color: #fff;
}
.bnrimg-p .mrgn{
margin-right: 5px;
}
.banner .sldimg{
      width: 100%;
    float: left;
    position: relative;
    /* max-width: 582px; */
    height: 100vh;
    object-fit: cover;
}
.bnrsecnd{
  max-width: 389px;
      display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.bnrtext {
       display: flex;
    gap: 22px;
    height: 100%;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.bnrtext p{
  color: #FFFFFF;
}
.bnrsub{
    
    text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  opacity: 50%;
}


.spad{
  padding-top: 80px;
  padding-bottom: 80px;
}
.spad2{
   padding-top: 70px;
  padding-bottom: 70px;
}

.slide-con {
    position: fixed;
    z-index: 1;
    right: 23px;
        bottom: 35px;

    text-align: center;
    
    /* overflow: hidden; */
}

@keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }



.bnr-contnt {
        width: 100%;
    display: flex;
    flex-direction: row;
    padding-bottom: 25px;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}


.bnr-contnt p{
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.bnr-second{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}



/* about */

.subhed{
    color: #1D1D1E;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid #AC8530;
    padding: 2px 16px;
    border-radius: 61px;
    display: flex;
    align-items: center;
}

.subhed span{
        width: 10px;
    height: 10px;
    background: #AC8530;
    border-radius: 15px;
}
.abtcont{
    height: 100%;
    display: flex;
}
.shining{
      position: relative;
    overflow: hidden;
}
.shining:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.shining:before {
    position: absolute;
    top: 0;
    left: -92%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgb(255 255 255 / 23%) 0%, rgb(255 255 255 / 31%) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.animate{
  color: #1D1D1E;
}
.trnstxt {
    font-size: 40px;
    font-weight: 400;
    color: #1D1D1E;
    line-height: 121%;
}

.abtcrd .card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
 height: 100%;
}

/* Image Cards */
.abtcrd .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abtcrd .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.6)
  );
}

/* Overlay text (Card 1) */
.abtcrd .cardtxt {
      position: absolute;
    bottom: 0;
    left: 0;
    padding: 22px 18px;
    color: #fff;
    z-index: 2;
}

.abtcrd .cardtxt h2 {
  font-size: 31px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0px;
}

.abtcrd .avatars {
  font-size: 14px;
  display: flex;
  gap: 6px;
      align-items: center;
font-weight: 500;
}
.abtcrd .avatars img{
  width: 75px;
}
/* Gold Card */
.abtcrd .card-gold {
  background: linear-gradient(90deg, #D3AE5E, #ac8530, #D3AE5E);
    display: flex;
    align-items: center;
    padding: 22px 18px;
}
.abtcrd .card-gold img{
top: -78px;
    position: absolute;
    right: -25px;
    transform: rotate(27deg);
    transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.abtcrd .card-gold:hover img{
transform: rotate(40deg) scale(1.15);
transition: all 0.5s ease;
  transition: all 0.5s ease;
} 



/* Glass Box (Card 3) */
.abtcrd .glass-box {
      position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid #ffffff33;
    color: #fff;
    z-index: 2;
}

.mytab .nav-tabs{
  border: none!important;
  gap: 10px;
}
.mytab .tab-content{
  margin-top: 18px;
}
.mytab .tab-content p{
      font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 0px;
}
.mytab .nav-tabs .nav-link{
        font-weight: 500;
    color: #838383 !important;
    background: #ffffff80;
    font-size: 16px;
    border: none !important;
    padding: 8px 20px;
    border-radius: 30px;
}
.mytab .nav-tabs .nav-link.active{
opacity: 100%;
color: #AC8530 !important;
background: #fff;
}








/* counter */
.countsection{
  background: url(../img/images/count-bac.webp);
  background-repeat: no-repeat;
  background-size: cover;
  
}
.whte{
  color: #fff;
}
.countbx{
    
    display: flex
;
    width: 100%;
    flex-direction: column;
}
.countbx p{
   font-size: 20px;
    font-weight: 400;
    color: #6D6D6D;
    margin-top: 9px;
    line-height: 159%;
}
.count-cont{
     margin-left: 0;
}
.count-cont h3{
      font-weight: 600;
    font-size: 60px;
    color: #3D2900;
    display: flex;
    letter-spacing: 0;
    align-items: center;
}

.count-cont h4{
font-weight: 500;
font-size: 22px;
color: #000;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value{
   color: #3D2900;
}

.countsection .count-cont h3{
  font-size: 78px;
  font-weight: 600;
  color: #FD421B;
      -webkit-text-fill-color: unset;
}
.countsection .odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value{
  color: #FD421B;
      -webkit-text-fill-color: unset;
}
.countsection .count-cont{
  margin-left: 0;
}
.countsection .countbx{
  border-top: none;
  align-items: center;
    gap: 15px;
    text-align: center;
}
.countsection .countbx p{
  color: #fff;
  font-size: 24px;
  font-weight: 400;

}




/* services */
.services{
  background: #FBF9F5;
}
.service-sec{
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}
.servicepara{
  max-width: 360px;
  margin-left: auto;
  gap: 10px;
}

.service-card{
 position: relative;
    padding: 18px 14px;
    background: #AC8530;
    height: 373px;
    display: flex;
    border-radius: 16px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 5px solid transparent;
}
.service-card:hover{
  background: #fff;
  border-bottom: 5px solid #D3B06C;
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.service-card .cardtop{
 display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.service-card .cardtop span{
height: 70px;
    width: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.service-card .cardtop span img{
  width: 49px;
}
.service-card:hover .cardtop span{
background: #AC8530;
}
.service-card:hover .cardtop span img{
  filter: brightness(0) invert(1);
}

.service-card .cardtop p{
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0px;
}
.service-card:hover .cardtop p{
   color: #ac8530;
}
.service-card .cont h3{
font-size: 24px;
font-weight: 500;
color: #fff;
margin-bottom: 12px;
}
.service-card .cont p{
  color: #F8F8F8;
}
.service-card:hover .cont h3{
  color: #000000;
}
.service-card:hover .cont p{
  color: #8B8B8B;
}

.service-carousel .owl-nav {
      position: relative;
    bottom: 0;
    top: 35px;
    width: 100%;
    /* transform: translateY(100%); */
    display: none;
    justify-content: flex-end;
    gap: 10px;
        padding-right: 8%;
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
  border-radius: 50% !important;
  cursor: pointer !important;
  border: 1px solid none !important;
  width: 47px !important;
  height: 47px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-carousel .owl-nav .owl-prev{
  background: #fff!important;
}
.service-carousel .owl-nav .owl-next{
  background: #00BAA6!important;
}

.service-carousel .owl-nav img {
  opacity: 60%;
  width: 20px;
}

.service-carousel .owl-nav button:hover img {
  opacity: 100%;
}

/* addserv */
.serv-contsec{
         display: flex;
    gap: 25px;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 35px;
    border-bottom: 1px solid #E0E0E0;
}
.add-serv-para{
  font-size: 32px;
  font-weight: 500;
  color: #1D1D1E;
  line-height: 49px;
      font-family: 'Optima' !important;
}



/* whyschoose */
.whychoose-full{
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}
.circle-logo{
      display: flex;
    position: relative;
    top: 0;
    background: #F4F2E8;
    border-radius: 69%;
    width: 152px;
    height: 152px;
    right: 0;
    justify-content: center;
    align-items: center;
    pointer-events: none;
        margin-left: auto;
}
.circle-logo .logoicn{
  width: 64px;
  position: relative;
}
.circle-logo .logtext{
width: 126px;
position: absolute;
animation: rotateText 10s linear infinite;
}
@keyframes rotateText {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.whyimg img{
  border-radius: 16px;
}

.whycard{
  padding: 10px 0;
  padding-right: 20px;
}
.whycard h3{
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 8px;
}
.whycard p{
     font-size: 16px;
    color: #5E5E5E;
    font-weight: 400;
}


/* section6 */
.trnstxthed{
      font-size: 48px;
    font-weight: 500;
    color: #AC8530;
    line-height: 151%;
}
.ctrcard{
  border-radius: 16px;
  padding: 18px 11px;
      display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 362px;
}
.ctrcard .ctrmainimg{
border-radius: 16px;
height: 100%;
object-fit: cover;
}
.ctrcard2{
background: #D3B06C;
  height: auto;
    min-height: 294px;
}
.ctrcard2:hover .bulb{
      animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.ctrcard .topcrd{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.ctrcard .btmcrd .cont{
font-size: 20px;
color: #261900;
margin-bottom: 5px;
font-weight: 500;
}
.ctrcard .btmcrd .desc{
  color:#736445; 
}
.ctrcard3{
  height: auto;
    min-height: 247px;
  background: #F4F2E8;
  border: 1px solid #DBDBDB;
}
.ctrcard .btmcrd .cont2{
    color: #7D622E;
    opacity: 70%;
font-weight: 400;
font-size: 20px;
margin-bottom: 8px;
}
.ctrcard .btmcrd .contcount{
  color: #3D2900;
  line-height: 55px;
  font-weight: 600;
  font-size: 60px;
  margin-bottom: 8px;
}
.ctrcard4{
      background: #E6C688;
    height: auto;
    min-height: 294px;
    display: flex;
    justify-content: center;
}
.ctrcard5{
  overflow: hidden;
  background: linear-gradient(
320deg, #AC8530, #E5D2A9, #D6BC85);
}
.ctrcard5 .btmcrd{
  padding: 18px 11px;
}
.ctrcard5 .btmimg img{
  border-radius: 0 0 16px 16px;
}
.abtcrd .card-gold img{
top: -78px;
    position: absolute;
    right: -25px;
    transform: rotate(27deg);
    transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ctrcard5:hover .btmimg img{
transform: rotate(5deg) scale(1.1);
transition: all 0.5s ease;
  transition: all 0.5s ease;
} 


.mainpara{
  color: #636363;
  font-weight: 500;
}

.ctrcard3:hover .shield{
      animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}




/* process */
.processcrds{
      position: absolute;
    padding-left: 15px;
    bottom: 21px;
    left: 1.5rem;
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}
.processcrds span{
  color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    background: #ffffff2b;
    padding: 6px 15px;
    border: 1px solid #ffffff33;
    backdrop-filter: blur(12px);
    transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.processcrds span:hover{
  transform: scale(1.05);
   border: 1px solid #ffffff4e;
  transition: all 0.5s ease;
  transition: all 0.5s ease;
}
 .f-card{
      padding: 22px;
    padding-left: 0px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
  gap: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.f-card h3{
  font-size: 20px;
  font-weight: 500;
  color: #261A00;
  margin-bottom: 7px;
  transition: all 0.4s ease;
}
.f-card p{
  font-size: 16px;
  color: #636363;
  transition: all 0.4s ease;
}
.f-card .icn{
     width: 77px;
    height: 77px;
    border-radius: 8px;
    background: #FFFBF3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.f-card .cont{
width: calc(100% - 97px);
}
.f-card:hover .icn img{
animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

/* brands */
.brands{
  background: linear-gradient(
0deg, #F4F2E8, #fff);
  
}
.brnadcard{
  height: 92px;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}
.brnadcard img{
  max-width: 150px;
}
.brnadcard:hover img {
    animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}


/* testimonails */
  .testi-card{
    background: linear-gradient(180deg, #FFFDF4, #FFFFFF);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #E1E4EB;
  }
  .testi-card .cont p{
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E1E4EB;
  }
  .testi-card .cardimg{
        display: flex;
        gap: 8px;
        flex-direction: column;
        width: 100%;
  }
  .testi-card .cardimg .profile{
    width: 55px;
    height: 55px;
    border-radius: 12px;
  }
   .testi-card .cardimg .crdname{
        display: flex;
        flex-direction: column;
    width: calc(100% - 63px);
   }
    .testi-card .cardimg .crdname p{color: #1A1A1A;font-size: 17px;font-weight: 500;}
    .testi-card .cardimg .crdname .designatin{
      font-size: 15px;
      color: #4D4D4D;
      font-weight: 500;
    }
    .cardimg-full{
          display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 24px;

    }
    .testi-card .cardimg .crdname img{
      width: 108px;
    }
.testimonial-carousel .owl-nav {
      position: relative;
    bottom: 0;
    top: 35px;
    width: 100%;
    /* transform: translateY(100%); */
    display: none;
    justify-content: flex-end;
    gap: 10px;
        padding-right: 8%;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  border-radius: 50% !important;
  cursor: pointer !important;
  border: 1px solid none !important;
  width: 47px !important;
  height: 47px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-carousel .owl-nav .owl-prev{
  background: #919191!important;
}
.testimonial-carousel .owl-nav .owl-next{
  background: #00BAA6!important;
}

.testimonial-carousel .owl-nav img {
  opacity: 60%;
  width: 20px;
  filter: brightness(0.2);
}

.testimonial-carousel .owl-nav button:hover img {
  opacity: 100%;
}  

/* blogs */
.blog-card{
  background: #fff;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
      
      transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.blog-card .cardimg {
overflow: hidden;
 border-radius: 16px 16px;
}

.blog-card:hover .cardimg img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.blog-card .cardimg img{
  border-radius: 16px 16px;
      object-fit: cover;
  transform: scale(1);
    -webkit-transform: scale(1);
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.blog-card .cont{
  padding: 28px 0px;
}
.blog-card .cont .dte{
  font-size: 14px;
  font-weight: 600;
  color: #D3B06C;
  margin-bottom: 5px;
}
.blog-card .cont .ttl{
  display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 8px;
}
.blog-card .cont .ttl img{
  width: 24px;
}
.blog-card .cont .desc{
  color: #636363;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.blog-card .cont .blogbtm p{
  color: #00BAA6;
}
.blog-card .blogbtm{
 display: flex;
 margin-top: 30px;
    justify-content: space-between;
    align-items: center;
}
.blog-carousel .owl-nav{
  display: none;
}   


/* contactcta */
.con-cta{
  background: url(../img/images/cta-bac.webp) no-repeat;
  background-size: cover;
    border-radius: 16px;
    padding: 90px 48px;
        background-position: center;
      height: auto;
}
.con-cta .mainhed{
  color: #fff;
}


.con-cta .cta-card{
         display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: space-between;
    padding: 35px 40px;
    max-width: 100%;
    position: relative;

}
.con-cta .subhed span{
  background: transparent;
    border-radius: unset;
    width: auto;
    height: auto;
    margin-left: 3px;
}
.con-cta-round{
     position: absolute;
    right: -56px;
    margin-top: -60px;
}



/* ctabtm */
.ctabtm{
  background: url(../img/images/ctabtm-bac.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ctaobjct{
position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}

.ctabtm h2{
      color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 135%;
}
.ctabtm h2 .bacwht{
      background: #00BAA6;
    -webkit-text-fill-color: unset;
    padding: 5px 16px;
    border-radius: 48px;
}
.ctabtm .cta-card{
      max-width: 50%;

}









/* CONTACTFROM */
.con-field{
    margin-bottom: 12px;
}
.con-desc {
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  
}

.con-desc .cont-img {
 width: 36px;
    height: 36px;
    background: #2e7bd7;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.con-desc p {
  margin-bottom: 0;
  width: calc(100% - 51px);
  color: #ffffff;}
.con-desc p a{
    color: #ffffff!important;
    font-weight:400;
}
.cont-img img {
  width: 22px;
}

.con-field label {
    font-size: 16px;
    color: #ac8530;
    font-weight: 500;
    width: 100%;
    float: left;
    margin-bottom: 5px;
        display: flex;
    gap: 5px;
    align-items: center;
}
.con-field input {
    width: 100%;
    float: left;
    padding: 14px;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    font-size: 16px;
    color: #74757D;
        background: #FDFDFD;
    height: 60px;
    outline:none!important;
}
.con-field textarea {
    width: 100%;
    float: left;
         background: #FDFDFD;
    padding: 12px;
      border: 1px solid #C6C6C6;
    border-radius: 8px;
    font-size: 16px;
    color: #74757D;
    height: 170px;
    outline:none!important;
}
.con-field select {
    width: 100%;
    float: left;
    padding: 14px;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    font-size: 16px;
    color: #74757D;
        background: #FDFDFD;
    height: 60px;
    outline:none!important;
}

.bookingfrm input,
.bookingfrm textarea,
.bookingfrm select{
height: 46px!important;
padding: 10px 14px;
background: #ac853047;
}

.modal-dialog{
  display: flex;
  height: 100vh;
  align-items: center;
}

/* modal */
@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px !important;
    }
}
#booking .modal-content {
    /* background: #000; */
    background-size: cover;
    border-radius: 20px;
        background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
 border: none;
}
.close_form {
    border-radius: 30px;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 5px;
    z-index: 999;
    top: 15px;
    background: #ac8530  url(../img/icons/close.svg) no-repeat center center;
    background-size: 15px 15px;
    text-indent: 100%;
    white-space: nowrap;
        background-position-x: 12px;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.mod-new {
    width: 100%;
    float: left;
    padding: 30px;
}



















/* group */
.groupsec{
  text-align: center;
  align-items: center;
  max-width: 900px;
  margin: auto;
  padding-top: 70px;
}
.groupsec p{
  font-size: 18px;
  color: #A2A2A2;
}
.goc-logo{
     width: 210px;
    height: 100px;
    border-radius: 10px;
    padding: 10px;
    display: flex
;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    margin-top: 20px;

}




/* market */
.market .service-sec{
gap:18px;
}
.marketcard .cardno{
  position: relative;
  margin-bottom: 15px;
  overflow-x: hidden;
}
.marketcard .cardno span{
      width: 51px;
    height: 44px;
    color: #161F00;
    background: #FFFFFF;
    clip-path: polygon(0% 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.cardno::after{
  content: '';
    position: absolute;
    background: #AEB59A;
    height: 0.5px;
    width: 100%;
    left: 62px;
    top: 50%;
}
.marketcard .cardcont h3{
  font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
}    
.marketcard .cardcont p{
  color: #828282;
  margin-bottom: 14px;
  line-height: 155%;
}
.marketcard:hover .cardno span{
background: #A8D044;
transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.marketcard .card-img img{
width:100%;
max-width: 100%;}



.globalmap{
  position: absolute;
    top: 80px;
    right: 0;
    width: 50%;
    /* height: 380px; */
    display: flex
;
    justify-content: flex-end;
}
.globalmap img{
object-fit: contain;
    height: 380px;
    position: relative;
    right: 0;
}

.globlhed{
font-size: 42px;
}





.menuimg{
  padding: 15px;
}
.menuimg img{
     border-radius: 10px;
    height: 175px;
    width: 100%;
    object-fit: cover;
}



/* footer */
.footer{
  border-top: 1px solid #B3B3B3;
  background: #F4F4F4;
}
.ft-toper{
  background: #F4F4F4;
  height: 40px;
  width: 100%;
}
.email-box {
  display: flex;
  align-items: center;
  background: #D3B06C; /* gold background */
  border-radius: 6px;
  padding: 6px;
  width: 100%;
}

.email-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 5px 14px;
  font-size: 14px;
      width: calc(38px - 100%);
}

.email-box input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.email-box button {
  border: none;
  cursor: pointer;
  background: #AC8530; /* darker gold */
  width: 38px;
  height: 38px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.email-box button img{
  filter: brightness(0) invert(1);
}
.email-box button:hover {
  background: #9c7624;
}
.ft-first{
  border-left: 1px solid #B3B3B3;
  border-bottom: 1px solid #B3B3B3;
  border-right: 1px solid #B3B3B3;
}
.ft-email{
  padding: 80px 30px 75px;
  border-right: 1px solid #B3B3B3; 
}
.ft-email h3{
  font-size: 33px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 13px;
}
.ft-email p{
  color: #8F8F8F;
  margin-bottom: 80px;
}


.add-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.add-box .add-img {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-box p {
  color: #8F8F8F;
  margin-bottom: 0;
  width: calc(100% - 32px);
}
.add-box p a{
    color: #8F8F8F!important;
    font-weight:400;
}

.add-box img {
  width: 24px;
}
.ft-addres{
  padding: 65px 30px;
  border-right: 1px solid #B3B3B3;
}


.ft-top{
      display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 44px;
}
.ftsectn{
  background: #1C1C1C;
  padding: 55px 40px 30px;
  border-radius: 20px;
}

.quicklink1{
  width: 33%;
}
.quicklink2{
  width: 67%;
  padding-left: 15px;
}


.ft-p{
  color: #fff;
  line-height: 25px;
  margin: 20px 0;
}
.ft-logo{
  max-width: 100%;
  width: 165px;
  margin-bottom: 0;
}
.ft-logo img{
  width: 100%;
}
.quicklink{
  padding-top: 80px;
}
.quicklink h2 {
  font-family: "Inter", sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #3B3B3B;
    margin-bottom: 22px;
}
.quicklink li{
      margin-bottom: 17px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}
.quicklink li a{
  color:#8F8F8F;
  font-size: 16px;
  font-weight: 400;
}
.quicklink li p{
   color:#B2B3B1;
  font-size: 16px;
  font-weight: 500;
}

.quicklink li a:hover{
  color:#A58236;

}

.copy{
    padding: 25px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.ft-social{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.ft-social a {
           width: 40px;
    height: 40px;
    border: 1px solid #A9A9A9;
    border-radius: 27px;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.ft-social a span img{
filter: brightness(0);
}


.ft-social a:hover span img{
animation-name: zoomIn;
filter: unset;
    animation-duration: .5s;
    animation-iteration-count: 1;
}

.copy p a{
  color: #808080;
}
.copy p a:hover{
  color: #b3b3b3;
}
.copy p br{
  display: none;
}
.copy p span{
  padding: 0 5px;
}
/* .ft-social a span img{
    height: 17px;
    width: 17px;
} */












@media(max-width: 1366px){
    
.mainhed{
      font-size:34px;
    }
    
  }



@media (min-width:992px) and (max-width:1199px){

.header_menu_area > ul > li > a {
  font-size: 15px;
}
.header_menu_area > ul > li {
  padding: 0px 10px 0px 1px;
}
.whybox5 .man{
  max-width: 95%;
}
.whybox5 .whyrounded {
    bottom: -15%;
    left: -33%;
}
.nav-menu > li > a {
    padding: 0px 6px!important;
    font-size: 14px;
  }
  .nav-header {
    width: 238px;
}
.nav-search{
  padding-top: 17px!important;
}
}

@media(max-width: 1199px){
  .ctrcard .btmcrd .contcount {
    line-height: 32px;
    font-size: 40px;
}
  .bnrtext{
    padding-right: 25px;
  }
  .bnrhed{
    font-size: 50px;
  }
.service-card .card-hed h3{
  font-size: 22px;
}

.about-sect p {
    font-size: 27px;
    line-height: 38px;
}
.countsection .count-cont h3{
  font-size: 45px;
}
.countsection .countbx p{
  font: 18px;
}
.addsercard img {
    margin-top: 24px;
    height: 70px;
}
.addsercard{
  padding: 15px 10px;
}
.addsercard p{
  font-size: 14px;
}
.whycard1 .cont {
width: 225px;
}
.whycard1 .cardimg {
    width: calc(100% - 22px);}
    .whycard2 .cardimg{
  width: 125px;
}
.brnadcard img {
    max-width: 100px;
    height: 50%;
    object-fit: contain;
}
.brnadcard{
  background-position: center;
}
.serv-contsec{
  gap: unset;
}
.count-cont h3{
  font-size: 53px;
}
}



@media(max-width: 991px){
    .ft-email {
        padding: 30px 15px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 25px;
        border-bottom: 1px solid #B3B3B3;
    }
    .ft-addres{
      padding: 30px 15px;
       
    }
    .quicklink{
      padding: 30px 15px;
      margin-bottom: 0px!important;
    }
    .ft-email p{
      margin-bottom: 0px;
    }
    .email-box{
      max-width: 250px;
    }
.whycard .cont{
width: 100%!important;
}
.whycard .cardimg{
        width: 100% !important;
        display: flex;
        justify-content: flex-start;
}
.whycard .cardimg img{
  max-width: 200px;
}
.whycard3{
  height: 220px!important;
}


.menus{
  display: none;
}
.side-menu-4{
  display: none;
}
.hdr-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.bnrtext{
  padding-right: 15px;
}
.bnrhed{
  font-size: 50px;
}

.shining:before{
  left: -106%;
}
.mainhed {
       font-size: 30px;
    }
.whybox{
  height: 280px;
}
.whybox4{
  height: 215px!important;
}
.whybox5 .man{
  max-width: 93%;
}
.whybox5 .whyrounded {
    bottom: -15%;
    left: -33%;
}

.count-cont h4{
  font-size: 18px;
}
.certifications p{
  max-width: 100%;
}
.certificte{
  padding: 0;
}
.certficatelist{
  padding: 0;
  padding-top: 25px;
}
.certifications{
  padding: 18px!important;
}
.spad{
  padding-top: 60px;
  padding-bottom: 60px;
}
.spad2{
   padding-top: 60px;
  padding-bottom: 60px;
}
.quicklink{
  margin-bottom: 25px;
}
.abt{
  margin-top: 15px;
}
.service-card{
  margin-bottom: 30px;
}
.atributes-card {
    padding-top: 25px !important;
}
.flavours-card .card-hed h3{
  font-size: 22px;
}
.flavour-under .mainhed{
  font-size: 26px;
}
.flavour-under p br{
  display: none;
}
.countbx {
  padding: 30px 15px;
}
.cta{
  height: auto;
}
.cta-card {
  
    padding: 50px 40px;
}


.ft-social{
  margin-bottom: 25px!important;
}
.servicecrain {
    margin-top: -60px;
    max-width: 165px;
}
.countsection .count-cont h3{
  font-size: 30px;
}
.countsection .countbx p{
  font-size: 16px;
}
.countsection .countbx{
  padding: 15px 0;
}
.variations{
  padding: 0;
}
.f-top{
  width: 280px;
}

.groupsec{
  padding-top: 0px;
}
.navigation-portrait .megamenu-panel{
  padding: 12px!important;
}
.megamenu-panel {
width: 100%!important;}
.nav-toggle {
margin-top: -26px!important;}
.abt-cntsec{
  margin: 0;
}
.trnstxt{
  font-size: 30px;
}
.trnstxthed{
  font-size: 30px;
}
.abtcrd .cardtxt h2{
  font-size: 20px;
}
.service-card{
  gap: 35px;
  height: 100%;
}
.service-card .cont h3 {
font-size: 20px;
}
.circle-logo {
    margin-top: 15px!important;
    margin-bottom: 15px!important;

  }
  .blog-card .cont .ttl{
      font-size: 20px;
      line-height: normal;
    }
    .blog-card .cont .desc{
      font-size: 16px;
      line-height: 24px;
    }

        .nav-menu > li > a.stable {
        color: #956600 !important;
    }
.nav-menu > li:hover > a,
.nav-menu > li.active > a,
.nav-menu > li.focus > a {
  color: #956600!important;
}
.nav-menu > li > a img{
  filter: brightness(0);
}
.megamenu-list > li > a:hover{
  color: #956600!important;
}

}






@media(max-width: 767px){
  .ft-email{
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cardimg-full {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
   
}
  .ctrcard{
    overflow: hidden;
  }
  .bnrtext{
    flex-direction: column;
            align-items: flex-start;
  }
  .servicepara{
    max-width: 100%;
  }
  .bnrhed{
    max-width: 100%;
    width: 100%;
  }
  .bnrsecnd{
    max-width: 100%;
    width: 100%;
  }
  .ctaobjct{
  position: relative;
      margin-left: auto;
}
  .banner{
    height: auto;
  }
  .whychoosehedr {
    width: 100%;
    max-width: 100%;}
.bnrtxt-slider {
    padding-bottom: 35px;
}
.service-card .cont h3 {
  font-size: 20px;
}
.whyship {
  width: 140px;
}
.whygroup {
    width: 140px;
    top: 0px;
}

.bnrhed{
  font-size: 40px;
}
.abtcont{
  padding-left: 0;
  width: 100%;
  padding-right: 0;
}
    .service-card .card-hed h3 {
        font-size: 20px;
    }

.whybox{
  height: auto!important;
}
   
    .product-bx{
      height: 250px;
    }
    .product-bx img{
      height: 100%;
              width: 100%;
    }
    .product-bx .cont h3{
      font-size: 20px;
    }
    .product-bx .cont {
    padding: 15px 15px;
  }
  .countbx{
   margin-bottom: 0px;
   padding-bottom: 0px;
  }
 .ft-email h3{
  font-size: 22px;
 }
  .copy p{
    text-align: center;
  }

  .callto-bx{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 50px 25px;
  }
  .callto-bx p{
    max-width: 100%;
  }
 .whybox4 {
      margin-top: 15px;
        /* height: 215px !important; */
        width: 50%;
    }
  .whybox5{
            height: 340px !important;
     width: 50%;
             margin-top: 15px;
}
    .whybox5 .man {
        max-width: 50%;
    }
        .whybox5 .whyrounded {
        bottom: -30%;
        left: -36%;
    }
    .whybox4 img{
      bottom: -57%;
    }
.whyfull3{
  flex-direction: row;
  height: 100%;
}
.flavours-card{
  margin-bottom: 30px;
}
.globalmap {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    /* height: 380px; */
    display: flex
;
    justify-content: flex-start;
}
.globalmap img{
  height: auto;
}
.blogcard .card-date{
  flex-direction: column;
}
.servicecrain {
        margin-top: 0;
        max-width: 90px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    .service-sec{
      position: relative;
      z-index: 1;
    }
    .f-top{
      display: none;
    }
   .con-cta {
    height: auto;
   }
    .con-cta .cta-card{
      max-width: 100%;
      padding: 50px 30px;
    }
    .serviceslidefull{
      padding-left: 15px;
      margin-top: 30px;
    }
    .service-carousel .owl-nav{
      top: 0;
    }
    .add-serv-para{
      font-size: 20px;
     line-height: 31px;
    }
    .inerpage-hed{
              flex-direction: column;
        width: 100%;
        display: flex;
        align-items: flex-start !important;
        justify-content: center !important;
    }
    .innerpagehd .mainhed{
      width: 100%;
      max-width: 100%!important;
    }
    .quicklink1{
      width: 100%;
    }
    .quicklink2{
      width: 100%;
    }
    .quicklink{
      padding: 15px;
    }
    
}


@media(max-width: 575px){
  .quicklink{
    padding: 15px;
  }
  .con-cta{
    background-position: right;
    padding: 70px 30px;
  }
  .abtcrd .card-gold .cardtxt{
    position: relative;
    padding: 0px;

  }
  .ctrcard{
    min-height: auto!important;
    height: auto!important;
  }
  .ctrcard5 .btmimg img{
            width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: top;
  }
  .proces-card .cont h3{
    font-size: 20px;
  }
  .proces-card .cont h2{
    font-size: 20px;
  }
  .proces-card .cont{
    gap: 10px;
  }
     
    .whycard h3{
      font-size: 18px;
    }
  .count-cont h3 {
    font-size: 38px
  }
  .abt-cntsec{
    flex-direction: column;
  }
  .gglrate {
    padding: 16px 8px;
  }
  .gglrate img {
    max-width: 125px;
}
.bnrgren img {
    max-width: 36px;
}
.bnrgren {
    padding: 15px 5px;
  }
  .bnr-contnt p{
    font-size: 14px;
  }
.con-cta .cta-card{
  max-width: 100%;
  width: 100%;
}
.con-cta-round{
  display: none;
}
.ft-top{
  flex-direction: column;
      align-items: flex-start;
      padding-bottom: 20px;
      margin-bottom: 20px;
      gap: 15px;
}
    .countbx {
      padding: 10px;
    }
    .serv-contsec{
      flex-wrap: wrap;
    }
    .atributes-card h3 {
      font-size: 19px;
    }
.bnrhed{
  font-size: 32px;
}
.nav-header{
  width: 160px;
}
.abtmain{
  max-width: 100%;
}
.mainhed {
                font-size: 28px;
    }
    
.service-carousel .owl-nav{
  top: -10px;
  justify-content: flex-start;
}
.serviceslide{
  padding-top: 0;
}
.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    width: 36px !important;
    height: 36px !important;
}
.service-carousel .owl-nav img{
width: 18px;
}
.whybox2{
  width: 100%;
}
.whybox3{
  width: 100%;
}
.whyfull {
  height: auto!important;
}
.whyfull2 {
  height: auto!important;
}
.whybox2 img {
    margin: auto;
    width: auto;
    margin-top: 15px;
    margin-bottom: 50px;
    pointer-events: none;
}
.whybox{
  height: 280px!important;
}

.whyfull3{
  flex-direction: column;
  height: auto;
}
.whybox5{
  width: 100%;
}
    .whybox5 .man {
        height: calc(100% - 120px) !important;
        width: auto;
    }
        .whybox5 .whyrounded {
        bottom: -31%;
        left: -91px;
        max-width: 230px;
        width: 230px;
    }
.whybox4{
  width: 100%;
}
.product-bx {
        height: 210px;
    }
.circle-logo {
    width: 60px;
    height: 60px;
  }

  .stoppuls {
    width: 20px;
    height: 20px;
    bottom: -13px;}

    @keyframes pulseShadow {
  0% {
    box-shadow:
      0 0 0 5px rgba(47, 105, 174, 0.6),
      0 0 0 10px rgba(47, 105, 174, 0.5);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(47, 105, 174, 0.2),
      0 0 0 16px rgba(47, 105, 174, 0.1);
  }
  100% {
    box-shadow:
      0 0 0 5px rgba(47, 105, 174, 0.6),
      0 0 0 10px rgba(47, 105, 174, 0.5);
  }
}

.marquee-item p{
  font-size: 20px;
}
.marquee-track{
  animation: marquee-scroll 7s linear infinite;
}
.marquee-item img {
    height: 26px;
    width: 26px;
    margin-right: 20px;
  }
  .marquee-item {
margin-right: 20px;  
}

.spad{
  padding-top: 35px;
  padding-bottom: 35px;
}
.spad2{
   padding-top: 35px;
  padding-bottom: 35px;
}
.quicklink{
  margin-bottom: 16px;
}
.quicklink2{
  padding-top: 0px;
}
.circle-logo2 {
    width: 55px;
    height: 55px;
}
.ft-logo {
    max-width: 100%;
    width: 170px;
}
.foter-logo {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.slide-con li a {
                  width: 42px;
        height: 42px;
      }

    .slide-con li a img{
  width: 22px;
}
.copy p br{
  display: block;
}
.copy p span{
  display: none;
}

.subhed {
  font-size: 15px;
}
    .cta-card {
        padding: 50px 15px;
    }
    .service-sec p br{
      display: none;
    }
.whycontainer{
  display: none;
}
.variations-full{
  padding-top: 40px !important;
}
.whygroup{
  width: 65px;
  height: 29px;
}
    .whyship {
        width: 70px;
        top: 0;
        height: 22px;
    }
    .f-btm {
    margin-top: 20px;
}
.f-card h3 {
font-size: 21px;
margin-bottom: 10px;
}
}


@media(max-width: 360px){
     .mainhed {
        font-size: 22px;
    } 
    .bnrtxt-slider {
        padding-top: 190px;
    }


}











