body{
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(to right, #e6d6f2, #d8e4ed, #f2d6e6  ,#d8e4ed);
}
html {
  scroll-behavior: smooth;
}
p , ul ,em{
    font-family: "Roboto", sans-serif !important;
    color: #3E3E3E;
}
.m-form .g-recaptcha div {
    margin: inherit !important;
    margin-top: inherit !important;
}
.g-recaptcha div {
    margin: auto;
    margin-top: 16px;
}
.main-menu .nav-item .nav-link{
    color: #000;
}
.main-menu .nav-item .nav-link:hover{
    color: #343dc7;
}
.padding{
    padding-top: 60px;
    padding-bottom: 60px;
}
.home-padding{
    padding-top: 120px;
    padding-bottom: 120px;
}
:root {
  --theme-color: #7B83EB;
  --theme-shadow: #343dc7;
}
::-webkit-scrollbar {
    width: 3px;
}
::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 3px;
}
::-webkit-scrollbar-track {
    border-radius: 3px;
}
header{
    background-color: #f5f5f5;
    box-shadow: 0px 4px 4px 0px #00000017;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.main-menu{
    font-family: "Roboto", sans-serif !important;
}
.main-menu li{
    margin: 0px 5px;
 }
.search-icon{
    font-size: 18px;
    margin-right: 35px;
}
/* Overlay container - hidden by default (off screen at top) */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 45%;
  background: linear-gradient(to right, #e6d6f2, #d8e4ed, #f2d6e6, #d8e4ed);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide in overlay when shown */
.overlay.show {
  transform: translateY(0);
}

/* Close button */
.overlay .closebtn {
  position: absolute;
  top: 20px; right: 40px;
  font-size: 50px;
  color: var(--theme-color);
  cursor: pointer;
  transition: color 0.3s;
}

/* Overlay content container */
.overlay-content {
  text-align: center;
  width: 100%;
  max-width: 600px;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}
.overlay-content h4{
    color: var(--theme-color);
    font-size: 33px;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 600;
}

.overlay.show .overlay-content {
  transform: translateY(0);
}

/* Input field */
.overlay input[type="text"] {
  padding: 15px;
  font-size: 18px;
  border: none;
  width: 79%;
  background: #fff;
  border-radius: 5px 0 0 5px;
  outline: none;
}

/* Submit button */
.overlay button {
  width: 20%;
  padding: 15px;
  font-size: 18px;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.overlay button:hover {
  background-color: #343dc7;
}

/* (Unused) Slide-down animation keyframes */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

@media only screen and (min-width: 999px) {
    .container{
        max-width: 1170px !important;
    }
    .lap-none{
        display: none;
    }
}
.main-heading h1{
    font-size: 46px;
    font-weight: 600;
    color: #000;
}

.main-btn {
  position: relative;
  display: inline-block;
  padding: 10px 26px;
  background-color: var(--theme-color);
  color: #F5F5F5 !important;
  font-weight: 400;
  font-size: 15px;
  border: none;
  border-radius: 0px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--theme-shadow);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Unique Hover Effect */
.main-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--theme-shadow);
  background-color: #6b74e0;
}

/* Optional: Active Press Effect */
.main-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 var(--theme-shadow);
}
.main-img {
    position: absolute;
    right: 65px;
    width: 750px;
    top: 22px;
}
.process-btn {
  display: inline-block;
  padding: 3px 16px;
  background-color: var(--theme-color);
  color: white;
  font-weight: 500;
  font-size: 14px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 20px;
  margin-bottom: 10px;
}
.long-content ul{
    position: relative;
    left: -14px;
}
.bg-color{
    background-color: #ffffff61;
}
.sub-heading h2{
    font-weight: 600;
}
 .grid-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
