@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  /*color variable*/
  --color-primary: #DCA728;
  --color-white: #fff;
 

  /*font variable*/
  --font-poppins:"Poppins", serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-poppins);
  font-size: 15px;
  width:100%;
  overflow-x: hidden;
  background-image:url(../images/bg.webp);

}
.img-fluid {
  width: 100%;
}
section{
  margin-bottom: 70px;
  position: relative;
}

/*header*/
header.header {
  z-index: 1;
  position: relative;
}
header .navbar-collapse {  
  flex-grow: 0;
}
.navbg {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    border: 2px solid #1f1c1c;
    width: 100%;
    padding: 5px 10px;
    border-radius: 10px;
}
.navbar-toggler{
  border: 1px solid var(--color-primary);
  border-color:var(--color-primary);
  padding: 5px 5px;
  border-radius: 6px;
}
.navbar-toggler:focus{
  box-shadow: none;
  outline: none;
}
.navbar-toggler:hover{
  background-color: var(--color-primary);
}
.logo{
  width: 150px;
}
.nav-link{
  color:var(--color-white);
  font-weight: 600;
  font-size: 16px;
}
.nav-link.active{
  font-weight: 600;
  color:var(--color-primary) !important;
}
.nav-item .nav-link{
margin: 0px 20px;
}
.nav-item .nav-link:hover{
  color:var(--color-primary);
}
/*button*/
.link-btn{
  color:#fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
}
.link-btn i,.link-btn svg {
  padding-left: 10px;
}
.link-btn:hover{
  color:var(--color-primary);
}
.section-title{
  text-transform: uppercase;
  color:var(--color-white);
  font-size: 36px;
}
.section-title span{
  color:var(--color-primary);
}
.banner-title{
  text-transform: uppercase;
  color:var(--color-white);
  font-size: 50px;
}
.banner-title span{
  color:var(--color-primary);

}

p{
  color:var(--color-white);
}
.number{
  font-size: 60px;
    font-weight: 800;
    top: 0;
    z-index: 0;
    opacity: 1;
    -webkit-text-stroke: 1px #dddddd00;
    position: relative;
    color: #ddd;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ddd;
    border: rgba(0, 0, 0, .08);
}
/*home banner*/
.homebanner {
  position: relative;
  /* margin-bottom: 25%; */
}
.down {
    text-align: center;
    margin-top: -30px;
    position: relative;
}
/* about*/

