
/*================ font families =================*/

/*======== Neutronic Font (Headings) ========*/
/*@font-face {
  font-family: 'InterDisplay';
  src: url('../fonts/InterDisplay-Regular.ttf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'InterDisplay';
  src: url('../fonts/InterDisplay-Medium.ttf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'InterDisplay';
  src: url('../fonts/InterDisplay-SemiBold.ttf') format('opentype');
  font-weight: 600;
}*/
/*======== Apply Font Families ========*/
html {
  scroll-behavior: smooth;
}
html, body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
#scroll-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}

#mainHeader.sticky {
  background: #fff; /* optional */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #050505;
  background-image: url('../images/bg-body.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat !important;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center;
  object-fit: cover;
}
h1{
    font-size: 60px;
    font-weight: 500;
    line-height: 60px;
    color: #fff;
}
h2{
    font-size: 36px;
    font-weight: 500;
    line-height: 43px;
    color: #fff;
}
h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 17px;
    color: #fff;
}
h4{
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    color: #fff;
}
h5{
    border: 1px solid rgba(102, 102, 102, 0.3);
    border-radius: 99px;
    background: linear-gradient(rgb(33, 33, 33) 0%, rgb(26, 26, 26) 100%);
    font-size: 12px !important;
    line-height: 1em !important;
    letter-spacing: 1.8px !important;
    color: #ccc;
    padding: 6px 8px 6px 10px;
    width: fit-content;
}
.word-wrapper {
  display: inline-block;
  white-space: nowrap;
}

.letter {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  filter: blur(10px);
}


