/*
Theme Name: Skalabell 
Theme URI: https://www.skalabell.com/
Author: Skalabell 
Author URI: https://www.skalabell.com/
Description: Skalabell WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: skalabell-wp
*/

body {
    background: #fff;
    font-family: "Maitree", serif;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}

nav{
  position: relative;
  z-index: 99;
  width: 100%;
  background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
}
nav .wrapper{
  position: relative;
  max-width: 1200px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
  display: inline-block;
}
.nav-links li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

.logo img{
    width: 60%;
    min-width: 60%;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
    display: block;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

/*My CSS*/
.hederbottonline{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    height: 30px;
}
.bannertext{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bannertext h1{
    font-family: "Maitree", serif;
    color: #3d6afb;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
}

.bannertext p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    margin-top: 25px;
}

.bannerimages img{
    width: 100%;
    margin-bottom: -5px;
}

.homebannercontainer{
    padding: 100px 0 0 0;
}

.slogo img{
    width: 100%;
}
.slogo{
    z-index: 9;
}
.bannerimages{
    position: relative;
    text-align: center;
}

.middle-left{
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    bottom: 200px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 40px;
    font-size: 15px;
    color: #282828;
    text-align: left;
    font-weight: 600;
    font-style: italic;
}

.middle-right{
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    bottom: 200px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    right: 10px;
    font-size: 15px;
    color: #282828;
    text-align: left;
    font-weight: 600;
    font-style: italic;
}

.bottom-right{
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    bottom: 50px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 50px;
    text-align: left;
    font-size: 15px;
    color: #282828;
    font-weight: 600;
    font-style: italic;
}

.aboutskalabell h2{
    font-family: "Maitree", serif;
    color: #3d6afb;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: right;
    margin-bottom: 15px;
}

.aboutskalabell p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    text-align: right;
}

.signaturesec img{
    width: auto;
    min-width: auto;
    border-bottom: 2px solid #282828;
    opacity: 0.8;
}

.signaturesec{
    text-align: right;
}

.signaturesec h3{
    color: #0547e8;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 0px;
    opacity: 0.9;
}

.signaturesec h3 span{
    font-weight: 300;
}

.slogo {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.aboutussection{
    padding: 100px 0;
}

.ourservicescontainer{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 50px 0 60px 0;
    position: relative;
    z-index: 9;
}

.ourservicescontainer h2{
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}




.ourservicescontainer {
  text-align: center; /* centers the text and underline */
}

.ourservicescontainer h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px; /* space between text and underline */
}

.ourservicescontainer h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* centers underline under text */
  width: 100%;                /* 👈 fixed underline width (or use % for flexible) */
  height: 2px;                /* 👈 underline height */
  background-color: #fff;     /* underline color */
  border-radius: 2px;         /* optional rounded corners */
}



.counter-wrapper:after{
  content: '';
  position: absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
}
.counter-inner{
  position:relative;
  z-index:2;
}


.counter-wrapper .row{
    border: 2px solid #282828;
}

.count span{
    color: #3d6afb;
    font-size: 44px;
    font-weight: bold;
}

.count{
    color: #3d6afb;
    font-size: 44px;
    font-weight: bold;
}

.countertitle h3{
    color: #282828;
    font-size: 33px;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.specialcouinter{
    padding: 20px 0;
}

.counter-wrapper{
    margin: 50px 0 0 0;
}

.reviewcontainer{
    padding: 50px 0 0 0;
}

.reviewcontainer h2{
    font-family: "Maitree", serif;
    color: #282828;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.reviewcontainer {
  text-align: center; /* centers the text and underline */
}

.reviewcontainer h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px; /* space between text and underline */
  margin-bottom: 30px;
}

.reviewcontainer h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* centers underline under text */
  width: 100%;                /* 👈 fixed underline width (or use % for flexible) */
  height: 2px;                /* 👈 underline height */
  background-color: #282828;     /* underline color */
  border-radius: 2px;         /* optional rounded corners */
}


.reviewcontent{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 30px 20px;
}

.reviewcontent p{
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    text-align: left;
}

.reviewcontent h3{
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align: left;
}

