@charset "UTF-8"; 



@font-face {
    font-family: 'interregular';
    src: url('../fonts/inter-regular-webfont.woff2') format('woff2'),
         url('../fonts/inter-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'intersemi_bold';
    src: url('../fonts/inter-semibold-webfont.woff2') format('woff2'),
         url('../fonts/inter-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'intermedium';
    src: url('../fonts/inter-medium-webfont.woff2') format('woff2'),
         url('../fonts/inter-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'intermedium_italic';
    src: url('../fonts/inter-mediumitalic-webfont.woff2') format('woff2'),
         url('../fonts/inter-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'interextra_bold';
    src: url('../fonts/inter-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/inter-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'interextra_bold_italic';
    src: url('../fonts/inter-extrabolditalic-webfont.woff2') format('woff2'),
         url('../fonts/inter-extrabolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'interblack';
    src: url('../fonts/inter-black-webfont.woff2') format('woff2'),
         url('../fonts/inter-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'interbold_italic';
    src: url('../fonts/inter-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/inter-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'interlight';
    src: url('../fonts/inter-light-webfont.woff2') format('woff2'),
         url('../fonts/inter-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*        common css           */
.custom-container {padding: 0 10%;}

html {scroll-behavior: smooth;}
html::-webkit-scrollbar-track{-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);background-color: #F5F5F5;background: #f9f9f9;}
html::-webkit-scrollbar{width: 10px;background-color: #F5F5F5;}
html::-webkit-scrollbar-thumb{background-color: #3475F7;background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%,transparent 25%,transparent 50%,rgba(255, 255, 255, .2) 50%,rgba(255, 255, 255, .2) 75%,transparent 75%,transparent)}

:root {
    --border: #eeeff4;
    --border-white: #ffffff;
     --color-white-100: #fff;
     --color-white-200: #e6e6e6;
     --color-white-300: #ccc;
     --color-white-400: #a6a6a6;
     --color-white-500: #808080;
     --color-black-100: #202b3c;
     --color-black-200: #1c2431;
     --color-black-300: #161d27;
     --color-black-400: #0b1423;
     --color-blue-100: #bed8fe;
     --color-blue-200: #91befd;
     --color-blue-300: #61a1fa;
     --color-blue-400: #3c8af6;
     --color-blue-500: #2477eb;
     --color-blue-600: #1d6bd7;
     --color-graybg-700: #F2F3F8;
     --color-pgray-700: #5E5F63;
     --color-footergray-700: #cccccc;
     --color-darkheading-700: #343C55;
     --color-purpple-800: #3475F7;
     --color-iconbg-900: #f6f6f6;
     --color-orangebg-900: #9e3ffb;
     --color-babypink-900: #F4675D;
     --color-lightorange-900: #FCEDE6;
     --color-acordioncolor-900: #ffdbcb;
     --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
     --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
     --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
 *, *::before, *::after {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
     list-style: none;
     list-style-type: none;
     text-decoration: none;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     text-rendering: optimizeLegibility;
}
 html {
     font-size: 100%;
     box-sizing: inherit;
     scroll-behavior: smooth;
     height: -webkit-fill-available;
}
 body {
     font-family: 'interregular';
     font-size: clamp(1rem, 2vw, 1.125rem);
     font-weight: 400;
     line-height: 1.5;
     color: var(--color-black-400);
     background-color: var(--color-white-100);
}
 body.darkmode {
     color: var(--color-white-100);
     background-color: var(--color-black-400);
}
.main{
     background-color: var(--color-graybg-700);
}
 .darkmode .main {
     background-color: var(--color-black-400);
}
 .main {
     overflow: hidden;
}
 p {
     text-wrap: balance;
}
 .section {
     margin: 0 auto;
     padding: 10rem 2rem;
}
 .paragraph {
     font-family: inherit;
     text-wrap: balance;
     color: inherit;
     text-align: left;
}
.paragraph2{
    font-size: 16px;
}
 .paragraph3 {
     font-family: inherit;
     color: inherit;
     text-align: center;
}
 .heading-xl {
     font-family: 'interextra_bold';
     font-size: 48px;
     font-weight: 700;
     line-height: 1.15;
     letter-spacing: -1px;
     text-align: left;
     color: #00061B;
}
 .heading-lg {
      font-size: 38px;
     line-height: 1.15;
     font-weight: 700;
     letter-spacing: -1px;
     text-align: left;
     font-family: 'interblack';
}
 .heading-md {
     font-family: inherit;
     font-size: 38px;
     font-weight: 700;
     line-height: 1.25;
     letter-spacing: -1px;
}
.bluecolor {
    color: #0d49c5;
}
.sub-heading {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 0.11em;
    font-family: 'intersemi_bold';
    color: var(--color-orangebg-900);
}
 .btn {
     display: inline-block;
     font-family: inherit;
     font-size: 1rem;
     font-weight: 500;
     line-height: 1.5;
     text-align: center;
     vertical-align: middle;
     white-space: nowrap;
     user-select: none;
     outline: none;
     border: none;
     border-radius: 0.25rem;
     text-transform: unset;
     transition: all 0.3s ease-in-out;
      transition: .4s;
}
 .btn-inline {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     column-gap: 0.5rem;
     border-radius: 8px;
}
.dark2 {
    background: #fff !important;
    border: 1px solid #dbdbdb;
    box-shadow: none !important;
    color: #000 !important;
    margin-left: 12px;
    font-family: 'intermedium';
}
 .btn-darken {
         padding: .8em 3em;
     color: var(--color-white-100);
     background-color: var(--color-purpple-800);
     box-shadow: var(--shadow-medium);
}
 .btn-darken:hover{
    background: #606bf1;
    color: var(--color-white-100);
    box-shadow: 0px 0px 14px 1px rgb(96 107 241);
    transition: .4s;
 }
 .darkmode .btn-darken {
     background-color: var(--color-purpple-800);
}
 .header {
     position: fixed;
     top: 0;
     left: 0;
     z-index: 100;
     width: 100%;
     height: auto;
     margin: 0 auto;
     background-color: #e6f0ff;
}
 .darkmode .header {
     background-color: var(--color-black-400);
}
 .navbar {
     display: flex;
     flex-direction: row;
     align-items: center;
     align-content: center;
     justify-content: space-between;
     width: 100%;
     height: auto;
     margin: 0 auto;
}
 .brand {
     font-family: inherit;
     font-size: 1.6rem;
     font-weight: 600;
     line-height: 1.25;
     margin-right: auto;
     letter-spacing: -1px;
     text-transform: uppercase;
     color: var(--color-blue-500);
}
 .darkmode .brand {
     color: var(--color-white-100);
} 
a.btn.outline-usbtn:hover {
    background: #3475f7;
    color: #fff;
}

a.btn.outline-usbtn {
    border: 1px solid #3475f7;
}

 .menu {
     position: fixed;
     top: 0;
     left: -280px;
     z-index: 1001;
     width: 280px;
     height: 100vh;
     overflow-y: auto;
     color: var(--color-black-400);
     background-color: var(--color-white-100);
     box-shadow: 2px 0 8px rgba(0,0,0,0.15);
     transition: left 0.3s ease-in-out;
     padding: 20px;
}
 .darkmode .menu {
     color: var(--color-white-100);
     background-color: var(--color-black-400);
}
 .menu.is-active {
     left: 0;
}
 .menu-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
}
 .menu-overlay.is-active {
     opacity: 1;
     visibility: visible;
}
 .menu-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
     padding-bottom: 15px;
     border-bottom: 1px solid #e0e0e0;
}
 .menu-close {
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
     color: inherit;
     padding: 5px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .menu-close:hover {
     opacity: 0.7;
}
 .menu-inner {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     row-gap: 0;
     margin-top: 0;
     margin-bottom: 30px;
}
 .menu-item {
     width: 100%;
     padding: 12px 0;
     border-bottom: 1px solid #f0f0f0;
}
 .menu-link {
     font-family: inherit;
     font-size: 16px;
     font-weight: 500;
     line-height: 1.5;
     color: inherit;
     text-transform: capitalize;
     transition: all 0.3s ease;
     display: block;
}
 .menu-link:hover {
     color: #3475f7;
     padding-left: 5px;
}
 .menu-buttons {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;
     margin-top: 20px;
}
 .menu-buttons .mobile-btn {
     width: 100%;
     text-align: center;
     padding: 12px 20px;
     font-size: 14px;
}
 .burger {
     position: relative;
     display: block;
     cursor: pointer;
     user-select: none;
     order: -1;
     z-index: 12;
     width: 1.6rem;
     height: 1.15rem;
     margin-right: 1.25rem;
     border: none;
     outline: none;
     background: none;
     visibility: visible;
     transform: rotate(0deg);
     transition: 0.35s ease;
}
 .burger-line {
     position: absolute;
     display: block;
     left: 0;
     width: 100%;
     height: 2px;
     border: none;
     outline: none;
     opacity: 1;
     border-radius: 1rem;
     transform: rotate(0deg);
     background-color: var(--color-black-300);
     transition: 0.25s ease-in-out;
}
 .darkmode .burger-line {
     background-color: var(--color-white-100);
}
 .burger-line:nth-child(1) {
     top: 0px;
}
 .burger-line:nth-child(2) {
     top: 0.5rem;
     width: 70%;
}
 .burger-line:nth-child(3) {
     top: 1rem;
}
 .burger.is-active .burger-line:nth-child(1) {
     top: 0.5rem;
     transform: rotate(135deg);
}
 .burger.is-active .burger-line:nth-child(2) {
     opacity: 0;
     visibility: hidden;
}
 .burger.is-active .burger-line:nth-child(3) {
     top: 0.5rem;
     transform: rotate(-135deg);
}
/* Hide buttons in mobile view - they're in the drawer */
@media (max-width: 991px) {
    .right-top-btn {
        display: none !important;
    }
    .brand {
        order: 2;
        margin-right: 0;
        margin-left: auto;
    }
}
 .switch {
     position: relative;
     display: block;
     cursor: pointer;
     user-select: none;
     z-index: 9;
     margin-left: 5rem;
     margin-right: 0.5rem;
}
 .switch-light, .switch-dark {
     position: absolute;
     top: 50%;
     left: 50%;
     transform-origin: center;
     transform: translate(-50%, -50%);
     transition: all 0.3s ease-in;
}
 .switch-light {
     font-size: 1.45rem;
     visibility: visible;
     color: var(--color-black-300);
}
 .darkmode .switch-light {
     font-size: 0rem;
     visibility: hidden;
}
 .switch-dark {
     font-size: 0rem;
     visibility: hidden;
     color: var(--color-white-100);
}
 .darkmode .switch-dark {
     font-size: 1.45rem;
     visibility: visible;
}
 .banner-column {
     position: relative;
     display: grid;
     align-items: center;
     row-gap: 2rem;
}
 .banner-inner {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     row-gap: 1.5rem;
     z-index: 1;        
}
.zoom-in-out-box {
   -webkit-animation: moveupdown1 4s infinite linear;
    animation: moveupdown1 4s infinite linear;
}

.chat-usbtn {
    background: var(--color-purpple-800);
    color: var(--color-white-100);
    font-size: 16px;
    padding: 8px 12px; 
    transition: .4s;
    font-family: 'intermedium';
}
.chat-usbtn:hover{background: var(--color-orangebg-900);transition: .4s;color: var(--color-white-100);}


/*            Banner Main             */
.main{
    background: #E6F0FF;
    width: 100%;
    position: relative;
}


.header .navbar {
    padding: 0.9rem 0 !important;
}
 
 .shape {
    position: absolute;
    top: 0;
    right: 0;
    animation: bg-zoom 15s ease-in-out infinite;
}

.video-card {
    z-index: 1;
} 

.main-vidframe {
    background: #4d94fc;
    padding: 6px 11px 0 11px;
    border-radius: 12px;
    box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 13%);
}

/*            All-vidz Second Row               */

.all-vidz {
   padding: 65px 0;
}
.vid-row {
    margin-top: 30px;
}
.vid-row h4{
   font-family: 'interblack';
   font-size: 21px; 
   padding-top: 20px;
}
.vid-row p{
    font-size: 16px;
    color: #454545;
}
.vid-frame {
    background: #f7f7f7;
    overflow: hidden;
    border-radius: 12px;
    height: 298px;
}
.vid-row h6 {
    font-family: 'intersemi_bold';
}

/*            Fearures Third Row               */

.features-bg{
   padding-top: 25px;
    padding-bottom: 65px;
} 
.features-bx {
    padding: 35px 16px;
    box-shadow: 0 0 7px rgb(0 0 0 / 31%);
    border-radius: 6px;
    margin-top:30px;
    min-height: 287px;
    transition: all .5s;

}
.features-bx:hover {
    transition: all .5s;
    transform: translateY(-15px);
}
.features-icon {
    background: linear-gradient(90deg,rgba(52, 117, 247, 1) 0%, rgba(158, 63, 251, 1) 50%);
    display: inline-block;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
}

.features-bx h4 {
    font-family: 'interblack';
    font-size: 21px;
    margin-top: 24px;
}
.features-bx p{
    font-size: 16px;
    color: #454545;
}


/*  Report Bg   */
.report-bg {
    padding: 65px 0;
}
.row.rcenter-bg {
    background: #F7F8FA;
    margin: 0;
    border-radius:22px;
    align-items: center;
    padding: 50px 0;
}
.blue{color: #0d49c5;}
.report-heading h4{font-size: 34px;color: #000; font-family: 'interextra_bold';padding-bottom: 30px;}
.report-heading {
    padding: 25px;
}
.report-heading p {
    font-size: 16px;
    color: #454545;
    line-height: 30px;
}
.zoom-in-out-box {
   -webkit-animation: moveupdown1 4s infinite linear;
    animation: moveupdown1 4s infinite linear;
}
@keyframes moveupdown1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes moveupdown1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Testi Bg   */

/*          Testimonial Section Start Here         */
.testimonial-bg{padding: 65px 0;}
.testimonial-bx-main {
    margin-bottom: 30px;
    margin-top: 15px;
    text-align: left;
    padding-top: 45px;
    padding-right: 35px;
    padding-bottom: 0px;
    padding-left: 35px;
    position: relative;
    border-radius: 12px;
    background: #F7F8FA;
    box-shadow: 0px 0 4px rgb(0 0 0 / 13%);
    display: flex;
}
.user-profile img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}
/* Ensure avatar wrapper is circular and clips overflow */
.user-profile {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}
.testiicon {
    font-size: 32px;
    color: #9e3ffb;
}
.clients-comment h6 {
    font-size: 20px;
    font-weight: 600;
}
.clients-comment h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-family: 'interblack';
}

.clients-comment p{
    color: #454545;
    font-size: 16px;
    text-wrap: auto;
}

/* Testi 2 Bg   */
.students-testimonial{padding-bottom: 65px;}
.card-main{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.card-img {
    width: 75px;
    height: 75px;
    margin-right: 10px;
}
.card-info h3, .cardwide h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: .50em;
    color: #000;
    font-family: 'intersemi_bold';
}
.card-info h5{
    font-size: 14px;
    color: #5E5F63;
    margin-bottom: 2px;
}

.card-info > .rating {
    margin: 0;
    padding: 0;
    display: flex;
}
.rating > li {
    padding-right: 4px;
    font-size: 15px;
    color: #FFA033;
}
.testicard p {
    font-size: 14px;
    margin-top: 15px;
}
.testicard {
    box-shadow: 0px 0px 6px 1px rgb(0 0 0 / 36%);
    border-radius: 6px;
    padding: 15px;
}
.squote {
    text-align: center;
    font-size: 28px;
    color: #b0b0b0;
}
.heart {
    text-align: center;
    font-size: 28px;
    color: red;
}
.like {
    text-align: center;
    font-size: 28px;
    color: #3475f7;
}
.cardwide p{text-align: center;}

.cardhalf .card-img {
    width: 100%;
    height: 100%;
    margin: 0;
}
.testicard.cardhalf img{width: 100% !important}
.testicard.cardhalf .card-info {
    padding: 15px;
}
.testicard.cardhalf {
    padding: 0;
    overflow: hidden;
}
.testicard.cardhalf .card-main{
    flex-direction: column;
}
.testicard.cardcenter .card-main {
    flex-direction: column;
}
.testicard.cardcenter .card-main .card-info {
    margin-top: 12px;
}
.cone, .ctwo, .cthree{
    padding-top: 30px;
}

 /*                Request Demo               */

 .demo-bg {
    background: url('../assets/net-bg.svg')no-repeat;
 }
@keyframes bg-zoom {
  0%, 100% {
    background-size: 100%;
  }
  50% {
    background-size: 110%;
  }
}

.demo-bg {
    background: url(../images/net-bg.svg) no-repeat;
    background-size: 100%;
    width: 100%;
    padding: 5em;
    border: 2px solid #f7f7f7;
    border-radius: 30px;
    background-color: #eef4fd;
    text-align: center;
}
.demo-bg h3{
    font-size: 40px;
    font-family: 'interblack';
    background: #6770FF;
    background: linear-gradient(to right, #343ee5 0%, #673AB7 50%, #4c22d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.demo-bg P{
    color: #000;
    font-family: 'intermedium';
    font-size: 17px;
}
button.btn.blue-btn {
    background: #3475f7;
    color: #fff;
    font-size: 16px;
    padding: 12px 34px;
}
.request-demo {
    padding: 15px 0;
}



.footer-bg-main {
    background-size: 100% 100%;
    width: 100%;
    background-color: #fff;
    margin-top: 65px;
    border-top: 1px solid #ebebeb;
}

.footer-logo-sec ul{padding: 0;margin-top: 10px;}
.footer-logo-sec ul li{
    display: inline-block;
    font-size: 20px;
}
a.email{color: var(--color-purpple-800);}
.footer-logo-sec ul li a {
    height: 40px;
    width: 40px;
    color: var(--color-white-300);
    background-color: rgba(92, 92, 91, 0.1);
    display: block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: .4s;
}
.footer-logo-sec ul li a:hover{
    background: var(--color-purpple-800);
    transition: .4s;
}
.footer-logo-sec ul li a:hover {
    background: var(--color-purpple-800);
    transition: .4s;
    box-shadow: 0px 0px 10px 1px rgb(96 107 241 / 65%);
}
.footer-bg p {
    font-size: 14px;
    margin-bottom: 4px;
}
.footer-heading{
    font-size: 20px;
    color: #000;
    font-family: 'interblack';
    margin-bottom: 20px;
}
.footer-service ul{
    list-style: none;
    padding: 0;
    margin-top: 10px;
}
.footer-service ul li{
    display: block;
    margin-bottom: 8px;
}
.footer-service ul li:last-child{margin-bottom: 0;}
.footer-service ul li a{
    color: #000;
    font-size: 14px;
    text-decoration: none;
    transition: .4s;
}
.footer-service ul li a:hover{color: var(--color-purpple-800);padding-left: 5px;}
.call:before {
    content: '\f095';
}
.mail:before {
    content: '\f0e0';
}
.location:before {
    content: '\f3c5';
}
.call, .mail, .location {font-size: 14px;}
.call:before, .mail:before {
    font-family: 'Font Awesome 5 Free';
    padding-right: 12px;
    color: #3475f7;
    font-weight: 900;
    font-size: 18px;
}
.location {
    position: relative;
    padding-left: 32px;
}
.location:before {
    font-family: 'Font Awesome 5 Free';
    padding-right: 12px;
    color: #3475f7;
    font-weight: 900;
    font-size: 18px;
    left: 0;
    position: absolute;
}
.footer-last {
    border-top: 1px solid #7070701f;
    margin: 0;
    padding: 0 0 10px 0;
}



/*     Contact us page          */


.section-contact {
        padding: 165px 0;
        background-color: #fff;
}

.section-contact .header-section .title {
    position: relative;
    margin-bottom: 17px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 52px;
    color: #0e4bc6;
}

.section-contact .header-section .title .dot {
    display: inline-block;
    position: absolute;
    bottom: 8px;
    width: 8px;
    height: 8px;
    margin-left: 3px;
    background-color: #8638df;
}

.section-contact .header-section .description {
    font-family: "Roboto", sans-serif;
    color: #2a6287;
}

.section-contact .header-section .big-title {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%,70%);
    font-size: 120px;
    font-weight: 700;
    opacity: 0.10;
}

.section-contact .form-contact {

}

.section-contact .form-contact .single-input {
    position: relative;
    margin-top: 40px;
}

.section-contact .form-contact .single-input i {
    position: absolute;
    top: 5px;
    left: 15px;
    color: #0e4bc6;
}

.section-contact .form-contact .single-input input,
.section-contact .form-contact .single-input textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #07395c;
    padding-left: 50px;
    padding-bottom: 15px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
        transition: border .3s;
}

.section-contact .form-contact .single-input input::placeholder,
.section-contact .form-contact .single-input textarea::placeholder {
    color: rgba(7, 57, 92, .3);
}

.section-contact .form-contact .single-input input:focus,
.section-contact .form-contact .single-input textarea:focus {
    border-color: #df383f;
}

.section-contact .form-contact .single-input textarea {
    height: 150px;
    min-height: 50px;
}

.section-contact .form-contact .submit-input input {
    margin-top: 40px;
    padding: 15px 50px;
    background-color: #3475f7;
    color: #fff;
    border: none;
    font-weight: 700;
    transition: background-color .3s;
}

.section-contact .form-contact .submit-input input:hover {
    background-color: #07395c;
}

@media (max-width: 575.99px) {
    .section-contact {
        padding: 80px 60px;
    }

    .section-contact .header-section .title {
        font-size: 40px;
    }

    .section-contact .header-section .big-title {
        font-size: 80px;
    }

    .section-contact .header-section .description {
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 767.99px) {
    .section-contact {
        padding: 80px 60px;
    }

    .section-contact .header-section .title {
        font-size: 45px;
    }

    .section-contact .header-section .big-title {
        font-size: 100px;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {
    .section-contact {
        padding: 80px 60px;
    }

    .section-contact .header-section .title {
        font-size: 45px;
    }

    .section-contact .header-section .big-title {
        font-size: 100px;
    }
}
.map_sec{
    padding: 20px 0px;
}
.map_inner h4, .map_inner p{
    color: #000;
    font-size: 32px;
    font-weight: 600;
    text-align: center
}
.map_inner p{
    font-size: 13px;
}
.map_bind{
   margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
}



/* Scroll Top style */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 999;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  line-height: 40px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background: var(--color-purpple-800);
  background-size: 200% auto;
  background-position: left center;
  transition: 0.3s;
  overflow: hidden;
  border: 1px solid #343c55;
}
.scroll-top:hover {
  background-color: #343c55;
  border: 1px solid #322fb3;
  background-position: right center;
}
.scroll-top:hover i {
  color: White;
  transition: 0.3s;
}
.scroll-top:hover .arrow-top {
  transform: translate(-50%, -80px);
}
.scroll-top:hover .arrow-bottom {
  transform: translate(-50%, -50%);
}
.scroll-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  transition: 0.3s;
}
.scroll-top.show {
  display: none;
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.scroll-top.show.show-active {
  display: block;
}
.scroll-top .arrow-top {
  transform: translate(-50%, -50%);
}
.scroll-top .arrow-bottom {
  transform: translate(-50%, 80px);
}

.get-consult .modal-header {
    border: 0;
    padding: 0px;
}
.get-consult .modal-body {
    padding-top: 0 !important;
    padding: 2em;
}
.get-consult .btn-close {
    background-color: #211e1e;
    opacity: 99;
    color: #fff;
    background-image: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 25px;
    margin-top: -24px;
    margin-right: -22px;
     transition: .4s;
}
.get-consult .btn-close:hover {
    background: #606bf1;
    transition: .4s;
}
.get-consult label {
    font-size: 16px;
    font-family: 'intersemi_bold';
}

.get-consult  .modal-content{border: 5px solid #606bf1;}

 
 @media only screen and (min-width: 64rem) {
     .banner-column {
         grid-template-columns: 1fr max-content;
         column-gap: 2rem;
    }
}
 .banner-image {
     display: block;
     max-width: 25rem;
     height: auto;
     object-fit: cover;
     justify-self: center;
}
 @media only screen and (min-width: 48rem) {
     .banner-image {
         order: 1;
         max-width: 28rem;
         height: auto;
    }
}
 @media only screen and (min-width: 64rem) {
     .banner-image {
         max-width: 33rem;
         height: auto;
    }
} 
@media (min-width: 992px)  {
.menu {
         position: relative;
         top: 0;
         left: 0;
         width: auto;
         height: auto;
         padding: 0rem;
         margin-right: auto;
         background: none;
         box-shadow: none;
         transition: none;
    }
     .menu-inner {
         display: flex;
         flex-direction: row;
         column-gap: 2rem;
         margin: 0 auto;
         margin-bottom: 0;
    }
     .menu-item {
         padding: 0;
         border-bottom: none;
    }
     .menu-link {
         text-transform: uppercase;
         text-decoration: none;
         font-weight: 700;
         font-size: 1rem;
         white-space: nowrap;
    }
     .menu-link:hover {
         padding-left: 0;
         color: inherit;
    }
     .menu-header {
         display: none;
    }
     .menu-buttons {
         display: none;
    }
     .menu-overlay {
         display: none;
    }
    .burger {
         display: none;
         visibility: hidden;
    }
    .right-top-btn {
         display: flex !important;
         gap: 10px;
    }
    .brand {
         order: 0;
         margin-right: auto;
         margin-left: 0;
    }
}
 @media (min-width: 1200px) and (max-width: 1499px) {
    .heading-xl{font-size: 40px;}
   
 }
 @media (min-width: 992px) and (max-width: 1199px) {
    
    }


@media (min-width: 768px) and (max-width: 992px){
.fcenter-bg img, .fcenter-bg p, .fcenter-bg ul {padding: 7px;}
.custom-container {padding: 0 7%;}
    .banner-column, .banner-inner{justify-content: center;align-items: center;}
    .video-card video {width: 100%;height: auto;}
    .shape {position: inherit;display: none;}
.banner-image{max-width: 15rem;}
 .heading-xl{font-size: 32px;text-align: center;}
 .bluecolor {display: block;}
 .banner-inner .paragraph{text-align: center;}
 .btn-darken{margin: auto;padding: .8em 2em;font-size: 15px;}
 .dark2 {margin-left: 5px;}
 .section{padding: 7rem 2rem;}
 .fcenter-bg img, .fcenter-bg p, .fcenter-bg ul {padding: 7px;}
 .fcenter-bg{text-align: center;}
 .b-common{margin-top: 20px;}
 .report-bg{padding: 10px 0;}
 .features-bg {padding-top: 0;padding-bottom: 10px;}
.mob-flex{margin:auto;}
.booking-bg {padding-top: 0;}
    .cfour, .cfive {
        margin-top: 26px;
    }
}
@media (min-width: 320px) and (max-width: 480px){
 .banner-image{max-width: 15rem;}
 .heading-xl{font-size: 32px;text-align: center;}
 .bluecolor {display: block;}
 .banner-inner .paragraph{text-align: center;}
 .btn-darken{margin: auto;padding: .8em 2em;font-size: 15px;}
 .dark2 {margin-left: 5px;}
 .section{padding: 7rem 2rem;}
 .fcenter-bg img, .fcenter-bg p, .fcenter-bg ul {padding: 7px;}
 .fcenter-bg{text-align: center;}
 .green{margin-top: 20px;}
 .report-bg{padding: 10px 0;}
 .features-bg {
    padding-top: 0;
    padding-bottom: 10px;
}
    .cfour, .cfive {
        margin-top: 26px;
    }
    .cten, .cnine {margin-top: 25px;}
}
@media (min-width: 320px) and (max-width: 767px){
    .custom-container {padding: 0 7%;}
    .banner-column{justify-content: center;}
    .video-card video {width: 100%;height: auto;}
    .shape {position: inherit;display: none;}
     .cfour, .cfive {
        margin-top: 26px;
    }
    .cten, .cnine {margin-top: 25px;}
}
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {display: block !important;}
button.owl-prev {
    width: 45px;
    display: inline-block;
    height: 45px;
    border-radius: 50% !important;
    border: 1px solid #000 !important;
}
button.owl-next {
    width: 45px;
    display: inline-block;
    height: 45px;
    border-radius: 50% !important;
    border: 1px solid #000 !important;
}
button.owl-next {
    background: #3475f7 !important;
}
.owl-nav.disabled {
    position: absolute;
    top: calc(-21%);
    right: calc(2%);
}
.owl-theme .owl-nav [class*='owl-']:hover {
    background: #3475f7 !important;
}
button.owl-next span{color: #fff;}
button.owl-next span, button.owl-prev span {
    font-size: 29px !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{background: var(--color-purpple-800) !important;}


/* Equal height tweaks */
/* Features: make all cards equal height within their row */
.features-bg .row.justify-content-center > [class*="col-"] { display: flex; }
.features-bg .features-bx { display: flex; flex-direction: column; width: 100%; }

/* Testimonials carousel: normalize card heights */
.testimonial-bg .clients-wrapper .testimonial-bx-main {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    height: 100%;
}
/* Make owl carousel items stretch equal height */
.testimonial-bg #testimonial .owl-item { display: flex; }
.testimonial-bg #testimonial .owl-item > div { display: flex; width: 100%; }

/* Students' testimonials grid: equalize card heights */
.students-testimonial .row > [class*="col-"] { display: flex; }
.students-testimonial .testicard {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 320px;
}

/* Demo section for small screens */
@media (max-width: 600px) {
    .demo-bg {
        padding: 1.5em 1em;
    }
    .demo-bg h3 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .demo-bg p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    button.btn.blue-btn {
        display: block;
        margin: 0 auto;
        font-size: 13px;
        padding: 10px 24px;
    }
}

/* Mobile menu adjustments for small screens */
@media (max-width: 480px) {
    .menu {
        width: 260px;
        left: -260px;
        padding: 15px;
    }
    .menu-header {
        margin-bottom: 20px;
    }
    .menu-header img {
        width: 100px !important;
    }
}

@media (max-width: 575.98px) {
    .banner-inner {
        align-items: center;
        text-align: center;
    }
}

