:root {
    --primary-color: #FF02B5;
    --hover-color: #212121;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

@font-face {
    font-family: brandon-bold;
    src: url(../fonts/brandon-grotesque-black-58a8a3e824392.otf);
}

@font-face {
    font-family: brandon-light;
    src: url(../fonts/brandon-grotesque-light-58a8a4b38001d.otf);
}

@font-face {
    font-family: montserrat-alternates;
    src: url(../fonts/MontserratAlternates-Regular.woff);
}

@font-face {
    font-family: iron-fist;
    src: url(../fonts/ironfist.otf);
}

@font-face {
    font-family: futura;
    src: url(../fonts/futuramediumbt.ttf);
}

.brandon-light {
    font-family: brandon-light;
}

h1 {
    font-family: brandon-bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1300px;
}

.btn {
    border-radius: 0;
    background-color: var(--primary-color);
    color: #fff;
    transition: all .5s;
    font-weight: bold;
    border: 1px solid var(--primary-color);
    padding: 7px 21px;
}

.btn:hover {
    background-color: var(--hover-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}

.navbar {
    background-color: #2E3192;
    box-shadow: -8px -5px 7px 12px #dfdfdf80;
    color: #ffff;
}

.navbar-brand img {
    height: 150px;
    width: 200px;
    object-fit: scale-down;
    margin-bottom: -70px;
}

.nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.nav-link.active {
    color: #ffff !important;
    font-weight: bold;
}

.nav-link {
    margin-right: 15px;
}

.last {
    margin-right: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative;
    border: 2px solid #3361AC;
    border-radius: 6px;
}

#search-input {
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-right: 1px; /* Space for the icon */
}

#search-button {
    position: absolute;
    right: 20px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 5px 10px;
    color: #333;
    border-left: 2px solid #3361AC;
}

#search-button i {
    font-size: 16px;
    color: #3361ac;
}

#search-input:focus {
    border-color: #007bff;
    outline: none;
}