.reviewcontent h4{
    color: #fff;
    font-weight: 300;
    font-size: 13px;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.reviewboxsidelineA{
    border-left: 1px solid #fff;
    padding-left: 5px;
}

.reviewcontentA p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    text-align: left;
}

.reviewcontentA h3{
    font-size: 15px;
    color: #282828;
    font-weight: 600;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align: left;
}

.reviewcontentA h4{
    color: #282828;
    font-weight: 300;
    font-size: 13px;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.reviewboxsidelineB{
    border-left: 1px solid #0043e6;
    padding-left: 5px;
}


.reviewcontentA{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    width: 100%;
    padding: 30px 20px;
    background: #fff;
}

.clientlogo img{
    width: 100%;
}
.clientlogo img:hover{
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
  float: left;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}


.clientscontainer h2{
    font-family: "Maitree", serif;
    color: #282828;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.clientscontainer {
    margin: 50px 0 0 0;
  text-align: center; /* centers the text and underline */
}

.clientscontainer h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px; /* space between text and underline */
}

.clientscontainer h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* centers underline under text */
  width: 100%;                /* 👈 fixed underline width (or use % for flexible) */
  height: 2px;                /* 👈 underline height */
  background-color: #282828;     /* underline color */
  border-radius: 2px;         /* optional rounded corners */
}


.clientslogosec{
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    width: 100%;
    padding: 0px 20px;
    margin: 30px 0;
}

.knowledgehubcontainer{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 50px 0;
}

.knowledgehubcontainer h2 {
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.knowledgehubcontainer{
  text-align: center; /* centers the text and underline */
}

.knowledgehubcontainer h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px; /* space between text and underline */
}
.knowledgehubcontainer h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* centers underline under text */
  width: 100%;                /* 👈 fixed underline width (or use % for flexible) */
  height: 2px;                /* 👈 underline height */
  background-color: #fff;     /* underline color */
  border-radius: 2px;         /* optional rounded corners */
}


.knowledgebox{
    background-color: #fff;
    height: 250px;
    margin: 30px 0 0 0;
}

.yellowbrandcontainer{
    background: #ffce00;
    height: 20px;
}