.box {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.box h5 {
    color: #000000;
    font-weight: 600;
    text-align: center;
    line-height: 26px;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    font-size: 18px;
}
.box-wrap:hover .box {
  filter: blur(3px);
  opacity: 0.5;
  transform: scale(0.98);
  box-shadow: none;
}

.box-wrap:hover .box:hover {
  transform: scale(1);
  filter: blur(0px);
  opacity: 1;
}
.bg-1{
    background-color: var(--theme-color);
    padding:17px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 0 10px 2px #00000024;
}
.bg-1 img{
    background-color: #003043;
    padding:10px;
    border-radius: 50%;
}
.bg-1 h5, .bg-2 h5, .bg-3 h5 {
  color: #fff;
  font-weight: 600;
  margin-left: 15px;
  font-size: 18px;
}
.sec-fluid{
    padding-left: 100px;
    padding-right: 100px;
}
.bg-2{
    background-color: #003043;
    padding:17px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 10px 2px #00000024;
    margin: 25px 0px;
}
.bg-2 img{
    background-color:var(--theme-color);
    padding:10px;
    border-radius: 50%;
}
.bg-3{
    background-color: #fff;
    padding:17px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 10px 2px #00000024;
}
.bg-3 img{
    background-color: #003043;
    padding:10px;
    border-radius: 50%;
}
form{
    font-family: "Roboto", sans-serif !important;
}
.ht {
    line-height: 1.9;
}

.ht, .htt {
    border: 1px solid #6666;
    border-radius: 4px;
}
.form-img{
    position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}
.form-btn {
    margin: auto;
    display: block;
    width: 80%;
    margin-top: 15px;
    font-family: "Roboto", sans-serif !important;
}

.style-box {
  background-color: #fff !important;
  padding: 13px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.style-box:hover {
    box-shadow: 0 0 5px 2px #7b83eb75;
}
.style-box h3{
    font-size: 19px;
    font-weight: 600;
    margin-top: 15px;
}


.slick-slide{
    margin:10px;
}
.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: var(--theme-color) !important;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 13px !important;
}
.slick-dots {
    bottom: -65px !important;
}
.slick-dots li button:before {
    color: var(--theme-color) !important;
}
.section-pad{
    padding-left: 60px;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bg2 {
  width: 305px;
  padding: 12px 17px !important;
  position: absolute;
  left: -130px;
  top: 230px;
  animation: bounce 3s infinite;
}

.bg1 {
  width: 312px;
  padding: 12px 17px !important;
  position: absolute;
  right: -14px;
  bottom: 80px;
  animation: bounce 3s infinite;
}
.customer-box{
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 5px 2px #0000001c;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.customer-box:hover {
    box-shadow: 0 0 5px 2px #7b83eb75;
}
.customer-box i{
    color: var(--theme-color);
}
.slick-prev:before,
.slick-next:before {
  content: none !important;
}
.slick-prev, .slick-next {
    font-size: 22px;
    color: var(--theme-color) !important;
}
.accordion-item {
    background-color: transparent !important;
    border: none !important;
}
.accordion-button{
    background-color: transparent !important;
}
.accordion-button {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}
.accordion-button:not(.collapsed) {
    color: #000 !important;
    background-color: none !important;
    box-shadow: none !important;
    padding-bottom: 0px;
    font-weight: 600;
}
.accordion-button:focus {
     box-shadow: none !important;
}
div#accordionExample{
    margin-top: 30px;
}
.f-list{
    list-style: none;
    padding-left: 0px;
    margin-top: 26px;
    margin-bottom:0px;
}
.f-list li{
    margin:10px 0px;
    font-family: "Roboto", sans-serif !important;
}
.f-list li a {
  color: #3E3E3E;
  display: inline-block;
  padding-left: 0;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.f-list li a:hover {
  padding-left: 7px; 
  color: var(--theme-color); 
}
.bord-top{
    border-top: 2px dashed var(--theme-color);
    border-spacing: 10px;
    margin-top: 30px;
    padding-top: 15px;
}
.footer-pad{
    padding-top: 60px;
    padding-bottom: 20px;
}
.bord-top p{
    font-size: 15px;
}
h4.fw-semibold {
    font-size:22px;
}
a{
    text-decoration: none;
    color: inherit;
}

.category-banner {
  background-image: url('../category-images/industry-banner.png');
  background-size: cover;
  background-position: center;
  height: 450px;
  border-top-right-radius: 200px;
  border-bottom-left-radius: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Dark semi-transparent overlay */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 45%);
}

/* Ensures text is above overlay */
.banner-content {
  text-align: center;
  max-width: 800px;
  position: relative;
}
.banner-content h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 12px;
}
.breadcrumb-item{
    font-family: "Roboto", sans-serif !important;
}
.breadcrumb-item a{
    color: #3e3e3e;
}
.long-content {
    padding-right:20px;
    max-height: 450px;
    overflow-x: hidden;
    overflow-y: scroll;
}
.long-content h1,.long-content h2,.long-content h3,.long-content h4,.long-content h5,.long-content h6{
    font-weight: 600;
}
.long-content a{
    color: #0d6efd;
}
.main-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.main-image-wrapper {
  max-height: 450px;
  text-align: center;
}

