:root {
  --text_white: #ffffff;
  --text_dark: #112E50;
  --dark_color: #171717;
  --primary_color: #0CC0DF;
  --paragraph_color: #515A73; 
  --title_font: "Inter", sans-serif;
  --paragraph_font: "Inter", sans-serif;
  --text_gray: rgb(255 255 255 / 45%);
  --transition: all 0.4s ease-in-out;
}
 

body { 
  font-family: var(--paragraph_font);
  color: var(--paragraph_color);
  background: var(--text_white);
  font-size: 12px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
a:hover {
    color: var(--primary_color);
    text-decoration: none;

}
ul{
    margin: 0;
    padding: 0;
}
ul li{
    list-style: none;
}

p {
    color: var(--paragraph_color);
    margin-bottom: 10px;
}
p:last-child {

    margin-bottom: 0;

}
h1, h2, h3, h4, h5, h6 {

    margin: 0;
    font-weight: 700;
    font-family: var(--title_font);
    color: var(--text_white);

}
button:focus {
    outline: 0;
}
img { 
    width: 100%;
    height: 100%;
}

.mt-6{
    margin-top: 60px !important;
}
.mt-7{
    margin-top: 70px !important;
}
.mt-8{
    margin-top: 80px !important;
}
.mt-9{
    margin-top: 90px !important;
}
.mb-6{
    margin-bottom: 60px !important;
}
.mb-7{
    margin-bottom: 70px !important;
}
.mb-8{
    margin-bottom: 80px !important;
}
.mb-9{
    margin-bottom: 90px !important;
}
.section_padding_120{
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}
.section_padding_150{
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}
.section_padding_180{
    padding-top: 180px !important;
    padding-bottom: 180px !important;
}
.section_padding_200{
    padding-top: 200px !important;
    padding-bottom: 200px !important;
}
.section_padding{
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
.section_padding_top{
    padding-top: 100px !important; 
}
.section_padding_bottom{ 
    padding-bottom: 100px !important;
}

@keyframes top_bottom_bounce {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(0px, 10px) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}
@keyframes rotate_shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  75% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


@keyframes live_blink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.cline {
    border-left: 1px solid rgb(255 255 255 / 15%);
    border-right: 1px solid rgb(255 255 255 / 15%);
    padding-left: 70px !important;
    padding-right: 70px !important;
}
.cline_white {
    border-left: 1px solid #dce0e5;
    border-right: 1px solid #dce0e5; 
}
.btn-primary {
    background: var(--primary_color);
    color: var(--text_white);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    padding: 1px 35px;
    font-size: 12px;
    font-weight: 600;
    line-height: 36px;
    display: inline-block;
    border: none !important;
    border-radius: 0 !important;
}
.btn-primary:hover {
  background: #129fb8;
  color: var(--text_white); 
  transition: var(--transition);
}
.top_nav_button {
    background: var(--primary_color);
    color: var(--text_white);
    cursor: pointer;
    text-align: center;
    width: 120px;
    height: 40px;
    transition: var(--transition);
    font-size: 12px;
    font-weight: 600; 
    line-height: 39px;
    display: inline-block;
    border: none !important;
    border-radius: 0 !important;
}
.top_nav_button {
    background: linear-gradient(135deg,#8ee6ff,#1080fe);
    font-size: 12px;
    font-weight: 600;
    line-height: 42px;
    border-radius: 6px!important;
}
.top_nav_button:hover {
  background: linear-gradient(135deg, #00c7ff,  #00c7ff) ;
  color: var(--text_white); 
  transition: var(--transition); 
}
.top_nav li a {
    margin-left: 12px;
    margin-right: 12px;
    font-weight: 500;
    color: var(--dark_color) !important;
    font-size: 12px !important;
}
.top_nav li a {
    font-weight: 600;
    color: #0f317c!important;
}
.top_nav li a:hover {
  color: var(--primary_color) !important;
}
.top_nav {

  margin-left: 50px;
}
.top_header .navbar {
    background: #fff!important;
    border-bottom: 1px solid #cfd4dc !important;
}

/*hero section*/
.heroSection {
    color: #fff;
    background: url("../images/hero_bg.jpg");
    min-height: 99vh;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.btnIcon {
  width: 34px;
  height: 34px;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.primaryBtn,
.secondaryBtn {
  min-width: 170px;
  height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  border-radius: 6px !important;
}

.primaryBtn {
  background: linear-gradient(135deg, #00c7ff, #0078ff);
  color: #ffffff;
  border: 1px solid rgba(0, 199, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 140, 255, 0.25);
}
.secondaryBtn {
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.primaryBtn {
  background: linear-gradient(135deg, #00c7ff, #0078ff);
  color: #ffffff;
  border: 1px solid rgba(0, 199, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 140, 255, 0.25);
  font-size: 11px;
}

.secondaryBtn {
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 11px;
}

.primaryBtn:hover  {
  color: #ffffff;
  background: linear-gradient(135deg, #00c7ff,  #00c7ff) !important;
  transform: translateY(-2px);
}

 
.secondaryBtn:hover {
  color: #ffffff;
  background:linear-gradient(135deg, #00c7ff,  #00c7ff) !important;
  transform: translateY(-2px);
}
.hero_left_text { 
}
.hero_left_text span {
    text-transform: uppercase;
    font-weight: 500;
    color: #00d9ff;
    font-family: "Inter";
    font-size: 10px;
    margin-bottom: 14px;
    display: inline-block;
}
.hero_left_text p {
    font-size: 12px;
    line-height: 1.85;
    color: #ffffffb8;
    margin-top: 10px;
    max-width: 385px;
}
.hero_left_text h1 {
    color: #fff;
    max-width: 480px;
    margin: 0 0 18px;
    font-family: inter;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}
.labelLine {
    background: linear-gradient(90deg,#00d9ff,#0000);
    width: 72px;
    height: 1px;
    margin-bottom: 22px;
}

.heroSection .cline {
    padding-bottom:157px;
    padding-top: 240px;
}
.n_item img {
    width: 60px;
    height: 60px;
}
.numbering_rea {
    display: flex;
    margin-top: 200px;
    background: #021637;
    padding: 22px 20px;
    gap: 30px;
    justify-content: space-between;
    border: 1px solid #ffffff21;
    border-radius: 13px;
}
.n_item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.n_item:after {
    content: "";
    height: 50px;
    position: absolute;
    width: 1px;
    background: #f9f9f926;
    right: -71px;
}
.n_item:last-child::after {
    content: none;
}
.item_text span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter';
}
.item_text p {
    color: #ffffffb8;
}
/*our services*/
.our_services{
    background:url("../images/service_bg.jpg");
    background-size: cover;

}
.our_services .cline {
    padding-top: 120px;
    padding-bottom: 120px;

}

.section_area  span {
    color: #2d98ff;
    font-size: 10px;
    font-family: inter;
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section_area h2 {
    color: var(--text_dark);
    font-size: 17px;
    line-height: 20px;
    font-family: var(--title_font);
    margin-bottom: 19px;
    font-weight: 700;
}
.section_area p {
    color: var(--paragraph_color);
    line-height: 24px;
    font-family: var(--paragraph_font);
    text-align: justify;
    margin-bottom: 30px;
    font-family: inter;
    font-size: 12px;
}
.sec_text { 
    background: #2d98ff;
    width: 20px;
    height: 2px;  
}
.sec_div {
    background: #2d98ff;
    width: 50px;
    height: 2px;
    margin-bottom: 14px;
}
.service_item span {
    font-size: 20px;
    font-weight: 600;
    color: #2d98ff;
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 20px;
}

.service_item h3 {
    color: #112e50;
    font-size: 17px;
    line-height: 37px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.service_item p {
    color: var(--paragraph_color);
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 12px;
}

.service_item a {
    font-size: 14px;
    font-weight: 500;
    color: #2d98ff;
    display: block;
    margin-bottom: 20px;
}
.service_item a:hover {
    transform: translateX(5px);
}
.service_item {
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    position: relative;
    background: #fff;
}
.service_item:before {
    content: "";
    background: #2d98ff;
    position: absolute;
    top: 0;
    width: 50px;
    height: 2px;
}
.service_item img {
    width: 60px;
    position: absolute;
    height: 60px;
    right: 12px;
}


.snumbering_rea {
    display: flex;
    background: #fff;
    padding: 22px 20px;
    gap: 30px;
    justify-content: space-between;
    border: 1px solid #d7d7d775;
    border-radius: 6px;
    margin-top: 30px;
}
.s_item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.s_item:after {
    content: "";
    height: 50px;
    position: absolute;
    width: 1px;
    background: #515a7324;
    right: -71px;
}
.s_item:last-child::after {
    content: none;
}
.s_item .item_text span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter';
}
.s_item .item_text p {
    color: var(--paragraph_color);
}
.s_item img {
    width: 54px;
    height: 54px;
}

/*why section*/
.why_capital{
    background: url("../images/why_bg.jpg");
    background-size: cover;
}
.why_capital .cline {
    padding-top: 100px;
    padding-bottom: 100px;
}
.why_items img {
    width: 60px;
    height: 60px;
}

.why_items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}
.why_items:last-child {
    border-bottom: none; 
}

.why_txt p {
    color: var(--paragraph_color);
    width: 86%;
    text-align: justify;
}

.why_txt span {
    font-size: 17px;
    font-weight: 600;
    color: #112e50;
    display: inline-block;
    line-height: 31px;
}

.why_item_area {
    margin-top: 60px;
}
/*faq area*/
.faq_area{
    background: url("../images/faq_bg.jpg");
    background-size: cover;    
    margin-top: 120px;
    position: relative;
}

.faq_area .cline{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.faq_area .cline:before {
    content: "";
    position: absolute;
    left: -1px;
    top: -120px;
    height: 120px;
    width: 1px;
    background: #dce0e5;
}
.faq_area .cline:after {
    content: "";
    position: absolute;
    right: -1px;
    top: -120px;
    height: 120px;
    width: 1px;
    background: #dce0e5;
}
.faq_itemss h2 button {
    font-weight: 600;
    color: var(--text_dark) !important;
}
.faq_itemss .accordion-item {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #eee !important;
    outline: none !important;
    border-radius: 15px !important;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed) { 
    background-color: #f9f9f916 !important; 
    outline: none !important;
}
:focus, *:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/*footer area*/
.footer_area .cline {
    padding-top: 100px;
    padding-bottom: 100px;
}
.footer_area{
    background: url("../images/footer_bg.jpg");
    background-size: cover;
}
.footer_area .section_area .sec_div{
    margin: 0 auto;
}
.footer_area .section_area h2 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 21px;
    font-size: 24px;
}
.navbar-brand img {
    width: 115px;
}
.f_text img {
    width: 12px;
    margin-left: 3px;
}

.main_footer_logo img {
    width: 117px;
    margin-top: 30px;
}

.main_footer_logo .sec_div {
    margin-top: 30px;
    margin-bottom: 30px;
}
.item_foot {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.address_area_footer {margin-top: 30px;}

.item_foot i {
    font-size: 21px;
    background: #f7f7f7;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #a3a3a32b;
    color: #2692ff;
}

.f_text span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #112e50;
    margin-bottom: 5px;
}

.connnect_text {
    margin-top: 30px;
    margin-bottom: 45px;
}

.connnect_text h3 {
    font-size: 16px;
    color: #112e50;
    margin-bottom: 15px;
}
.main_footer .cline {
    padding-top: 70px;
    padding-bottom: 70px;
}
.c_web {
    margin-left: 13px;
    margin-top: 80px;
}
.c_web img {
    width: 10px;
    margin-right: 4px;
}

.only_text {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    padding: 5px 10px;
}

.last_footer {
    background: #112e50;
    padding: 20px 0;
}

.only_text img {
    width: 15px;
}

.only_text p {color: #fff;margin-left: 218px;}

.cc_terms li {display: inline;margin-right: 5px;color: #fff;margin-left: 5px;}

@media only screen and (max-width: 768px) {

    .snumbering_rea {
        display: block; 
    }

    .s_item { 
        margin-bottom: 30px;
    }

    .s_item::after { 
        display: none;
    }

    .numbering_rea {
        display: block; 
    }
    .n_item { 
        margin-bottom: 25px;
    }
    .n_item:after {
        display: none; 
    }
    .footer_area .section_area h2 { 
        line-height: 30px;
    }

    .only_text {
        display: block;  
        text-align: center;
    }

    .only_text p { 
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .heroSection { 
        background-position: top center;
    }
    .our_services { 
    background-position: center;
    background-repeat: no-repeat;
}
.why_capital { 
    background-size: cover;
    background-position: center center;
}

}