.topcomcontainertext h2{
    font-family: "Maitree", serif;
    color: #ffce00;
    font-size: 40px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.topcomcontainertext h2 span{
    text-transform: uppercase;
}

.topcomcotainer{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 50px 0;
}

.brandscontainer{
    padding: 50px 0 0 0;
}




.brandlogo img:hover{
        transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    
}
.footercontainer{
    background: #ffce00;
    padding: 50px 0 30px 0;
    position: relative;
    z-index: 9;
}

.footerform ul li .contactformsmfield{
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 10px;
    text-transform: uppercase;
    color: #000;
}
.footerform ul li .contactformbgfield{
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    padding: 10px;
    text-transform: uppercase;
    color: #000;
}
.footerform{
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 30px;
    margin: 0 0 50px 0;
}

.formsubmitbtn{
    text-align: center;
}

.submitbutton{
    background: #3569f1;
    color: #fff;
    padding: 5px 30px;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 25px;
    border: none;
}

/*.formsubmitbtn{
        position: relative;
    top: 50%;
    transform: translateY(-50%);
}
*/
.footerformtext h2{
    font-family: "Maitree", serif;
    color: #282828;
    font-size: 70px;
    font-weight: 600;
    line-height:85px;
    text-align: center;
    margin-bottom: 0px;
    text-transform: capitalize;
    padding-bottom: 0px;
}

.footerformtext h3 span{
    font-family: "Maitree", serif;
    color: #282828;
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.footerformtext h3{
    text-align: center;
}

.footerformtext{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 0 50px 0;
}


.footercredentials p a{
    color: #282828;
    text-align: left;
    font-size: 25px;
    font-weight: 400;
}

.footermenu ul li a{
    color: #282828;
    font-size: 25px;
    font-weight: 400;
}
.footermenu ul li{
    text-align: right;
}

.footermenu ul li a:hover{
    color: #3569f1;
    transition: all 0.5s ease-in;
}


.socialmedia ul li{
    display: inline-block;
    padding: 0 5px;
}

.socialmedia ul li a{
    color: #000;
}

.socialmedia{
    text-align: center;
    background: #fff;
    padding: 15px;
    margin: 20px 0 0 0;
}

.bnimember{
    background: #fff;
    padding: 15px;
    text-align: center;
    margin: 20px 0 0 0;
}

.bnimember img{
    width: 50%;
    min-width: 50%;
}

.copyrights{
    background: #fff;
    padding: 10px;
    margin: 20px 0 0 0;
}

.copyrights p{
    font-size: 15px;
    color: #282828;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.serviceboxcontainer h3{
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: left;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.serviceboxcontainer p{
    font-size: 18px;
    color: #fff;
    line-height: 27px;
    text-align: left;
    padding-right: 100px;
}

.serviceboximg{
    padding: 30px;
}

.serviceboximg img{
        width: 100%;
        min-width: 100%;
    border: 1px solid #fff;
    padding: 50px;
}

.serviceboxcontainer{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*.servicebox .owl-nav .owl-prev i {
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}

.servicebox .owl-nav .owl-next i {
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}

.servicebox .owl-nav .owl-prev {
    position: absolute;
    left: 627px;
    top: 50%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
    border: none;
}


.servicebox .owl-nav .owl-next{
    position: absolute;
    right: 14px;
    top: 50%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
    border: none;
}

*/

.servicebox .owl-nav .owl-next i {
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 0px;
    width: 35px;
}
.servicebox .owl-nav .owl-prev i {
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 0px;
    width: 35px;
}

.servicebox .owl-nav .owl-prev {
    position: absolute;
    right: 23%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
}

.servicebox .owl-nav .owl-next {
    position: absolute;
    right:17%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
}
/*---------About Us Page--------------*/

.aboutuscontainer video{
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
/*    position: absolute;*/
    height: auto;
/*    top: 0;*/
    left: 0;
}
.aboutbannerimg img{
    width: 100%;
    min-width: 100%;
    z-index: 9;
    position: relative;
}
/*
.aboutbannerimg{
    position: relative;
    z-index: 99;
}*/
.aboutwelcomecontainer h1{
    font-family: "Maitree", serif;
    color: #3d6afb;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 0px;
    text-transform: capitalize;
    padding-bottom: 0px;
}

.aboutdes p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    text-align: justify;
    padding-bottom: 10px;
}
.aboutdes{
    border: 1px solid #282828;
    padding: 20px;
    margin: 50px 0;
}

#aboutceoimg img{
    width: 100%;
    border: 0px solid #fff;
}

#imgHover{
  display:none;
}

#aboutceoimg:hover #imgRegular{
  display:none;
}

#aboutceoimg:hover #imgHover{
  display:block;
}
.aboutceocontainer{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 50px 0;
}