.hero-section p{
    font-size: 18;
    font-weight: 400;
    line-height: 27px;
    color: #ccc;
}
p{
    font-size: 16;
    font-weight: 400;
    line-height: 22px;
    color: #ccc;
}
h5:hover{
    border: 1px solid #666c;
}
.container{
    max-width: 1120px;
}
.pt-pb-75{
    padding-top: 75px;
    padding-bottom: 75px;
}
/*======================HEADER=======================*/
header{
    position: fixed;
    top: 0;
    width: 100%;
}
header .navbar-brand {
    border: 1px solid #ffffff1a;
    background: linear-gradient(rgba(230, 230, 230, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 42px;
    height: 42px;
    margin: 0;
    transition: background 2s ease-in-out, transform 0.4s ease;
}
header .navbar-brand:hover {
    background: linear-gradient(rgba(230, 230, 230, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
}
header{
    padding-top: 15px;
    padding-bottom: 15px;
}
header nav .navbar-nav a{
    font-family: 'Inter', sans-serif;
    font-weight: 500 !important;
    padding: 7px 16px !important;
    font-size: 14px;
    line-height: 18px;
    gap: 10px;
    color: #ccc !important;
}
header nav .navbar-nav a:hover{
    color: #fff !important;
}
.btn-togle-menu{
    background: transparent;
    padding: 12px !important;
    border: none;
}
.site-header {
  transition: all 0.3s ease;
  z-index: 999;
  background-color: transparent !important;
}
.site-header.sticky {
  /*backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
}
.site-header.sticky .navbar{
  padding: 0px;
}
.site-header {
  transform: translateY(0);
}
.site-header.sticky {
  animation: slideDown 0.3s ease forwards;
}
.site-header.sticky nav{
    background-color: transparent;
    border-bottom: 0px solid #cbcbcb;
}
.site-header nav .container {
  max-width: 1120px;
  transition: max-width 0.5s ease;
  padding: 0px;
}
.site-header.sticky nav .container {
  max-width: 675px;
  backdrop-filter: blur(10px);
  background: linear-gradient(rgba(18, 18, 18, 0.5) 0%, rgba(18, 18, 18, 0.5) 100%) rgba(18, 18, 18, 0.5);
  padding: 8px;
  border-radius: 15px;
}


@keyframes slideDown {
  /*from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }*/
}
/*======================HEADER=======================*/
/*======================OFFCANVAS===========================*/
.offcanvas .logo-text{
    font-family: 'Neutronic', sans-serif;
    font-weight: 700;
    font-size: 25px;
}
.offcanvas{
    background-color: #050505;
    background-image: url('../images/bg-body.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat !important;
    padding: 24px 20px      !important;
}
.offcanvas ul{
    margin-top: 50px;
}
.offcanvas ul li a{
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    color: #fff  !important;
    padding: 15px 0px;
    border-top: 1px dashed #fff ;
}
.offcanvas ul li:last-child a {
  border-bottom: 1px solid #fff;
}
.offcanvas img{
    height: 30px;
}
.offcanvas-title{
    text-transform: uppercase !important;
    font-size: 14px !important;
    line-height: 16px !important;
}
/*======================OFFCANVAS===========================*/
.btn-primary{
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: linear-gradient(rgba(230, 230, 230, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    border-radius: 8px;
    width: 100%;
    padding: 12px 24px;
    overflow: visible;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    width: fit-content;
}
.btn-primary:hover{
    background: linear-gradient(rgba(230, 230, 230, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%) !important;
}
.hero-section{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 0 80px;
}
.main-logo {
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}
.hero-section p{
    max-width: 550px;
}
.p-mw-x-w{
    max-width: 385px;;
}
.service-box p{
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 0px;
    text-align: center;
}
.service-box img{
    height: 110px;
    object-fit: contain;
}
.team-box{
    padding: 12px 24px;
    background-color: #0d0d0d;
    border-radius: 16px;
    border: 1px solid #ffffff0d;
    position: relative;
}
.team-box i{
    font-size: 20px;
    color: #fff;
    margin-left: 5px;
}
.team-box img{
    width: 132px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.team-box .tarun-image {
    width: 200px !important;
}
.testimonial-box{
    padding: 20px;
    background-color: #0d0d0d;
    border-radius: 16px;
    border: 1px solid #ffffff0d;
    position: relative;
}
.testimonial-box img{
    width: 50px;
    margin-right: 10px;
}
.testimonial-box .read-more{
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #666 !important;
}
.testimonial-box h3{
    color: #fff !important;
    font-size: 24px !important;
    line-height: 29px !important;
}
.testimonial-box p{
    color: #fff !important;
    font-size: 16px !important;
    line-height: 21px !important;
}
.testimonial-box i{
    color: #ccc !important;
    font-size: 20px !important;
}
.testimonial-box .content-wrapper {
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.testimonial-box.open .content-wrapper {
  max-height: 500px;
}
.accordion-item{
    margin-bottom: 15px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background-color: #0d0d0d !important;
    border: 1px solid #ffffff0d !important;
}
.accordion-item .accordion-button{
    font-size: 18px !important;
    line-height: 27px !important;
    font-weight: 500 !important;
    padding: 18px 20px !important;
    background-color: transparent !important;
    color: #fff;
    border: 0px !important;
    box-shadow: none !important;
}
.accordion-item .accordion-body{
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 400 !important;
    padding: 18px 20px !important;
    color: #ccc !important;
}
.accordion-button::after {
  display: none !important;
}
.accordion-button .icon {
  display: flex;
  align-items: center;
}
.form-box{
    padding: 20px;
    background-color: #0d0d0d;
    border-radius: 16px;
    border: 1px solid #ffffff0d;
}
.form-box label{
    font-size: 14px !important;
    line-height: 17px !important;
    font-weight: 500 !important;
    color: #fff !important;
}
.form-box input{
    font-size: 14px !important;
    padding: 10px !important;
    line-height: 17px !important;
    font-weight: 500 !important;
    color: #e6e6e6 !important;
    background-color: #1a1a1a !important;
    border: 1px solid #8888881a !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}
.form-box select{
    font-size: 14px !important;
    padding: 10px !important;
    line-height: 17px !important;
    font-weight: 500 !important;
    color: #e6e6e6 !important;
    background-color: #1a1a1a !important;
    border: 1px solid #8888881a !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}
.form-box textarea{
    font-size: 14px !important;
    padding: 10px !important;
    line-height: 17px !important;
    font-weight: 500 !important;
    color: #e6e6e6 !important;
    background-color: #1a1a1a !important;
    border: 1px solid #8888881a !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}
.form-control::placeholder {
  color: #e6e6e6 !important;
  opacity: 0.5 !important;
}
.form-control::placeholder {
  color: #ccc !important;
  opacity: 1 !important;
}
.border-t-2{
    border-top: 1px solid #ffffff66;
}
footer small{
    color: #e6e6e666 !important;
    font-size: 14px !important;
}
footer .links-menu a{
    font-size: 16px;
    line-height: 37px;
    font-weight: 400;
    color: #ccc;
    text-decoration: none;
}
footer .logo-footer img{
    height: 54px;
}
footer .links-menu a:hover{
    color: #fff;
}
footer .social-icons a i{
    color: #ccc;
}
footer .social-icons a i:hover{
    color: #fff;
}
/*=======================responsive-=================*/
/*===============FOR TABLET================*/
@media only screen and (max-width: 1179px) {
  #mainHeader{
    padding-left: 30px; 
    padding-right: 30px;
  }
  .container {
    padding-left: 30px; 
    padding-right: 30px;
  }
  h1 {
    font-size: 45px;
    line-height: 45px;
  }
  h2 {
    font-size: 33px;
    line-height: 39px;
  }
}
/*===============FOR MOBILE================*/
@media only screen and (max-width: 767px) {
  #mainHeader{
    padding-left: 20px; 
    padding-right: 20px;
  }
  .container {
    padding-left: 20px; 
    padding-right: 20px;
  }
  .mob-wrap{
    flex-wrap: wrap !important;
  }
  .main-logo {
    max-width: 320px;
  }
}