#search-button:focus {
    outline: none;
}
input#search-input::placeholder {
    color: #3361AC;
    font-size: 16px;
    font-weight: 600;
}
.home-section {
    background: url(../img/hero-bg.png);
    background-position:center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 190px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-btn a {
    background: #ff0031;
    padding: 10px 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    border: 2px solid #ff0031;
}
.home-btn {
    margin: 30px 0;
}
.circel-home-content h1 {
    color: #3361ac;
    font-size: 44px;
}
.circel-home-content h2 {
    font-size: 44px;
    font-weight: 800;
}


/* ------------------------------------- */
.service-section {
    background: #f8f9fa;
    text-align: center;
}

.content {
    position: relative;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.progress-point {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
}
.progress-point::after {
    content: '';
    position: absolute;
    background: #FFC400;
    width: 3px;
    height: 20px;
    left: 14px;
    top: 30px;
}

.circle {
    width: 30px;
    height: 30px;
    border: 2px solid #FFC400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    position: relative;
}

.circle.active {
    background-color: #FFC400;
}

.circle::after {
    content: '';
    position: absolute;
    font-size: 18px;
    color: #000;
    display: none;
    background: black;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}


.circle.active::after {
    display: block;
}

.text {
    font-size: 16px;
}

.progress-point.active .text {
    font-weight: bold;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    display: none;
}

.image-item.active {
    display: block;
}
.content h2 {
    font-size: 32px;
    font-weight: 700;
}

.about {
    background: url(../img/about-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 125px 30px !important;
}

/* section 4 css start  */
.pricing {
    background: url(../img/pricing-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 45px 0px;
    color: #fff;
    text-align: center;
}
.discover-box {
    background: #fff;
    border-radius: 7px;
    color: #000;
    text-align: center;
    height: 130px;
    margin: 60px 0 0px;
    transition: all 0.5s;
}
.discover-icon img {
    background: #fff;
    border-radius: 50%;
}
.discover-box-text h5 {
    font-size: 16px;
    right: 10px;
    font-weight: 600;
    margin: 30px 0 0;
}
.discover-icon img {
    background: url(../img/border-black.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    margin: -50px 0 0px;
    padding: 5px;
    transition: all 0.5s;
}
.discover-box:hover img{
    color: red !important;
    background: url(../img/blur-border.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    margin: -50px 0 0px;
    padding: 5px;
}
.discover-box:hover{
    color: #3361AC;
}
/* .discover-icon img:hover {
    background: url(../img/blur-border.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    margin: -50px 0 0px;
    padding: 5px;
} */
.discover-whitebtns {
    width: 44%;
    margin: 20px auto;
    border-radius: 50px;
    border: 2px solid #fff;
    background: #fff;
    height: 40px;
    position: relative;
    padding: 6px 0;
}
.discover-whitebtns a {
    background: #EBEBEB;
    padding: 10px 27px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
}
.custtom__boxs {
    justify-content: center;
}
.discover-icon img {
    width: 100px;
    height: 100px;
    object-fit: scale-down;
    padding: 20px;
    border-radius: 0px;
}
/* section 4 css end   */




.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 13px;
    margin-right: 15px;
    color: #fff;
    background: #b7b7b773;
    padding: 10px;
    border-radius: 50px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
}
.getin-touch-box {
    background: #3361ac;
    color: #fff;
    padding: 50px 30px;
    border-radius: 20px 3px 3px 20px;
    box-shadow: 0px 0px 11px #000000b5;
}
.contact-content {
    text-align: center;
}
.contact-content h2 {
    color: #2D2D2D;
    font-size: 30px;
    font-weight: 900;
}
.contact-content p {
    color: #2D2D2D;
    font-size: 16px;
    width: 60%;
    margin: 6px auto 20px;
}
.contact-form input {
    width: 100%;
    padding: 7px 10px;
    border-radius: 4px;
    border: 2px solid #ccc;
    outline: none !important;
}
.contact-form textarea {
    width: 100%;
    padding: 7px 10px;
    border-radius: 4px;
    border: 2px solid #ccc;
    outline: none !important;
    height: 100px;
}
button.submit-btn {
    background: #ff0032;
    padding: 9px 20px 9px 20px;
    margin: 6px 0;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
}
.contact-form h5 {
    font-size: 22px;
    font-weight: 800;
}

.footer {
    background: #2e3192;
    padding: 35px 0px 20px !important;
}
.footer-logo img {
    width: 200px;
    height: auto;
    margin: 20px 0;
    object-fit: scale-down;
}
.footer-content p {
    color: #fff;
    font-size: 14px;
}
.footer-menu ul li {
    list-style: none;
    font-size: 16px;
    padding: 7px 0px;
    position: relative;
}

h4.footer-heading {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}
.footer-menu ul li a span i {
    background: #fff;
    color: #000;
    padding: 7px;
    width: 30px;
    text-align: center;
    border-radius: 3px;
    margin: 0 8px 2px 0px;
}





/* Search bar styling */
.search-bar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-bar input {
    padding: 10px;
    font-size: 16px;
}

.search-bar button {
    padding: 10px 20px;
    cursor: pointer;
}

/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 90px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    animation: slideDown 0.4s;
}

.modal-content {
    background-color: #fff;
    margin: 0% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal-content {
    position: relative;
    width: 100%;
    outline: 0;
    padding: 30px 216px;
    border-radius: 0px;
    border: none;
    box-shadow: 7px 0px 1px 6px #3361ac;
    border-top: 1px solid #ccc;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: #3361ac;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes slideDown {
    from {top: -100%; opacity: 0;}
    to {top: 0; opacity: 1;}
}
.compay-name-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.modal-content h5 {
    font-size: 18px;
    color: #3361ac;
    padding: 10px 0;
    font-weight: 700;
}
.custtom-modal {
    padding: 20px;
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 5px;
}
.rating strong {
    font-size: 20px;
    color: #3361ac;
}
.compnay-name p span {
    color: #3361ac;
}
.compnay-name h2 {
    font-size: 24px;
    font-weight: 600;
}





.custom-modal {
    box-shadow: 0px 0px 4px 3px #ccc;
    border-radius: 7px;
    padding: 16px;
}

.clos-01 {
    display: none;
}

.company-item {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 0px 2px 2px #cccccc78;
    margin: 0px 0 20px;
}

.arrow-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}



span.blue {
    color: #2E3192;
}
span.red {
    color: #FF0031;
}
.about-content {
    color: #fff;
}
dl, ol, ul {
    padding: 0;
}
li{
    list-style: none;
}
.about-content ul li {
    font-size: 18px;
    line-height: 35px;
    padding: 4px 0;
}
.about-content ul li {
    font-size: 18px;
    line-height: 35px;
    padding: 4px 0;
    border-bottom: 1px solid #7d1d264a;
}
.serv-box {
    border: 1px solid #83A790;
    border-radius: 25px;
    padding-bottom: 20px;
}
.serv-box img{
    width: 100%;
    height: auto;
    object-fit: scale-down;
}
.serv-box h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 14px;
}
.serv-box p {
    font-size: 16px;
    padding: 0 20px;
}
.founder-img img {
    width: 100%;
    height: auto;
    object-fit: scale-down;
}
.founder-cont {
    color: #808080;
    text-align: start;
    box-shadow: 0px 0px 9px #ccc;
    padding: 20px 20px;
    height: 100%;
    border-radius: 8px;
}
.founder-cont p {
    font-size: 16px;
    line-height: 30px;
    border-bottom: 1px solid #bbbbbb66;
    padding-bottom: 130px;
}
.ceo-name p {
    border: none;
    padding: 0;
}
.discover-content h2 {
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 20px;
}
.testimonial-section {
  /* background: linear-gradient(135deg, #3a3fa0, #2b2f87); */
  background: url(../img/slider-bg.png);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
section.cta {
    background: url(../img/cta-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding: 45px 0px;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.testimonial-card {
  background: #fff;
  max-width: 700px;
  padding: 50px 40px;
  border-radius: 20px;
  position: relative;
}

.quote-mark {
  font-size: 200px !important;
  color: #3a3fa0;
  position: absolute;
  top: -92px;
  right: 40%;
  font-weight: 800;
}

.testimonial-card p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 25px;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card h5 {
  color: #3a3fa0;
  font-weight: 600;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: #c7c9ff;
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots .dot.active {
  background: #ffffff;
}
.nav-link {
    color: #fff !important;
}
.white-btn a {
    background: #fff;
    text-decoration: none;
    color: #000;
    padding: 10px 40px;
    border-radius: 5px;
}
.my-form {
    background: #2e3192;
    padding: 30px 10px;
    border-radius: 5px;
}
ul {
    padding: 0 !important;
}
.footer-menu ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-menu ul li a i {
    padding: 0 7px 0 0;
}
.top-btn img {
    width: 90%;
    height: auto;
    object-fit: scale-down;
}
.top-btn {
    display: flex;
    justify-content: space-between;
}

.testimonial-card{
  background:#fff;
  max-width:720px;
  padding:60px 40px;
  border-radius:18px;
  position:relative;
  z-index:10;
}


.testimonial-card p{
  font-size:18px;
  color:#777;
  line-height:1.7;
}

.stars{
  color:#f4c430;
  margin:20px 0 10px;
}

.testimonial-card h5{
  color:#353b9e;
  font-weight:600;
}

.slider-dots .dot{
  width: 20px;
  height: 20px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  display:inline-block;
  margin: 0 2px;
  cursor:pointer;
}

.slider-dots .dot.active{
  background:#fff;
}

/* AVATARS */
.floating-avatars{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.avatar{
  width:70px;
  height:70px;
  border-radius:50%;
  border:3px solid #fff;
  position:absolute;
  object-fit:cover;
}

/* LEFT */
.avatar-l1{ left:0; top:120px; }
.avatar-l2{left:60px;top: 340px;}
.avatar-l3{left:0;bottom: 90px;}

/* RIGHT */
.avatar-r1{ right:0; top:120px; }
.avatar-r2{right: 70px;top: 330px;}
.avatar-r3{right:0;bottom: 100px;}
.avatar{
  cursor:pointer;
  transition:all .3s ease;
  opacity: 0.8;
}
.avatar:hover{
  opacity:1;
  transform:scale(1.05);
}

.active-avatar{
  opacity:1;
  transform:scale(1.15);
  box-shadow:0 0 0 4px rgba(255,255,255,.6);
}
@media(max-width:768px){
  .floating-avatars{ display:none; }
}