.aboutceocontainer h2{
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 0px;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.aboutceodetails p{
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    padding-bottom: 10px;
}

.aboutceosign img{
    width: 23%;
    min-width: 23%;
    border-bottom: 2px solid #fff;
}
.aboutceosign {
    text-align: center;
}
.aboutceodetails{
    border: 1px solid #fff;
    padding: 30px;
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 30px;
}
.aboutceosign h3{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.aboutceosign h3 span {
    font-weight: 300;
}


.aboutreviewbox h2{
    font-family: "Maitree", serif;
    color: #3d6afb;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.aboutreviewbox p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    text-align: center;
    padding: 0 250px;
    margin: 50px 0;
}

.reviewdetailks{
    margin: 0 200px;
}

.reviewdetailks ul li img {
    width: 100% !important;
    min-width: 100%;
    border-radius: 50%;
    border: 1px solid #fff;
}



.reviewdetailks ul {
  display: flex;
  /* Optional: Adjust spacing between items */
  gap: 00px; 
  /* Optional: Center items horizontally */
  justify-content: center; 
}

.reviewdetailks ul li {
  /* Optional: Remove default list bullets */
  list-style-type: none; 
}

.reviewdetailks {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 50px 30px 80px 30px;
    margin: 50px 100px;
    z-index: 9;
    position: relative;
    background: #fff;
}

.reviewdetailks ul li p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    text-align: right;
    padding-bottom: 0;
    margin-bottom: 0px;
    padding-left: 50px;
}

.reviewdetailks ul li h3{
    font-size: 20px;
    color: #282828;
    font-weight: 600;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align: right;
}
.reviewdetailks ul li h4 {
    color: #282828;
    font-weight: 300;
    font-size: 15px;
    text-align: right;
}

.clienreviewabout .owl-nav .owl-prev i {
    color: #282828;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}

.clienreviewabout .owl-nav .owl-next i {
    color: #282828;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}
.clienreviewabout  .owl-nav {
    text-align: center;
    /* You might need to adjust other properties like position, top, etc., depending on your layout */
    position: absolute; /* Example: adjust as needed */
    width: 100%; /* Example: adjust as needed */
    bottom: 100px; /* Example: adjust as needed */
}
.clienreviewabout .owl-nav .owl-prev {
    position: absolute;
    top: 78%;
    left: 48%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
    border: none;
}


.clienreviewabout .owl-nav .owl-next{
    position: absolute;
    right: 45%;
    top: 78%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
    border: none;
}

.aboutclientreview .aboutpagereviewbox{
    border: 1px solid #282828;
    padding: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 9;
    margin-right: 10px;
}

/*----Service Page CSS-----*/
.servicebannerheroimg img{
    width: 100%;
}

.serviceherotext{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.experienceuscontainer{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 50px 0;
    z-index: 9;
    position: relative;
}

.experienceuscontainer h2{
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
}

.experiencecontant p{
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    text-align: justify;
    padding-bottom: 10px;
}

.experiencecontant{
    border: 1px solid #fff;
    padding: 20px;
}

.servicepagecontainer h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}
.servicepagecontainer{
    width: 100%;
    padding: 50px 0;
    text-align: center;
}
.servicepagecontainer h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #3d6afb;
    border-radius: 2px;
}

.innerservicecontainer {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.innerservicecontainer h3 {
    font-family: "Maitree", serif;
    color: #282828;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: left;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.innerservicecontainer p {
    font-size: 18px;
    color: #282828;
    line-height: 27px;
    text-align: left;
    padding-right: 100px;
}

.servicepagecontainer h2 {
    font-family: "Maitree", serif;
    color: #3d6afb;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.innerserviceboximg {
    padding: 45px;
    border: 1px solid #282828;
    margin: 50px;
}

.innerserviceboximg img {
    width: 100%;
    min-width: 100%;
    border: 1px solid #282828;
    padding: 50px;
}

.innerservicebox .owl-nav .owl-next i {
    color: #000;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}
.innerservicebox .owl-nav .owl-prev i {
    color: #000;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}

.innerservicebox .owl-nav .owl-prev {
    position: absolute;
    bottom: -5%;
    right: 22%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
}

.innerservicebox .owl-nav .owl-next {
    position: absolute;
    right: 17%;
    bottom: -5%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
}
/*.innerservicebox .owl-nav .owl-prev i {
    color: #000;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}

.innerservicebox .owl-nav .owl-next i {
    color: #000;
    padding: 10px;
    border-radius: 50%;
    margin: 5px;
    width: 35px;
}

.innerservicebox .owl-nav .owl-next {
    position: absolute;
    right:3%;
    top: 50%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #282828;
    transform: translate(-50%, -50%);
    border: none;
}

.innerservicebox .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 58%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #282828;
    transform: translate(-50%, -50%);
    border: none;
}
*/
.ourproductscontainer{
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 50px 0;
}

.productimg img{
    width: 60%;
    min-width: auto;
}

.productcontainerbox h2{
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 0px;
    text-align: right;
}

.productcontainerbox p{
        font-size: 18px;
    color: #fff;
    line-height: 27px;
    text-align: left;
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align: right;
    padding-left: 120px;
}

.ourproductscontainer .container{
    border: 1px solid #fff;
    padding: 30px;
    margin-bottom: 20px;
}
.serviceherotext span.servicetagA{
    text-transform: uppercase;
    color: #3d6afb;
    font-size: 70px;
    line-height: 80px;
    text-align: right;
}

.serviceherotext h1{
    text-transform: uppercase;
    color: #3d6afb;
    font-size: 70px;
    line-height: 35px;
    text-align: right;
}

.serviceherotext span.servicetagB{
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    color: #000;
    font-weight: 200;
}

.servicescontainer{
    padding: 100px 0 0 0;
}
.extraservicereadmore{
    text-align: center;
    width: 60%;
}

.extraservicereadmore span{
    text-transform: uppercase;
    color: #fedf00;
    font-size: 20px;
}
.extraservicereadmore span a{
    text-transform: uppercase;
    color: #fedf00;
    font-size: 20px;
}
.extraservicereadmore  p{
    font-size: 18px;
    color: #fff;
    line-height: 27px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.productimg{
    text-align: left;
}

/*-------Contact Us Page-------*/
.contactuscontainer{
    padding: 150px 0;
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
}

.contactustext h1{
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
}

.contactustext p{
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    padding: 0 150px;
}

.formcontainer ul li .contactformsmfield{
        width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 10px;
    text-transform: uppercase;
    color: #000;
}

.formcontainer ul li .contactformbgfield{
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    padding: 10px;
    text-transform: uppercase;
    color: #000;
}

.formcontainer{
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    padding: 50px;
    margin: -50px 150px 0 150px;
    background: #fff;
}



.contactformmap{
    margin: 50px 0;
    padding: 0 300px;
}

.aboutuscontainer{
    padding: 0px 0 0 0;
    text-align: center;
}

.aboutbannerimg{
    transform: translateY(-50%);
}

.aboutusheaderbg {
    background-image: linear-gradient(to bottom, #0044e6, #174deb, #2556f0, #305ff5, #3a68fa);
    width: 100%;
    padding: 50px 0;
}

.aboutwelcomecontainer{
    padding: 50px 0 0 0;
}

.aboutusheaderbg{
    top: -80px;
    position: relative;
}
#aboutidcontainer {
      position: relative;
      width: 100vw;
      height: 100vh;
      perspective: 800px;
    }

#container {
      position: relative;
      width: 100vw;
      /*height: 100vh;
      perspective: 1000px;*/
    }
    .cube {
      position: absolute;
      transition: left 1s ease, top 1s ease;
      animation: spin 20s linear infinite;
    }
    .cube img {
      width: 100%;
      height: 100%;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .productcontainerbox{
            position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }

    .floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }    
}


.reviewcontentA{
    position: relative;
    overflow: visible; /* allow image to appear outside */ 
    height: 315px;
  }

  .reviewcontentA img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40% !important;
    min-width: 40%;
    transform: translate(-50%, 0) scale(0.9);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: -1;
  }

  .reviewcontentA:hover img {
    top: -95px;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  .reviewcontent{
    position: relative;
    overflow: visible;
    height: 315px;
  }

.reviewcontent img {
    position: absolute;
    top: -95px; /* position above */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 40% !important;
    min-width: 40%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: -1;
  }

  .reviewcontent:hover img {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

.reviewcarousel .owl-stage-outer{
        margin: 0px 0 0 0;
    padding: 100px 0 0 0;
}

/*--------Blog Page CSS-------*/
.blogheroimg img{
    width: 100%;
    padding: 150px 30px 50px 30px;
}

.blogheroimg h1{
    font-family: "Maitree", serif;
    color: #3d6afb;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
}

 .blogheroimg p{
    font-size: 18px;
    color: #1953ef;
    line-height: 25px;
    text-align: center;
    margin: 0 180px;

 }

 .blogpagecontainer{
    margin: 50px 0;
 }

 .blogpagecontainer h2{
    font-family: "Maitree", serif;
    color: #1953ef;
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
    margin-bottom: 15px;
 }

 .blogtitle{
    background: #000;
    padding: 10px 5px;
 }

  .blogtitle h3{
    font-family: "Maitree", serif;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
 }

.blogslider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 0%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
    border: none;
}

.blogslider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -1%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
    border: none;
}

.latesbogblog{
    padding: 0 15px;
}

.serviceherotext img{
    width: 60%;
    min-width: 60%;
}
.serviceherotext{
    text-align: right;
    z-index: 9;
}

.servicebannerheroimg{
    position: relative;
    z-index: 9;
}

.blogFeaturedImage img{
    width: 100%;
}

.postEntry h2{
    color: #1953ef;
    font-size: 33px;
    font-weight: 400;
    margin-bottom: 0px;
    text-align: left;
    line-height: 33px;
}

 .postEntry h2 a{
    color: #1953ef;
 }

 .postEntry{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    padding: 10px;
    margin: 0 0 10px 0;
 }

 .postEntry p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    text-align: left;
 }

 .more a{
        background: #3569f1;
    color: #fff;
    padding: 5px 30px;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 25px;
    border: none;
 }

 .blogSidebar h2{
    color: #1953ef;
    font-size: 33px;
    font-weight: 400;
    margin-bottom: 0px;
    text-align: left;
    line-height: 33px;
    padding-bottom: 0px;
 }

 ul.wp-block-latest-posts__list.wp-block-latest-posts li::before{
    position: relative;
    top: calc(50% - 4px);
    left: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    font-weight: 900;
    padding-right: 10px;
    color: #1953ef;
 }

  ul.wp-block-latest-posts__list.wp-block-latest-posts li a{
    color: #1953ef;
  }

  .blogSidebar .widget.widget_block{
    margin-bottom: 20px;
  }

  ul.wp-block-archives-list.wp-block-archives li::before{
    position: relative;
    top: calc(50% - 4px);
    left: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    font-weight: 900;
    padding-right: 10px;
    color: #1953ef;
  }

  ul.wp-block-archives-list.wp-block-archives li a{
    color: #1953ef;
  }

  ul.wp-block-categories-list.wp-block-categories li::before{
    position: relative;
    top: calc(50% - 4px);
    left: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    font-weight: 900;
    padding-right: 10px;
    color: #1953ef;
  }

  ul.wp-block-categories-list.wp-block-categories li a{
    color: #1953ef;
  }

  .blogsingletitile h1{
    color: #1953ef;
    font-size: 33px;
    font-weight: 400;
    margin-bottom: 0px;
    text-align: left;
    line-height: 33px;
    padding-bottom: 20px;
    margin-top: 20px;
  }

  .blogdetailscontent h3{
    color: #1953ef;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0px;
    text-align: left;
    line-height:25px;
    padding-bottom: 10px;
  }

  .singlepostEntry{
    margin: 80px 0 0 0;
  }

  .blogdetailscontent p{
    font-size: 18px;
    color: #282828;
    line-height: 25px;
    text-align: left;
  }

  .wpcf7-spinner{
    display: none;
  }



/*.backgriundimgA {
    position: absolute;
    right: 0;
    bottom: -400px;
}*/

.backgriundimgA{
    position: absolute;
    top: -30px;
    opacity: 0.5;
}

.backgriundimgA img{
    width: 50%;
    min-width: 50%;
}

.backgriundimgB{
    position: absolute;
    right: 0;
    bottom: 60px;
    text-align: right;
}

.backgriundimgB img{
    width: 50%;
    min-width: 50%;
}




.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
    gap: 12px;
  }

  .item {
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .item:hover {
    transform: scale(1.05);
  }

  /* Specific layout positions (similar to uploaded image) */
  .item1 { grid-column: span 2; grid-row: span 2; }  /* The Times of India */
  .item2 { grid-column: span 1; grid-row: span 1; }  /* India TV */
  .item3 { grid-column: span 1; grid-row: span 1; }  /* Firstpost */
  .item4 { grid-column: span 1; grid-row: span 2; }  /* DNA */
  .item5 { grid-column: span 1; grid-row: span 1; }  /* The Telegraph */
  .item6 { grid-column: span 1; grid-row: span 1; }  /* Republic */
  .item7 { grid-column: span 1; grid-row: span 1; }  /* Fox Story */
  .item8 { grid-column: span 1; grid-row: span 1; }  /* India.com */
  .item9 { grid-column: span 1; grid-row: span 1; }  /* IANS */
  .item10 { grid-column: span 1; grid-row: span 1; } /* ANI */

  /* Responsive layout for smaller screens */
  @media (max-width: 900px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 120px;
    }
  }

  @media (max-width: 600px) {
    .grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 100px;
    }
  }


  .skacontaiuner{
    margin: 50px 0;
  }

  .homemediatxt{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .homemediatxt h2{
    font-family: "Maitree", serif;
    color: #000;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    margin-bottom: 15px;
  }

  .featuredmediaimg img{
    width: 60%;
    min-width: 60%;
  }

  .innerservicecontainer input{
    display: none;
  }

  .serviceboxcontainer input{
    display: none;
  }

 