.about {
  border:2px solid; 
  padding: 0px 40px;
  border-radius: 20px;
  
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px; /* border thickness */
  background: linear-gradient(117.57deg, #C29C2D -10.31%, #ffecb31c 65.57%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /* for Chrome/Safari */
  mask-composite: exclude;     /* for Firefox */
  pointer-events: none; /* don't block clicks */
  margin:0px 50px;
  
}
.aboutr { 
  border:2px solid;
  padding: 0px 40px;
  border-radius: 20px;
}
.aboutr::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px; /* border thickness */
  background: linear-gradient(117.57deg, #ffecb31c -10.31%, #C29C2D 65.57%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /* for Chrome/Safari */
  mask-composite: exclude;     /* for Firefox */
  pointer-events: none; /* don't block clicks */
  margin:0px 50px;
  
}

.about-sec .about-img{
  margin-top: -70px;
}

/*contact us*/


.contact .address{
  margin: 0px;
  padding: 0px;
  margin-top: 40px;
}
.contact .address li{
  margin-bottom: 50px;
 list-style: none;
 position: relative;
}
.contact .address li::after{
  content: '';
  background: linear-gradient(90deg, #111112 0%, #C29C2D 49.04%, #111213 100%);
  width: 100%;
  height: 2px;
  position: absolute;
  margin-top:10px;
  bottom: -26px;
}
.contact .address li p{
  font-size: 13px;
  margin-bottom: 0px;
}
.contact .address li a{
  color:inherit;
  text-decoration: none;
}
.contact .address li .flex-shrink-0{
  background-color: rgba(40, 41, 43, 1);
  border-radius: 50%;
  padding: 10px;
}
.contact .address li .flex-shrink-0 img {
    width: 20px;
    height: 18px;
}
.contact .address h6{
  color:var(--color-white);
}
.form-control{
  background-color: rgba(40, 41, 43, 1);
  border-color: rgba(40, 41, 43, 1);
  color:#858585;
}
.form-control::placeholder{
  color:#858585;
}
.btn-primary{
  background-color: var(--color-primary);
  text-align: center;
  width: 100%;
  color:#000;
  border-color: var(--color-primary);
}
.btn-primary:hover{
  background-color: transparent;
  border-color: var(--color-primary);
}
.contact-border{
   border: 2px solid;
  
  border-image-slice: 1;   
  padding: 40px;
  border-radius: 20px;
}
.contact-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px; /* border thickness */
  background: linear-gradient(117.57deg, #C29C2D -10.31%, #ffecb31c 65.57%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /* for Chrome/Safari */
  mask-composite: exclude;     /* for Firefox */
  pointer-events: none; /* don't block clicks */
  margin:0px 50px;
  
}
/*footer css*/

.footer{
  background-image: url('../images/fbg.webp');
  width: 100%;
  object-fit: cover;
  background-size: 100% 100%;
}
.fmenu{
  color:var(--color-white);
}

.fmenu a {
    list-style: none;
    margin: 6px;
    border-right: 1px solid var(--color-white);
    padding-right: 10px;
    line-height: 30px;
}
.fmenu a:last-child{
  border-right: none;
}
.fmenu a{
  text-decoration: none;
  color:var(--color-white);
}
.footer-strip p,.footer-strip p a{
  color:#fff;
  font-size: 14px;
  margin-bottom: 0px;
  text-decoration: none;
}
.footer-strip{
  background-color: var(--color-primary);
  padding: 10px 0px;
}
.mobile{
    display: none;
  }

  /* about page*/

  .inner-banner{
    position: relative;
    width: 100%;
    margin-top: -9%;
  }
  .banner-detail {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10%;
    width: 100%;
  }
.btn-link{
  color:#fff;
  text-decoration: none;
  text-transform: capitalize;
}
.btn-link.active{
  color:var(--color-primary);
}
.highlights .card {
    border: 2px solid;
    border-image-slice: 1;
    padding: 40px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    transition: 0.3s;
    background-color: #111112;
  }
  .highlights .card1 {
    border-image-source: linear-gradient(
    28deg, #C29C2D -10.31%, #ffecb31c 65.57%);
}
  
  .highlights .card2 {
    border-image-source: linear-gradient(161deg, #C29C2D -10.31%, #ffecb31c 65.57%);
}
  .highlights .card3 {
    border-image-source: linear-gradient(
328deg, #C29C2D -10.31%, #ffecb31c 65.57%);
}
  .highlights .card:hover {
    border-color: #f5c242;
  }
  .who-are-we .whoare{
    border:1px solid #ddd;
    padding: 10px 6%;
    position: relative;
  }
  .whoare .my-title{
    margin-top: -40px;
    font-size: 50px;
    color:var(--color-white);
  }
  .whoare .my-title .heading{
    background-color: #000;
    padding: 0px 40px;
    position: relative;
  }
 .whoare .my-title .heading::before {
    content: '.';
    font-size: 60px;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -17px;
    margin-left: -3px;
  }
  .whoare .my-title .heading::after {
    content: '.';
    font-size: 60px;
    color: var(--color-primary);
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -17px;
    margin-right: -3px;
}
  .whoare .my-title .heading span{
    color:var(--color-primary);
  }
/*approach page*/
 .reason-box {
    flex: 1 1 19%;       /* 5 equal columns */
    background: rgba(217, 217, 217, 1);
    margin: 5px;
    border-radius: 6px;
    min-height: 220px;
    transition: 0.3s;
  }
  .reason-box .head{
    margin-bottom: 20px;
    min-height: 160px;
  }
  .reason-box img {
    margin: 10px auto;
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
  }
  .reason-box h5{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .reason-box p{
    font-size: 14px;
    font-weight: 500;
    color:#000;
  }
  /* Responsive: stack boxes on small screens */
  @media(max-width: 992px) {
    .reason-box { flex: 1 1 45%; }
  }
  @media(max-width: 576px) {
    .reason-box { flex: 1 1 100%; }
  }

/*approach slider*/
   .approach-slider .approach-slider{
    position: relative;
   }
     .approach-slider .owl-item .testimonial-box {
       transform: translate3d(0, 0, 0);
      -webkit-transition: 0.3s;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.80);
    -ms-transform: scale(0.80);
    transform: scale(0.80);
    border:1px solid #B8860B;
    text-align: center;
    border-radius: 0px;
    padding: 20% 10%;
    height: 250px;
    }

    /* Center slide (active one) */
    .approach-slider .owl-item.center .testimonial-box {
      background: linear-gradient(145deg, #FFD700, #B8860B);
      color: #111;
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
      text-align: center;
    }
  .approach-slider .owl-item .testimonial-box h3{
      font-size: 25px;
      font-weight: 500;
      margin-bottom: 20px;
      color:#fff;
    }
    .approach-slider .owl-item.center .testimonial-box h3 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
      color:#fff;
    }
    .approach-slider .owl-item.center .testimonial-box p{
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 0px;
      color:#fff;
    }
    .approach-slider .owl-nav {
      position: absolute;
      top:0;
      margin-top: 10%;
      width: 100%;
    }
     .approach-slider .owl-nav .owl-prev{
        float: left;
        border:1px solid #B8860B;
        border-radius: 50%;
         width: 35px;
         height: 35px;
         margin-left:-10px;
     }
      .approach-slider .owl-nav .owl-next{
        float: right;
        border:1px solid #B8860B;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        margin-right:-10px;
     }
     .approach-slider .owl-nav svg{
      color:#B8860B;
      padding: 10px;
     }
    .approach-slider .owl-nav button {
      font-size: 24px !important;
      margin: 10px;
      color: #033aff !important;
    }
  /*solution page*/
 .nav-tabs.category {
    border-bottom: 0px;
    margin: 0px auto 60px;
    text-align: center;
    justify-content: center;
  }
  .nav-tabs.category .nav-item .nav-link {
    background-color: var(--color-white);
    border-radius: 10px;
    min-height: 200px;
    padding: 20px 44px;
    color:#000;
    margin-bottom: 20px;
  }
  .nav-tabs.category .nav-item .nav-link.active{
     background-color: var(--color-primary);
    color:#fff;
  }
  .nav-tabs.category .nav-item .nav-link.active img{
     filter: brightness(0) invert(1) opacity(0.8);
  }
  .nav-tabs.category .nav-item .nav-link.active h5{
    color:#fff;
  }
  .cat-box img{
    margin-bottom: 20px;
    width: 70px;
  }
 
  
  .investment-sec .investment{
    backdrop-filter: blur(24px);
    background-color: #19191961;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
  }
  .investment-sec .investment img{
    width: 90px;
  }
  .investment-sec .investment h5{
    color:#fff;
    font-size: 30px;
    font-weight: 600;
    font-family: var(--font-poppins);
  }
   .investment-sec .investment p{
    color:#fff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-poppins);
  }
  /*education*/
  .edu-card .card{
    border: 1px solid #353333;
    background-color: transparent;
    border-radius: 10px;
    height: 100%;
  }
  .edu-card .card img{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .edu-card .card .content{
    padding: 20px;
  }
  .edu-card .card .content h3{
    margin-bottom: 20px;
    color:#fff;
    min-height: 52px;
    line-height: 26px;
  }
  .edu-card .card .content h3 a{
    color:inherit;
    text-decoration: none;
    font-size: 20px;
  }
  .edu-card .card .content h3:hover a{
    color:var(--color-primary);
  }
  .edu-card .card .content a{
    color:#fff;
    text-decoration: none;
    font-size: 16px;
  }
  .edu-card .card .content a:hover{
    color:var(--color-primary);
  }
/* Media Query*/
  .toggle-nav {
      display: block;
      position: relative;
      right: 15px;
      height: 50px;
      width: 30px;
      cursor: pointer;
      z-index: 999999;
      text-align: left;
  }
  .toggle-nav i,
  .toggle-nav svg {
    font-size: 29px;
    color: #fff;
    margin-top: 10px;
    margin-left: 10px;
    border:1px solid var(--color-primary);
    padding:5px;
    border-radius: 6px;
  }
  .toggle-nav i:hover,
  .toggle-nav svg:hover{
    background-color: var(--color-primary);
  }
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999;
    top: 0;
    right: 0;
    background-color: #000;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    padding-left: 20px;
  }
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    display: block;
    color: #ffffff;
  }
  @media screen and (min-width: 1600px){
    .approach-slider .owl-nav {
      position: absolute;
      top: 0;
      margin-top: 8%;
      width: 100%;
    }
  }
  
@media screen and (min-width: 992px) {
  .collapse:not(.show) {
    display: none !important;
  }
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
  }
  .navbar-expand-lg .navbar-toggler {
    display: block;
  }
   .container-fluid{
    padding: 0px 50px !important;
    } 
}
@media screen and (min-width: 1025px) and (max-width: 1199px) { 
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .nav-tabs.category .nav-item .nav-link {
    min-height: 100px;
    padding: 20px 17px;
    margin: 0px 10px;
  }
  .cat-box img {
    margin-bottom: 20px;
    width: 50px;
  }
  .nav-tabs.category .nav-item .nav-link h5{
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
 .fmenu ul{
    margin:0px 0px;
  }
  .fmenu ul li {
    margin: 6px;
    padding-right: 10px;
  }
  .contact-border{
    padding: 30px;
  }
  section {
    margin-bottom: 48px;
  }
  .about{
    padding: 0px 30px 10px;
  }
  .section-title{
    font-size: 26px;
  }
  .about::before, .aboutr::before,.contact-border::before{
    margin: 0px 12px;
  }
  .approach-slider .owl-nav{
    margin-top: 16%;
  }
  .approach-slider .owl-nav .owl-prev{
    margin-left: -22px;
  }
  .approach-slider .owl-nav .owl-next{
    margin-right: -22px;
  }
  .approach-slider .owl-item .testimonial-box{
    padding: 20% 8%;
  }
  .nav-tabs.category .nav-item .nav-link {
    min-height: 100px;
    padding: 20px 17px;
    margin: 0px 10px;
  }
  .cat-box img {
    margin-bottom: 20px;
    width: 50px;
  }
  .nav-tabs.category .nav-item .nav-link h5{
    font-size: 14px;
  }
  .investment-sec .investment h5{
    font-size: 24px;
  }
  .investment-sec .investment p{
    font-size: 15px;
  }
  .banner-title {
    text-transform: uppercase;
    color: var(--color-white);
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .desktop{
    display:none;
  }
  .mobile{
    display: block;
  }
  
  .fmenu ul{
    margin:0px 0px;
  }
  .fmenu ul li {
    margin: 6px;
    padding-right: 10px;
  }
  .about{
    padding: 10px 20px;
  }
  .section-title{
    font-size: 20px;
  }
  p{
    font-size: 12px;
  }
  .contact-border{
    padding: 10px;
  }
  body{
    overflow-x: hidden;
    width: 100%;
  }
  .about-sec .about-img {
    margin-top: 0%;
    margin-bottom: 0px;
  }
  section {
    margin-bottom: 30px;
    position: relative;
  }
  .about img{
    margin-bottom: 20px;
  }
  .down{
    display: none;
  }
  .link-btn{
    color:var(--color-primary);
    font-size: 16px;
  }
  .link-btn i, .link-btn svg{
    color:#fff;
  }
  .approach{
    position: relative;
  }
  .approach .detail {
    position: absolute;
    margin: 10px 18px;
    padding-right: 10%;
}
  .number{
    font-size: 40px;
  }
  .fmenu a{
    font-size: 12px;
  }
  .footer-strip p, .footer-strip p a{
    text-align: center;
  }
  .d-flex.flex-wrap.justify-content-between{
    text-align: center;
    justify-content: center !important;
  }
  .homebanner .mobile img{
    margin-top: -25%;
  }
  .banner-title {
    font-size: 26px;
    margin-top: 20px;
  }
  .whoare .my-title {
    margin-top: -25px;
    font-size: 20px;
  }
  .whoare .my-title .heading{
    padding: 0 25px;
  }
  .whoare .my-title .heading::before, .whoare .my-title .heading::after{
    font-size: 38px;
  }
  .mobile .aboutr, .mobile .about{
    border:0;
    padding: 0px;
    margin: 0px;
  }
  .mobile .aboutr::before , .mobile .about::before,.contact-border::before{
    display: none !important;
  }
  .investment.d-flex.align-items-center {
    display: block !important;
    margin: 0 auto;
    text-align: center;
  }
  .edu-card .card .content {
    padding: 10px;
  }
  .approach-slider .owl-nav{
    margin-top: 36%;
  }
  .approach-slider .owl-nav .owl-prev{
    border:2px solid #fff;
    margin-left: 0px;
  }
  .approach-slider .owl-nav .owl-next{
    border:2px solid #fff;
    margin-right: 0px;
  }
  .approach-slider .owl-nav svg{
    color:#fff;
  }
  .approach-slider .owl-item .testimonial-box{
    padding: 20%;
    border-radius: 20px;
  }
  .investment-sec .investment h5{
    font-size: 20px;
  }
  .investment-sec .investment p{
    font-size: 14px;
  }
}