.main-image {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.thumb-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}

.thumb-img {
  width: 23%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumb-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-section{
    background-color: #FFFFFF;
    border: 1px solid #6666;
    box-shadow: 0px 0 7px 0px #00000026;
    padding: 25px;
}
.form-section h1{ 
    font-size: 28px;
    font-weight: 600;
}
.form-section p{ 
   margin-bottom: 0px;
}
.div1{
    background-color: var(--theme-color);
    padding: 40px;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.div1 img{
    padding: 12px;
    background-color: #003043;
    border-radius: 50%;
    margin-bottom: 13px;
}
.blog-detail{
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0 7px 0px #00000026;
}
.blog-detail h1{
    font-size: 34px;
    margin:0px;
}
.blog-detail h2{
    font-size: 32px;
}
.blog-detail img{
    width: 100%;
    margin:15px 0px;
}
.blog-detail h1,.blog-detail h2,.blog-detail h3,.blog-detail h4,.blog-detail h5,.blog-detail h6{
    font-weight: 600;
}
.blog-list .style-box{
    margin: 20px 0px;
}
.con i {
    background: var(--theme-color);
    padding: 8px 12px;
    margin-right: 12px;
    color: #fff;
}
.con{
    text-align: left !important;
    color: #fff !important;
}
.con p{
    color: #fff !important;
}

@media only screen and (max-width: 1380px) and (min-width: 1201px)  {

        .main-img {
        width: 635px;
         top: 60px;
    }
    .sec-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    .bg2 {
        left: -30px;
    }
    .m-img {
        max-width: 90%;
    }
}


@media only screen and (max-width: 1224px) and (min-width: 992px)  {
    .lap-none{
        display: none;
    }
    .main-menu li {
        margin: 0px 3px;
    }
    .main-img {
        position: absolute;
        right: 15px;
        width: 570px;
        top: 30px;
    }
    .home-padding{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .sec-fluid {
        padding-left: 0px;
        padding-right: 0px;
    }
    .slick-prev, .slick-next {
        display: none !important;
    }
}

/*====================[ Tablet - Min 601px to Max 991px ]====================*/
@media only screen and (min-width: 601px) and (max-width: 991px) {

    
    .home-padding{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .main-img {
        position: relative;
        right: 0;
        width: auto;
        top: 0;
        margin-top: 40px;
    }
    .grid-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .sec-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
    .tab-none{
        display: none;
    }
    .bg2 {
        width: 250px;
        padding: 8px 17px !important;
        position: absolute;
        left: 0;
        top: 0;
    }
    .bg2 h5{
        font-size: 14px !important;
    }
    .bg2 img {
        padding: 6px;
        width: 48px;
    }
    .bg1 {
        width: 255px;
        padding: 8px 17px !important;
        right: 0px;
        bottom: 0px;
    }
    .bg1 h5{
        font-size: 14px !important;
    }
    .bg1 img {
        padding: 6px;
        width: 48px;
    }
    .section-pad {
        padding-left: 20px;
    }
    .slick-prev, .slick-next {
        display: none !important;
    }
    .tab-mar{
        margin-top: 30px;
    }
    .mob-pad{
        padding: 0px ;
    }
    .mob-pad2{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .mob-none{
        display: none;
    }
    div#navbarSupportedContent {
        padding: 20px 0px;
    }
    .banner-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .category-banner {
        border-top-right-radius: 120px;
        border-bottom-left-radius: 120px;
       
    }
    .form-section {
        padding: 20px;
    }
    .form-section h1 {
        font-size: 22px;
    }
    .thumb-img {
        width: 48%;
        margin-bottom: 15px;
    }
    .blog-detail h1 {
        font-size: 28px;
    }
    .blog-detail h2{
        font-size: 26px;
    }

}


/*====================[ Mobile - Max Width 600px ]====================*/
@media only screen and (max-width: 767px) {

    .m-form {
        --bs-gutter-y: 0.7rem !important;
        --bs-gutter-x: 0.6rem !important;
    }
    .mob-n{
        display: none;
    }
    form select {
    font-size: 14px !important;
}
    form input::placeholder,
    form textarea::placeholder {
        font-size: 14px !important;
    }
    .padding{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .home-padding{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .main-heading h1 {
        font-size: 34px;
    }
    .main-img {
        position: relative;
        right: 0;
        width: auto;
        top: 0;
        margin-top: 40px;
    }
    .main-btn {
      padding: 8px 22px;
      font-size: 14px;
    }
    .grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .box h5 {
        font-size: 16px;
        line-height: 23px;
    }
    .sec-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
    .mar-tb{
        margin: 50px 0px;
    }
    .bg-1 h5, .bg-2 h5, .bg-3 h5 {
        font-size: 17px;
    }
    .bg2 {
        width: 250px;
        padding: 8px 17px !important;
        position: absolute;
        left: 0;
        top: 0;
    }
    .bg2 h5{
        font-size: 14px !important;
    }
    .bg2 img {
        padding: 6px;
        width: 48px;
    }
    .bg1 {
        width: 255px;
        padding: 8px 17px !important;
        right: 0px;
        bottom: 0px;
    }
    .bg1 h5{
        font-size: 14px !important;
    }
    .bg1 img {
        padding: 6px;
        width: 48px;
    }
    .section-pad {
        padding-left: 10px;
        padding-top: 50px;
    }
    .slick-prev, .slick-next {
        display: none !important;
    }
    .accordion-button {
        padding-left: 10px;
        padding-right: 10px; 
    }
    .accordion-body{
        padding-left: 10px;
        padding-right: 10px; 
    }
    .accordion-button {
        font-size: 17px;
    }
    .process-btn {
        font-size: 14px;
    }
    h4.fw-semibold {
        font-size: 20px;
        /*margin-top: 15px;*/
    }
    .bord-top{
        display: block !important;
        text-align: center;
    }
    .bord-top p{
        font-size: 14px !important;
        margin: 5px 0px !important;
    }
    .mob-d {
        justify-content: space-between !important;
    }
    .mob-d img{
        width: 40%;
    }
    
    .footer-logo{
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .mob-pad{
        padding: 0px ;
    }
    .mob-pad2{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .mob-none{
        display: none;
    }
    div#navbarSupportedContent {
        padding: 20px 0px;
    }
    .overlay-content h4 {
        font-size: 26px;
    }
    .overlay input[type="text"] {
        width: 63%;
    }
    .banner-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .category-banner {
        border-top-right-radius: 100px;
        border-bottom-left-radius: 100px;
       
    }
    .thumb-img {
        width: 23%;
    }
    .form-section {
        margin-top: 40px;
        padding: 18px;
    }
    .form-section h1 {
        font-size: 22px;
    }
    .mob-r{
        flex-direction: column-reverse; 
    }
    .mar-b{
        margin-bottom: 30px;
    }
    .mob-dis{
        display: block !important;
    }
    .div1{
        margin:30px 0px;
    }
    .blog-detail h1 {
        font-size: 26px;
    }
    .blog-detail h2 {
        font-size: 24px;
    }
    .con {
        margin: 20px 0px;
    }


}

@media only screen and (max-width: 351px) {

    .header-logo{
        width: 90%;
    }
    .search-icon{
        margin:0px !important;
        position: relative;
        left: -15px;
    }
}

/* Curtain Reveal Mega Menu Animation */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        clip-path: inset(0 0 100% 0);
        transition:
            max-height 0.55s ease,
            opacity 0.45s ease,
            clip-path 0.55s ease,
            visibility 0s linear 0.55s;
        pointer-events: none;
    }

    /* Hover applies to the whole <li>, not just <a> */
    .navbar .dropdown:hover,
    .navbar .dropdown:focus-within {
        /* keep menu visible while hovering anywhere in the <li> */
    }

    .navbar .dropdown:hover .dropdown-menu,
    .navbar .dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1200px;
        clip-path: inset(0 0 0 0);
        transition-delay: 0s;
        pointer-events: auto;
    }

    .main-menu li .nav-link:hover {
        color: var(--white);
        background: var(--main-color);
    }
    .main-menu {
        margin-left: 30px;
    }
    .navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    max-height: 1200px;
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
}

}


