/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #536080;
  font-family: 'Mulish', sans-serif;
  font-size:15px;
}

a{
  text-decoration: none;
  color:#000
}

a:hover,
a:active,
a:focus {
  color: #063b5b;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #112240;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.btn:focus, button:focus, .form-control:focus{
  outline: none;
  box-shadow: none;
}

ul{
  list-style: none;
  padding:0px;
  margin:0px;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #0e1f50;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-top-content{
  padding: 10px 0px;
}

.header-navbar{
  padding: 15px 0px;
}

.mobile-nav-active .header{
  background-color: #fff;
}
.mobile-nav-active .header-top{
  border-color: rgba(83,96,128,.3);
}

.mobile-nav-active .header-top-content ul li a{
  color: #000;
}

.logo-02{
  display: none;
}

.mobile-nav-active .logo-01{
  display: none;
}

.mobile-nav-active .logo-02{
  display: block;
}

.header .logo img {
  padding: 0;
  height: 25px;
  margin: 7px 0px;
  transition: all 0.3s;
}

.menubar{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  position: relative;
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav > ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav > ul > li {
  display: inline-block;
  padding: 0px 15px;
  position: relative;
}

.main-nav a {
  display: inline-block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
}

.header-scrolled .main-nav a{
  color: #000;
}

.main-nav a img{
  width: 35px;
  height: 35px;
  object-fit: cover;
  object-position: 50% top;
  border-radius: 100%;
}

.main-nav a.btn{
  padding: 5px 15px;
  border-radius: 25px;
  color: #fff;
}

.main-nav a.sign-in{
  background-color: #063B5B;
  border: 1px solid #063B5B;
}

.main-nav a.language{
  position: relative;
  background-color: #E6990D;
  border: 1px solid #E6990D;
  padding-right: 30px;
}

.main-nav a.language::before{
  position: absolute;
  top: 50%;
  right: 10px;
  content: '\f0d7';
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #E6990D;
  text-decoration: none;
}
.main-nav a.sign-in:hover{
  background-color: #fff;
  color: #063B5B;
}
.main-nav a.language:hover, .main-nav .active > a.language, .main-nav li:hover > a.language{
  background-color: #fff;
  color: #E6990D;
}
.main-nav .drop-down .dropdownmenu{
  position: absolute;
  top:100%;
  right: 0;
  width: 200px;
  padding:20px;
  background-color:#fff;
  box-shadow: 0px 3px 10px #00000030;
  border-radius: 10px;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  transition:all 0.2s ease-in-out;
}

.main-nav .drop-down:hover > .dropdownmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition:all 0.3s ease-in-out;
}


.main-nav a.account-btn:hover{
  background-color: #ff7800;
  color: #fff;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 115px;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: 0;
  width: 100%;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav li{
  padding: 10px 20px;
}
.mobile-nav a {
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 22px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #e99706;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down .dropdownmenu {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  border: 0;
  background: none;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  color: #fff;
  font-size: 25px;
}

.header-scrolled .mobile-nav-toggle{
  color: #0c3598;
}
.mobile-nav-bx ul li{
  display: inline-block;
  padding-right:20px;
  font-size: 18px;
}
.mobile-nav-bx ul li a{
  color: #000000;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle{
  background-color: #fff;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #000;
}

.mobile-nav ul{
  margin: 0px auto;
}

.main-nav a.account-btn, .mobile-nav a.account-btn{
  padding: 8px 22px;
  border: 1px solid #ff7800;
  background-color: #FF7800;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
}

@media (min-width: 576px){
  .mobile-nav ul{
    max-width: 540px;
  }
}

@media(min-width:767px){
  .mobile-nav ul{
    max-width: 720px;
    
  }
}




/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.home-banner{
  position: relative;
  padding: 240px 0px 120px;
  background:linear-gradient(90deg, #0A00E9 0%, #00165B 100%); ;
}


.banner-content h4{
  text-shadow: 0 0 25px #b764d8;
  font-weight: 700;
  margin: 0 0 15px;
  font-size: 30px;
  position: relative;
  color: #fff;
}

.home-banner-img img{
  width: 100%;
}

.banner-content img{
  max-width: 100%;
  margin-bottom: 30px;
}

.banner-content h1{
  font-size: 48px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
}

.banner-content p{
  font-size: 20px;
  color: #fff;
  margin: 0 0 30px;
  font-weight: 400;
  line-height: 28px;
}

.banner-content span{
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.banner-btns{
  margin-bottom: 20px;
}

.main-btn{
  display: inline-block;
  font-size: 20px;
  padding: 15px 35px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid #FF7800;
  background-color: #FF7800;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.main-btn:hover{
  color:#FF7800 ;
  background-color: transparent;
}

.border-none{
  border: none;
}

.section-pad{
  padding: 120px 0px;
}

.content-slider{
  margin-bottom: 100px;
}

.clients-carousel img{
  filter: grayscale(100%);
  opacity: .3;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.clients-carousel img:hover{
  filter: grayscale(0);
  opacity: 1;
}

.section-header{
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.section-header h3{
  font-size: 40px;
  font-weight: 900;
  line-height: 52px;
}

.section-header p{
  font-size: 18px;
}

.icon-website{
  background-image: url(../images/price-feature/1.svg);
}
.icon-ram{
  background-image: url(../images/price-feature/2.svg);
}
.icon-ssd{
  background-image: url(../images/price-feature/3.svg);
}
.icon-cpanel{
  background-image: url(../images/price-feature/4.svg);
}
.icon-ssl{
  background-image: url(../images/price-feature/5.svg);
}
.icon-migrations{
  background-image: url(../images/price-feature/6.svg);
}
.icon-litespeed{
  background-image: url(../images/price-feature/7.svg);
}
.icon-storage{
  background-image: url(../images/price-feature/8.svg);
}
.icon-domain{
  background-image: url(../images/price-feature/9.svg);
}
.icon-wordpress{
  background-image: url(../images/price-feature/10.svg);
}
.icon-setting{
  background-image: url(../images/price-feature/11.svg);
}
.icon-premium{
  background-image: url(../images/price-feature/12.svg);
}

.package-feature ul li{
  color: #536080;
  font-size: 16px;
  padding-left: 26px;
  position: relative;
  margin-bottom: 6px;
  display: inline-block;
  float: left;
  clear: both;
}

.package-feature ul li span.label{
  padding: 0 4px;
  line-height: 21px;
  position: absolute;
  top: 2px;
  right: -38px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  font-size: 10px;
  color: #ff7800;
  border:1px solid #ff7800;
}

.package-feature ul li.has-tooltip{
  cursor: pointer;
}

.package-feature ul li.has-tooltip::before{
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 0;
  width: auto;
  border-bottom: 1px dashed #b5b9c9;
}

.package-feature ul li i{
  font-size: 16px;
  color: #99a5c2;
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: 50%;
  display: inline-block;
}

.package-feature ul li b{
  color: #112240;
}

.price-box{
  background: #fff;
  border: 0;
  padding: 40px 20px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-shadow: 0 8px 32px 0 rgb(0 0 0 / 8%);
  border-radius: 6px;
  position: relative;
  height: 100%;
  transition: transform .3s,box-shadow .3s;
}

.price-box .package-promotion{
  position: absolute;
  background-color: #ff7800;
  color: #fff;
  font-weight: 700;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  border-radius: 4px;
  min-width: 158px;
  text-align: center;
  line-height: 33px;
  display: inline-block;
}

.price-box:hover{
  box-shadow: 0 16px 24px rgb(0 0 0 / 6%), 0 16px 24px rgb(0 0 0 / 6%), 0 16px 48px rgb(0 0 0 / 8%);
  transform: translate3d(0,-8px,0);
}

.price-icon{
  max-width: 100px;
  width: 100%;
  max-height: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.price-icon .svg-icon__animated-element-1, .price-icon .svg-icon__animated-element-2, .price-icon .svg-icon__animated-element-3, .price-icon .svg-icon__animated-element-4, .price-icon .svg-icon__animated-element-5{
  transition: .5s cubic-bezier(.16,0,0,1);
  transition-property: transform;
  transform: translateY(0);
}

.price-box:hover .svg-icon__animated-element-1, .price-box:hover .svg-icon__animated-element-2, .price-box:hover .svg-icon__animated-element-3, .price-box:hover .svg-icon__animated-element-4, .price-box:hover .svg-icon__animated-element-5{
  transition: .5s cubic-bezier(.16,0,0,1);
  transition-property: transform;
  transform: translateY(-16px);
}

.price-box h4{
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.price-box p{
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  line-height: 22px;
  color: #536080;
  margin-bottom: 16px;
}

.price-bx-footer{
  margin-top: auto;
  padding: 24px 0 0;
}

.price-discount{
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}

.price-discount .price-before{
  color: #b5b9c9;
  text-decoration: line-through;
}

.price-discount .price-now{
  font-weight: 700;
  color: #ff7800;
}

.package-price h3{
  font-size: 35px;
  position: relative;
  font-weight:800 ;
  text-align: center;
  padding-bottom: 20px;
}

.package-price h3::before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 38px;
  background-color: #144fc4;
  margin: auto;
  border-radius: 4px;
}

.package-price h3 sup{
  top: auto;
}

.price-bx-footer a{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  transition: .3s;
  height: 42px;
  font-weight: 700;
}

.price-bx-footer a span{
  display: inline-block;
  position: relative;
  transition: .3s;
}

.price-bx-footer a span::before{
  position: absolute;
  opacity: 0;
  top: 4px;
  right: 0;
  transition: .3s;
  width: 18px;
  height: 18px;
  content: '';
}

.btn--primary, .btn--primary:hover{
  color: #fff;
  background: #144fc4;
}

.price-bx-footer .btn--primary span::before{
  background-image: url(../images/arrow-right-white.svg);
}

.price-bx-footer .btn--link span::before{
  background-image: url(../images/arrow-right-dark.svg);
}

.price-bx-footer a:hover span::before{
  opacity: 1;
  right: -24px;
}
.price-bx-footer a:hover{
  padding-right: 40px;
  transition: .3s;
}
.home-price-sec .tabs{
  display: flex;
  justify-content: center;
}
.home-price-sec .nav-pills{
  border: 1px solid #e1e2e6;
  border-radius: 30px;
  padding: 4px;
  margin: 0 auto 80px;
}

.home-price-sec .nav-pills .nav-link{
  color: #112240;
  padding: 6px 28px;
  font-weight: 700;
  font-size: 18px;
  background-color: transparent;
  border-radius: 30px;
  transition: none;
}

.home-price-sec .nav-pills .nav-link.active{
  color: #fff;
    background-color: #144fc4;
}

.other-feature-bx{
  text-align: center;
}

.other-feature-bx .other-feature-icon{
  margin: 0 auto 24px;
  width: 60px;
  height: 60px;
}

.other-feature-bx h4{
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 16px;
}

.other-feature-bx p{
  color: #536080;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.svg-icon.affordable-power .st3 {
  stroke: #ff7800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.affordable-power .st1 {
  fill: none;
  stroke: #144fc4;
}

.svg-icon.affordable-power .st0 {
  fill: #144fc4;
}

.svg-icon.affordable-power .st2, .svg-icon.affordable-power .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.complete-control .st0 {
  fill: #144fc4;
}

.svg-icon.complete-control .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.complete-control .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}

.svg-icon.unmatched-security .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}

.svg-icon.unmatched-security .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.unmatched-security .st2{
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}

.svg-icon.affordable-power .st3 {
  stroke: #ff7800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.supreme-reliability .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}

.svg-icon.supreme-reliability .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.supreme-reliability .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
}

.svg-icon.supreme-reliability .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}

.svg-icon.supreme-reliability .st4 {
  fill: #ff7800;
}

.svg-icon.click .st3,
.svg-icon.ssd .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}

.svg-icon.click .st2{
  fill: none;
  stroke: #fff;
}

.svg-icon.click .st1{
  fill: #082386;
}

.svg-icon.click .st0{
  fill: #ff7800 !important;
}

.svg-icon.wp-litespeed .st0,
.svg-icon.wp-made-safe .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}
.svg-icon.wp-litespeed .st0 {
  fill: #ff7800;
}
.svg-icon.wp-litespeed .st1 {
  fill: none;
  stroke: #ff7800;
}
.svg-icon.click .st0,
.svg-icon.wp-litespeed .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}

.svg-icon.wp-made-safe .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.wp-made-safe .st1 {
  fill: none;
  stroke: #ff7800;
  stroke-linejoin: round;
}

.website-builder{
  padding: 100px 0px;
}

.website-builder-content h4{
  font-size: 50px;
  font-weight: 800;
}

.website-builderimg img{
  width: 100%;
}

.list-group-bx{
  display: flex;
  align-items: center;
  margin: 0px 0px 30px 0px;
  padding: 30px 30px 25px 30px;
  background-color: #FFFFFF;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 12px 50px 0px rgb(125 125 125 / 10%);
}

.list-group-content{
  padding-left: 20px;
}

.list-group-content h5{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.list-group-content p{
  font-size: 16px;
  margin: 0;
}

.view-more-btn{
  color: #fff;
  background: #144fc4;
  font-weight: 700;
  font-size: 16px;
  margin-left: 20px;
}

.migration-img img{
  width: 100%;
}

.migration-section{
  position: relative;
  background-image: linear-gradient(278deg, #001DAC 16%, #000F57 98%);
}

.migration-sec-content{
  padding: 60px 40px 60px 0px;
  position: relative;
  color: #fff;
}

.migration-sec-content h4{
  color: #FFFFFF;
  font-size: 2.625em;
  font-weight: 700;
  line-height: 1.2em;
}

.migration-sec-content p{
  font-size: 16px;
  margin-bottom: 40px;
}

.migration-line-img{
  margin-top: 80px;
}

.migration-line-img img{
  width: 100%;
  opacity: 0.2;
}

.migration-sec-footer a{
  padding: 10px 25px;
}

.migration-sec-footer .btn--link{
  color: #fff;
  border: 1px solid #fff;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}

.migration-sec-footer a:hover{
  background-color: #1C40F2;
  border-color: #1C40F2;
}

.migration-bg-overlay{
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../images/migrate-frame.svg);
  background-position: 95.5% 50%;
  background-repeat: no-repeat;
  background-size: auto;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.quick-easy .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #b9c2d5;
}
.quick-easy .st1,
.quick-easy .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #e2e7f1;
}
.quick-easy .st2 {
  fill: #144fc4;
}
.quick-easy .st3 {
  fill: none;
  stroke: #144fc4;
}
.quick-easy .st4 {
  fill: #bec6d8;
}
.quick-easy .st4,
.quick-easy .st5,
.quick-easy .st6 {
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.quick-easy .st5 {
  fill: #e2e7f1;
  stroke: #b9c2d5;
}
.quick-easy .st6 {
  fill: #fff;
}
.quick-easy .st7 {
  fill: none;
  stroke: #ff7800;
}
.quick-easy .st8,
.quick-easy .st9,
.quick-easy .st10 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #113a8f;
}
.quick-easy .st9,
.quick-easy .st10 {
  fill: url(#front-2_1_);
}
.quick-easy .st10 {
  fill: url(#front-3_1_);
}

.zigzag-section{
  padding: 100px 0px;
}

.zigzag-bx-img svg{
  max-width: 492px;
}

.zigzag-bx-img.right{
  text-align: right;
}

.zigzag-bx-img.left{
  text-align: left;
}

.zigzag-bx{
  padding: 40px 0px;
}

.zigzag-bx-content.left{
  padding-right: 40px;
}

.zigzag-bx-content.right{
  padding-left: 40px;
}

.zigzag-bx-content h4{
  font-size: 35px;
  font-weight: 900;
  line-height: 52px;
}

.zigzag-bx-content p{
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.zigzag-bx-content .learn-btn , .accordion-body .btn-link, .support-bx .ticket-btn{
  display: flex;
  padding: 0;
  justify-content: start;
  align-items: center;
  transition: .3s;
  height: 42px;
  font-weight: 700;
  text-decoration: none;
}

.zigzag-bx-content .learn-btn span, .accordion-body .btn-link span, .support-bx .ticket-btn span{
  display: inline-block;
  position: relative;
  color: #144fc4;
  font-weight: 800;
  transition: .3s;
}

.accordion-body .btn-link span{
  color: #fff;
  font-weight: 600;
}

.zigzag-bx-content .learn-btn span::before, .accordion-body .btn-link span::before, .support-bx .ticket-btn span::before{
  position: absolute;
  opacity: 0;
  top: 4px;
  right: 0;
  transition: .3s;
  width: 18px;
  height: 18px;
  content: '';
  background-image: url(../images/arrow-right-blue.svg);
}

.accordion-body .btn-link span::before{
  background-image: url(../images/arrow-right-white.svg);
}

.zigzag-bx-content .learn-btn:hover span::before, .accordion-body .btn-link:hover span::before, .support-bx .ticket-btn:hover span::before{
  opacity: 1;
  right: -24px;
}

.search-box{
  position: relative;
  margin-bottom: 60px;
}

.search-box i{
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 28px;
  color: #ff7800;
}

.search-box .search-btn{
  background-color: #ff7800;
  color: #fff;
  max-width: 182px;
  width: 100%;
  border-radius: 6px;
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding: 13px 0px;
}

.search-box .form-control{
  height: 72px;
  font-size: 20px;
  padding:10px 200px 10px 25px;
  border-radius: 10px;
  border: 0;
}

.search-box-content ul{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}



.search-box-content ul li{
  display: inline-block;
  font-size: 22px;
  padding-right: 30px;
}

.search-box-content ul li b{
  color: #ff7800;
  margin-right: 12px;
  font-weight: 900;
}

.domain-box , .support-section{
  padding: 100px 0px;
}


.affordable-section{
  padding: 100px 0px;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
}

.affordable-section .section-header h3{
  color: #fff;
}

.affordable-section .section-header p{
  color: hsla(0,0%,100%,.7);
  font-weight: 300;
}

.affordable-sec-content .accordion-item{
  background-color: transparent;
    border: 1px solid #fff !important;
    border-radius: 10px !important;
    margin-bottom: 20px;
}

.affordable-sec-content .accordion-button:not(.collapsed), .affordable-sec-content .accordion-button{
  background-color: transparent;
  box-shadow: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.affordable-sec-content .accordion-button::after{
  width: 8px;
    height: 8px;
    margin-left: auto;
    content: "";
    background-color: #ff7800;
    border-radius: 100%;
    position: absolute;
    top: 23px;
    left: -4px;
    opacity: 0;
}

.affordable-sec-content .accordion-button:not(.collapsed)::after{
  opacity: 1;
  background-image: none;
  transform: rotate(0deg);
}

.affordable-sec-content .accordion-body p{
  color: #fff;
  font-size: 14px;
}

.testimonial-bx img{
  width:auto !important
}

.testimonial-bx{
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
.testimonial-carousel .owl-stage-outer{
  padding: 20px;
}

.testimonial-bx-header{
  display: flex;
  margin-bottom: 20px;
}
.client-profile {
  margin-right: 20px;
}
.client-profile img{
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
  object-position: 50% top;
}
.client-name h4{
  font-size: 20px;
  font-weight:600 ;
  margin-bottom: 10px;
}

.rating{
  display: flex;
}

.rating img{
  width: 130px !important;
  margin-bottom: 10px;
}

.testimonial-section{
  padding: 100px 0px;
}

.support-bx{
  padding: 40px 32px;
  box-shadow: 7px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.support-bx:hover{
  border-color: transparent;
  box-shadow: 0 16px 24px rgb(0 0 0 / 6%), 0 16px 24px rgb(0 0 0 / 6%), 0 16px 48px rgb(0 0 0 / 8%);
  transform: translate3d(0,-8px,0);
}

.svg-icon.cog .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}
.svg-icon.cog .st1 {
  fill: none;
  stroke: #144fc4;
}
.svg-icon.cog .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
}
.svg-icon.cog .st3,
.svg-icon.coin .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.coin .st0 {
  fill: #144fc4;
}
.svg-icon.coin .st1 {
  fill: none;
  stroke: #144fc4;
}
.svg-icon.coin .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
}
.svg-icon.coin .st3,
.svg-icon.control .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.control .st0 {
  fill: #144fc4;
}
.svg-icon.control .st1,
.svg-icon.control .st2 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.control .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
  stroke-dasharray: 4, 2;
}
.svg-icon.control .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.control .st4 {
  display: none;
}
.svg-icon.control .st5 {
  display: inline;
  opacity: 0.5;
}
.svg-icon.control .st6 {
  fill: none;
  stroke: red;
  stroke-width: 0.5;
}

.support-bx-icon{
  width: 56px;
  height: 56px;
  margin: 0px auto 30px;
}

.support-bx h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.support-bx p{
  font-size: 16px;
  margin: 0;
}
.bx-btn{
  margin-top: auto;
  padding: 16px 0 0;
}


.svg-icon.call .st0,
.svg-icon.cart .st0,
.svg-icon.chat .st0,
.svg-icon.help .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #99a5c2;
}
.svg-icon.call .st0 {
  fill: #144fc4;
}
.svg-icon.call .st1,
.svg-icon.call .st2 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.call .st2 {
  stroke: #ff7800;
  stroke-width: 2;
}
.svg-icon.call-chat .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}
.svg-icon.call-chat .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.call-chat .st2 {
  fill: #ff7800;
  stroke: #ff7800;
}
.svg-icon.email .st0 {
  fill: none;
  stroke: #ff7800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.email .st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}
.svg-icon.email .st2 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.support-bx .ticket-btn{
 
  border: 1px solid #0d3c9f;
  justify-content: center;
}

.support-bx .ticket-btn:hover{
  padding-right: 24px;
}

.support-section .section-header{
  text-align: left;
}

.footer{
  background-color: #000F57;;
  color: #fff;
}

.footer-top{
  padding:80px 0px;
}

.footer-bottom{
  padding: 10px 0px;
  background-color: #00175F;
}

.footer a{
  font-size: 14px;
  color: hsla(0,0%,100%,.7);
  padding: 2px 0;
  white-space: normal;
  line-height: 35px;
}

.social-icon{
  margin-bottom: 20px;
}

.social-icon ul li{
  display: inline-block;
  margin-right: 20px;
}

.footer-bx h4{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.social-icon ul li a{
  background-color: hsla(0,0%,100%,.7);
    height: 22px;
    min-width: 22px;
    color: #0c3aa3;
    border-radius: 4px;
    padding: 5px;
    display: flex;
    text-align: center;
    justify-content: center;
    transition: color .3s,background-color .3s;
}
.payment-img ul li{
  margin-right: 10px;
}
.footer-bottom ul li, .payment-img ul li{
  display: inline-block;
}
.footer-bottom ul li{
  margin-left: 15px;
}
.payment-img ul li img{
  width: 50px;
}

.footer-bottom p{
  margin: 0;
  font-size: 14px;
}

.footer-logo{
  height: 20px;
  margin-bottom:20px;
}

.inner-banner{
  position: relative;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
  padding: 220px 0 140px;
}

.banner-bg-img{
  position: absolute;
  left: 0;
  bottom: 0;
}

.banner-bg-img img{
  max-width: 100%;
}

.inner-banner-img img{
  width: 100%;
}

.inner-banner-content{
  position: relative;
  z-index: 1;
}

.inner-banner-content h3{
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2em;
  color: #fff;
}

.inner-banner-content p{
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
  color: #fff;
}

.inner-banner-content span{
  font-size: 16px;
  color: #fff;
}

.inner-banner-content p span{
  color: #ffe100;
}

.inner-banner-content ul{
  margin-bottom: 30px;
}

.inner-banner-content ul li i{
  margin-right: 10px;
}

.inner-banner-content ul li{
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #fff;
}

.wordpress-feature{
  margin-top: -330px;
  position: relative;
}

.wordpress-feature .section-header h3{
  color: #fff;
}

.wordpress-feat-img{
  margin-bottom: 20px;
}

.wordpress-feat-img img{
  width: 56px;
  height: 56px;
  border-radius: 100%;
}

.wordpress-feature-bx h4{
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2em;
}

.wordpress-feature-bx p{
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5em;
}

.wordpress-feature-bx{
  background-color: #FFFFFF;
  background-position: 93% 25px;
  background-repeat: no-repeat;
  box-shadow: 0px 12px 50px 0px rgb(125 125 125 / 10%);
  padding: 40px 30px 40px 30px;
  border-radius: 5px 5px 5px 5px;
  margin-bottom: 30px;
}

.manage-wordpress{
  padding-bottom: 100px;
}

.manage-wordpress .section-header h3{
  margin: 0;
  text-align: left;
}

.manage-wordpress .section-header p{
  margin: 0;
  text-align: left;
}

.wordpress-plan{
  padding: 100px 0px;
}

.customer-review{
  background: linear-gradient(278deg, #001DAC 16%, #000F57 98%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 0px 12px 0px 12px;
  --e-column-margin-right: 12px;
  --e-column-margin-left: 12px;
  padding: 80px 30px 80px 30px;
  border-radius: 5px;
  position: relative;
}

.customer-review .tire-img{
  position: absolute;
  top: 0;
  left: 0;
}

.customer-review .back-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/wordpress/wp_hosting_.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.customer-review .dot-img{
  position: absolute;
  width: 100px;
  top: 15%;
  left: 86%;
}

.customer-review h3{
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.2em;
  color: #fff;
  text-align: center;
  position: relative;
}

.customer-rev-header{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.customer-rev-header h4{
  font-size: 2.625em;
  font-weight: 500;
  line-height: 1.2em;
  color: #fff;
  margin: 0;
}

.customer-rev-icon{
  width: 56px;
  height: 56px;
  background: #3146AC;
  border-radius: 50%;
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
}

.customer-rev-icon::before{
  position: absolute;
  content: '';
  border-radius: 50%;
  opacity: 0.1;
  width: 80px;
  height: 80px;
  background: #FFFFFF;
}

.customer-rev-bx p{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
}

.plan-includes-bx{
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0px 12px 50px 0px rgb(125 125 125 / 10%);
  padding: 20px 20px 14px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.plan-includ-img{
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #0066FF0D;
  margin-right: 10px;
  color: #1C40F2;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-includes-bx h4{
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
}

.wordpress-signup{
  padding: 10px 0px;
}

.wordpress-signup .migration-bg-overlay{
  background-image: url(../images/wordpress/sh-hero-bg.png);
  background-position: bottom left;
}

.reseller-banner{
  position: relative;
  padding: 190px 0px 430px;
  background: linear-gradient(90deg, #0d3c9f 0, #040d70 100%);
  overflow: hidden;
}


/* .reseller-banner::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #001042;
  opacity: 0.9;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
} */

.reseller-banner .inner-banner-content h3{
  font-size: 54px;
}

.reseller-banner .inner-banner-content ul{
  margin-bottom: 40px;
}

.reseller-banner .inner-banner-content ul li{
  display: inline-block;
  padding: 0px 20px;
}

.banner-img{
  position: absolute;
}

/* .banner-img-01{
  top: 25%;
  left: 5%;
  z-index: 1;
}

.banner-img-01 img{
  height: 120px;
}

.banner-img-02{
  bottom: 20%;
  left: 10%;
  z-index: 1;
}

.banner-img-02 img{
  width: 100px;
}

.banner-img-03{
  top: 22%;
  right: 5%;
  z-index: 1;
}

.banner-img-03 img{
  width: 170px;
} */

.why-choose-us{
  padding: 100px 0px;
  position: relative;  
}

.why-choose-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.why-choose-bx{
  box-shadow: 2px 15px 20px 0px rgb(175 175 175 / 20%);
  padding: 40px 30px 40px 30px;
  border-radius: 10px;
  background-color: #FFFFFF;
  position: relative;
  margin-bottom: 30px;
}

.why-choose-bx p{
  font-size: 16px;
  margin: 0;
}

.why-choose-bx-header{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.why-choose-bx-header h4{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
}

.why-choose-bx-icon{
  margin-right: 20px;
}

.reseller-hosting-bx{
  box-shadow: 16px 33.8064px 67.6129px 0px rgb(91 94 247 / 6%);
  padding: 30px 15px 30px 15px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
}

.reseller-hosting-bx img{
  height: 50px;
  margin-bottom: 20px;
}

.reseller-hosting-bx h4{
  font-weight: 700;
  font-size: 18px;
}

.reseller-hosting-bx p{
  margin: 0;
  font-size: 16px;
}

.what-reseller-img img{
  width: 100%;
}

.what-reseller-content h4{
  font-size: 2.625rem;
  font-weight: 800;
}

.what-reseller-content p{
  font-size: 16px;
}

.what-reseller-content a{
  padding: 10px 20px;
  background: linear-gradient(95.45deg, #0082F8 0.64%, #1C40F2 98.23%);
}

.compare-table .table th{
  border: 1px solid rgba(244, 244, 244, 0.3);
  background: #000F57;
  color: #ffffff;
  padding: 24px 40px;
  vertical-align: middle;
}

.compare-table .table th h4{
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.5rem;
}

.compare-table .table{
  margin: 0;
}

.compare-table .table th h5{
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.compare-table .table th h3{
  color: #FFC700;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.compare-table .table th h3 sup{
  top: auto;
  bottom: 0;
  color: #fff;
}
.order-btn{
  padding: 7px 20px;
  background-color: #FF0766;
  color: #fff;
  font-size: 16px;
}
.order-btn:hover{
  color: #fff;
}

.compare-plan-table .accordion-button:not(.collapsed){
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: #000;
}

.compare-plan-table .accordion-flush .accordion-item .accordion-button{
  box-shadow:none;
  border:none;
  font-weight: 700;
  color: #001042;
}

.compare-plan-table .accordion-item{
  border: none;
}
.compare-plan-table .accordion-body{
  padding: 10px 0px;
}
.compare-plan-table .table td{
  border: 1px solid #C0D5FF;
  padding: 12px 24px;
  background: #F6F9FF;
}

.compare-plan-table .table td .color-red{
  color: #FF0766;
  font-weight: 700;
}

.compare-reseller{
  padding: 100px 0px;
}
.faq-section{
  padding: 100px 0px;
  position: relative;
  background-image: url(../images/faq-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  background-attachment: fixed;
}

.faq-section::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(90deg, rgba(1, 17, 90, 0.95) 0%, rgba(1, 29, 168, 0.9) 100%);
}

.faq-section .section-header h3{
  color:#fff;
}

.faq-bg-illustration{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}



.banner__illustration-left, .banner__illustration-right{
  position: absolute;
  left: -66px;
  width: 820px;
  height: 684px;
  bottom: -92px;
}

.banner__illustration-right{
  right: -66px;
  left: unset;
}

.faq-bg-illustration .banner__illustration-left, .faq-bg-illustration .banner__illustration-right{
  bottom: -222px;
}

.faq-accordian{
  position: relative;
  z-index: 1;
}

.accordion-button:focus{
  box-shadow: none;
}

.faq-accordian .accordion-item{
  background-color: transparent;
  border: none;
}

.faq-accordian .accordion-button:not(.collapsed), .faq-accordian .accordion-button{
  color: #fff;
  background-color: transparent;
  border-bottom: 1px solid rgb(255 255 255 / 52%);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.faq-accordian  .accordion-button::after{
  background-image: none;
  content: '\f067';
  font-family: "Font Awesome 5 Pro";
  color: #ff7800;
}

.faq-accordian  .accordion-button:not(.collapsed)::after{
  content: '\f068';
  transform: rotate(0deg);
}

.faq-accordian .accordion-body {
  padding: 1rem 1.25rem;
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
}


.inner-banner .faq-bg-illustration .banner__illustration-left, .inner-banner .faq-bg-illustration .banner__illustration-right{
  bottom: -130px;
}

.header-top{
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(230, 232, 236, .25);
}

.header-scrolled .header-top{
  display: none;
}

.header-top-content ul li{
  display: inline-block;
  margin-right: 20px;
}

.header-top-content ul li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
}

.header-top-content ul li a .count{
  position: absolute;
  background-color: #ff7800;
  color: #fff;
  height: 14px;
  padding: 2px 3px;
  border-radius: 100%;
  bottom: 4px;
  left: -7px;
  line-height: 11px;
  font-size: 11px;
}

.header-top-content ul li a img{
  width: 15px;
  margin-right: 10px;
}

.reseller-hosting-feature{
  padding: 100px 0px 0px;
}

.wordpress-compare{
  padding-top: 100px;
}
.wordpress-compare-content .table th{
  font-weight: 700;
}
.wordpress-compare-content .table th, .wordpress-compare-content .table td{
  padding:10px 20px;
  font-size: 16px;
}

.wordpress-compare-content .table tr:last-child th, .wordpress-compare-content .table tr:last-child td{
  border: none;
}

.wordpress-compare-content .table td .fa-check{
  color: #ff7800;
}

.table-price-bx h3{
  font-weight: 800;
  margin: 0px;
  font-size: 42px;
  white-space: nowrap;
}

.table-price-bx h3 sup{
  top: auto;
  bottom: 0;
}

.wordpress-steroids{
  padding: 100px 0px;
  margin-top: 100px;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
}

.wordpress-steroids-img img{
  width: 100%;
}

.wordpress-steroids-content h3{
  font-size: 40px;
  font-weight: 900;
  line-height: 52px;
  color: #fff;
}

.wordpress-steroids-content p{
  font-size: 18px;
  font-weight: 300;
  color: hsla(0,0%,100%,.7);
}

.wordpress-ster-list{
  display: flex;
}
.ster-list-icon{
  margin-right: 20px;
}
.ster-list-icon svg{
  width: 50px;
}

.ster-list-cont h4{
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}


.wordpress-feature .other-features{
  padding-top: 80px;
}

.domain-banner{
  padding: 200px 0px;
}

.domain-feature{
  margin-top: -130px;
}

.domain-feature .price-bx-footer a, .domain-benefit-bx .price-bx-footer a{
  color: #144fc4;
  background-color: transparent;
  border: 1px solid #144fc4;
  width: 200px;
  margin: 0px auto;
}

.domain-feature .price-bx-footer a span::before, .domain-benefit-bx .price-bx-footer a span:before{
  background-image: url(../images/arrow-right-blue.svg);
}

.domain-benefit-bx{
  padding: 32px;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid #e6e6eb;
  transition: all 0.3s ease-in-out;
}

.domain-benefit-bx:hover{
  box-shadow: 0 16px 24px rgb(0 0 0 / 6%), 0 16px 24px rgb(0 0 0 / 6%), 0 16px 48px rgb(0 0 0 / 8%);
  transform: translate3d(0,-8px,0);
}

.domain-benefit-bx img{
  width: 140px;
  margin-bottom: 20px;
}

.domain-benefit-bx h4{
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0;
}

.data-center-bx{
  background-color: #fff;
  padding: 24px 32px;
  border: 1px solid #e6e6eb;
  height: 100%;
}

.data-center-bx h3{
  font-weight: 700;
  color: #ff7800;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info{
  padding-top: 100px;
}

.data-center-bx h3 i{
  margin-right: 10px;
}

.data-center-bx ul li{
  line-height: 30px;
  font-size: 16px;
  color: #112240;
}

.data-center-bx ul li span{
  font-weight: 700;
}

.contact-info-bx{
  padding: 24px 32px;
  border: 1px solid #e6e6eb;
  background-color: #fff;
  height: 100%;
}

.contact-info-bx svg{
  width: 50px;
  margin-bottom: 20px;
}

.contact-info-bx h4{
  font-size: 18px;
  font-weight: 800;
}

.contact-info-bx ul li{
  line-height: 30px;
  font-size: 16px;
  color: #112240;
}

.contact-info-bx ul li span{
  font-weight: 700;
  color: #144fc4;
}

.get-in-touch{
  margin-top: -110px;
  position: relative;
}

.contact-form{
  padding: 30px 40px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: #fff;
}

.domain-benefit{
  padding-top: 100px;
}

.contact-form label{
  font-weight: 700;
  color: #444;
}
.support-section .section-header{
  margin: 0;
}
.support-section .section-header h3{
  margin: 0;
}

.money-back-bx{
  padding: 40px;
  background-color: #fff;
  box-shadow: 6px 7px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  text-align: center;
}


.money-back-bx h4{
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: 0.03em;
  color: #000;
}

.money-back-bx p{
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
}

.money-back-bx ul li{
  display: inline-block;
  padding: 0px 10px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #000;
  position: relative;
}

.money-back-bx ul li img{
  width: 30px;
  margin-right: 10px;
}

.money-back-bx .curve-img{
  position: absolute;
  width: 150px;
}

.money-back-bx .curve-img-01{
  top: 0;
  left: 0;
}

.money-back-bx .curve-img-02{
  bottom: 0;
  right: 0;
}

.affordable-img{
  text-align: center;
}

.affordable-img img{
  max-width: 100%;
}

.reason-for-choose h3{
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.03em;
  margin-bottom: 35px;
}

.reason-for-choose ul li{
  position: relative;
  padding: 0px 20px 0px 80px;
}

.reason-for-choose ul li span{
  position: absolute;
  top: 0;
  left: 0;
}

.reason-for-choose ul li span img{
  width: 40px;
}

.reason-for-choose ul li span::after{
  position: absolute;
  top: 100%;
  height: 73px;
  width: 2px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}

.reason-for-choose ul li:last-child span::after{
  display: none;
}

.reason-for-choose ul li h4{
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 10px;
}

.reason-for-choose ul li p{
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
}

.domain-box{
  padding: 50px 0px;
  background-color: #fff;
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.domain-box-content{
  margin-top: -100px;
}

.support-bx img{
  width: 60px;
  margin:0px auto 20px;
}

.testimonial-bx-content p{
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.03em;
}

.testimonial-bx-content a{
  font-size: 16px;
  font-weight: 600;
  color: #144FC4;
}

.testimonial-bx-content h5{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.zigzag-bx-img img{
  width: 100%;
}

/*--------------------------------------------------------------
# Legal Content Pages
--------------------------------------------------------------*/

.legal-content {
  padding: 20px 0 40px;
}

.legal-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #112240;
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #112240;
  margin-top: 25px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #536080;
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-content ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #536080;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #144FC4;
  border-radius: 50%;
}

.legal-content a {
  color: #144FC4;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #FF7800;
}

.legal-content .last-updated {
  font-style: italic;
  color: #8a94a6;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e2e7f1;
}

/*--------------------------------------------------------------
# Modern Enhancements - SmartViewServer
--------------------------------------------------------------*/

/* Logo size fix */
.header .logo img {
  height: 40px;
  margin: 4px 0px;
}

.header .logo .logo-01 {
  filter: brightness(0) invert(1);
}

.header-scrolled .logo .logo-01 {
  filter: none;
}

.footer-logo {
  height: 40px !important;
  max-height: 40px;
  filter: brightness(0) invert(1);
}

/* Banner Badge */
.banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

/* Banner Stats */
.banner-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.stat-item svg {
  flex-shrink: 0;
}

/* Outline Button */
.btn-outline-main {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  margin-left: 15px;
}

.btn-outline-main:hover {
  background-color: #fff;
  color: #144FC4;
  border-color: #fff;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  color: #144FC4;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.affordable-section .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #FF7800;
}

.reason-for-choose .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #FF7800;
}

/* Clients Section */
.clients-section {
  padding: 40px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e7f1;
}

.clients-bar {
  text-align: center;
}

.clients-bar p {
  font-size: 14px;
  color: #8a94a6;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Feature Cards */
.feature-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e7f1;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  border-color: #144FC4;
  box-shadow: 0 12px 40px rgba(20, 79, 196, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #112240;
}

.feature-card p {
  font-size: 15px;
  color: #536080;
  line-height: 1.7;
  margin: 0;
}

/* How It Works */
.how-it-works {
  background: #f8fafc;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(20, 79, 196, 0.06);
  line-height: 1;
}

.step-icon {
  margin-bottom: 24px;
}

.step-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: #536080;
  line-height: 1.7;
}

/* Check List */
.check-list {
  margin-bottom: 30px;
}

.check-list li {
  font-size: 16px;
  color: #536080;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li i {
  color: #10B981;
  font-size: 18px;
  flex-shrink: 0;
}

/* OS Cards */
.os-section {
  background: #f8fafc;
}

.os-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e7f1;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.os-card:hover {
  border-color: #144FC4;
  box-shadow: 0 8px 24px rgba(20, 79, 196, 0.1);
  transform: translateY(-4px);
}

.os-card svg {
  margin-bottom: 12px;
}

.os-card p {
  font-size: 15px;
  font-weight: 700;
  color: #112240;
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  background: #f8fafc;
}

/* Header Scroll Improvements */
.header-scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-scrolled .header-top {
  border-bottom: 1px solid #e2e7f1;
}

.header-top-content ul li {
  display: inline-block;
}

.header-top-content ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 0 12px;
  transition: color 0.3s;
}

.header-top-content ul li a i {
  margin-right: 5px;
}

.header-top-content ul li a:hover {
  color: #FF7800;
}

.header-scrolled .header-top-content ul li a {
  color: #536080;
}

/* Enhanced Price Box */
.price-box {
  border: 1px solid #e2e7f1;
}

.price-box:hover {
  border-color: #144FC4;
}

/* Reason section enhancements */
.reason-for-choose h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 40px;
}

.reason-for-choose ul li h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.reason-for-choose ul li p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

/* Money back box */
.money-back-bx {
  background: linear-gradient(135deg, #144FC4, #0A00E9);
  padding: 50px 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.money-back-bx h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.money-back-bx p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.money-back-bx ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.money-back-bx ul li {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.money-back-bx ul li img {
  width: 24px;
}

.curve-img {
  position: absolute;
  opacity: 0.1;
}

.curve-img-01 {
  top: -20px;
  left: -20px;
  width: 200px;
}

.curve-img-02 {
  bottom: -20px;
  right: -20px;
  width: 200px;
}

/* FAQ enhancements */
.faq-section {
  padding: 100px 0px;
  background: #f8fafc;
}

.faq-accordian .accordion-item {
  border: 1px solid #e2e7f1 !important;
  border-radius: 8px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff !important;
}

.faq-accordian .accordion-button {
  font-weight: 700;
  font-size: 17px;
  color: #112240 !important;
  padding: 20px 24px;
  background: #fff !important;
  box-shadow: none !important;
}

.faq-accordian .accordion-button:not(.collapsed) {
  background: #EEF2FF !important;
  color: #144FC4 !important;
}

.faq-accordian .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23112240'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  width: 1.1rem;
  height: 1.1rem;
}

.faq-accordian .accordion-body {
  font-size: 15px;
  line-height: 1.8;
  color: #536080 !important;
  padding: 0 24px 20px;
  background: #fff !important;
}

.faq-accordian .accordion-body a {
  color: #144FC4;
  font-weight: 600;
}

/* Support section */
.support-section {
  background: #f8fafc;
  padding: 100px 0px;
}

.support-bx {
  background: #fff;
  border: 1px solid #e2e7f1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.support-bx:hover {
  background: #fff;
  border-color: #144FC4;
  box-shadow: 0 12px 40px rgba(20, 79, 196, 0.12);
  transform: translate3d(0,-6px,0);
}

.support-bx h3 {
  color: #112240;
  font-size: 22px;
  font-weight: 800;
  margin: 16px 0 12px;
}

.support-bx p {
  color: #536080;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.support-bx img {
  width: 48px;
  height: 48px;
}

/* Dark support section - homepage only */
.support-section-dark {
  background: linear-gradient(135deg, #0A00E9, #001DAC);
}

.support-section-dark .support-bx {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.support-section-dark .support-bx:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.support-section-dark .support-bx h3 {
  color: #fff;
}

.support-section-dark .support-bx p {
  color: rgba(255, 255, 255, 0.75);
}

/* Footer improvements */
.footer {
  background: #0a0f2c;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-bx h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-bx p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bx ul li {
  margin-bottom: 10px;
}

.footer-bx ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s;
}

.footer-bx ul li a:hover {
  color: #FF7800;
  padding-left: 4px;
}

.social-icon {
  margin: 24px 0;
}

.social-icon ul li {
  display: inline-block;
  margin-right: 10px;
}

.social-icon ul li a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s;
}

.social-icon ul li a:hover {
  background: #FF7800;
  transform: translateY(-3px);
}

.payment-img ul li {
  display: inline-block;
  margin-right: 8px;
}

.payment-img ul li img {
  height: 28px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.payment-img ul li img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.footer-bottom ul li {
  display: inline-block;
  margin-left: 20px;
}

.footer-bottom ul li a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom ul li a:hover {
  color: #FF7800;
}

/* Inner Banner Enhancement */
.inner-banner {
  background: linear-gradient(90deg, #0A00E9 0%, #00165B 100%);
  padding: 180px 0px 80px;
}

.inner-banner-content h3 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.inner-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}

.inner-banner-content .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Data center boxes */
.data-center {
  padding: 100px 0;
}

.data-center-bx {
  padding: 32px;
  border: 1px solid #e2e7f1;
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.data-center-bx:hover {
  border-color: #144FC4;
  box-shadow: 0 12px 40px rgba(20, 79, 196, 0.1);
}

.data-center-bx h3 {
  font-size: 18px;
  font-weight: 800;
  color: #144FC4;
  margin-bottom: 20px;
}

.data-center-bx h3 i {
  color: #FF7800;
  margin-right: 8px;
}

.data-center-bx ul li {
  font-size: 14px;
  color: #536080;
  padding: 6px 0;
  border-bottom: 1px solid #f0f2f5;
  display: flex;
  justify-content: space-between;
}

.data-center-bx ul li span {
  font-weight: 700;
  color: #112240;
}

/* Contact Info boxes */
.contact-info {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-info-bx {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e7f1;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.contact-info-bx:hover {
  border-color: #144FC4;
  box-shadow: 0 12px 40px rgba(20, 79, 196, 0.1);
  transform: translateY(-4px);
}

.contact-info-bx svg {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.contact-info-bx h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info-bx ul li {
  font-size: 14px;
  color: #536080;
  margin-bottom: 8px;
}

.contact-info-bx ul li span {
  font-weight: 600;
  color: #112240;
}

.contact-info-bx ul li a {
  color: #144FC4;
  font-weight: 600;
}

/* About Feature boxes */
.about-feature-bx {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border: 1px solid #e2e7f1;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s;
}

.about-feature-bx:hover {
  border-color: #144FC4;
  box-shadow: 0 12px 40px rgba(20, 79, 196, 0.1);
  transform: translateY(-4px);
}

.about-feature-bx img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.about-feature-bx h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-feature-bx p {
  font-size: 15px;
  color: #536080;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Comparison Table
--------------------------------------------------------------*/
.comparison-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e7f1;
}

.comparison-table table {
  width: 100%;
  margin: 0;
}

.comparison-table thead th {
  background: #144FC4;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 16px;
  text-align: center;
  border: none;
}

.comparison-table thead th:first-child {
  text-align: left;
  background: #0d3c9f;
}

.comparison-table thead th.popular {
  background: #FF7800;
}

.comparison-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #536080;
  text-align: center;
  border-bottom: 1px solid #f0f2f5;
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: #112240;
}

.comparison-table tbody tr:hover {
  background: #f8fafc;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .check {
  color: #10B981;
  font-size: 18px;
}

.comparison-table .dash {
  color: #ccc;
}

.comparison-table .price-row td {
  font-weight: 800;
  font-size: 18px;
  color: #144FC4;
  padding: 20px 16px;
  background: #f8fafc;
}

/*--------------------------------------------------------------
# Stats Counter
--------------------------------------------------------------*/
.stats-section {
  padding: 80px 0;
  background: #f8fafc;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
}

.stat-box .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #144FC4;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #536080;
}

/*--------------------------------------------------------------
# Additional Fixes
--------------------------------------------------------------*/

/* Ensure inner-banner span text is white */
.inner-banner-content span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Fix zigzag section on white backgrounds */
.zigzag-section {
  background: #fff;
}

/* Ensure price boxes have white bg */
.price-box {
  background: #fff !important;
}

/* Ensure all section headers have proper dark text */
.section-header h3 {
  color: #112240;
}

.section-header p {
  color: #536080;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/

/* Contact Cards */
.contact-card {
  background: #fff;
  border: 1px solid #e2e7f1;
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.contact-card:hover {
  border-color: #144FC4;
  box-shadow: 0 12px 40px rgba(20, 79, 196, 0.1);
  transform: translateY(-4px);
}

.contact-card-icon {
  margin-bottom: 20px;
}

.contact-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: #112240;
  margin-bottom: 10px;
}

.contact-card > p {
  font-size: 14px;
  color: #8a94a6;
  margin-bottom: 20px;
}

.contact-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 14px;
}

.contact-card ul li:last-child {
  border-bottom: none;
}

.contact-card ul li strong {
  color: #112240;
  font-weight: 700;
}

.contact-card ul li a,
.contact-card ul li span {
  color: #144FC4;
  font-weight: 600;
}

.contact-card ul li a:hover {
  color: #FF7800;
}

/* Contact Card Buttons */
.contact-card-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #144FC4;
  background: #EEF2FF;
  border: 1px solid #dde4f0;
  transition: all 0.3s;
  text-align: center;
}

.contact-btn:hover {
  background: #144FC4;
  color: #fff;
  border-color: #144FC4;
}

.contact-btn.btn-highlight {
  background: #FF7800;
  color: #fff;
  border-color: #FF7800;
}

.contact-btn.btn-highlight:hover {
  background: #e56c00;
  border-color: #e56c00;
}

/* Action Cards */
.action-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e7f1;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  text-decoration: none;
}

.action-card:hover {
  border-color: #144FC4;
  box-shadow: 0 12px 40px rgba(20, 79, 196, 0.1);
  transform: translateY(-4px);
  text-decoration: none;
}

.action-icon {
  margin-bottom: 16px;
}

.action-card h5 {
  font-size: 18px;
  font-weight: 800;
  color: #112240;
  margin-bottom: 8px;
}

.action-card p {
  font-size: 14px;
  color: #536080;
  line-height: 1.6;
  margin-bottom: 16px;
}

.action-link {
  font-size: 14px;
  font-weight: 700;
  color: #144FC4;
  transition: color 0.3s;
}

.action-link i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.action-card:hover .action-link {
  color: #FF7800;
}

.action-card:hover .action-link i {
  transform: translateX(4px);
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #0A00E9, #001DAC);
  padding: 100px 0;
}

.contact-form-info h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-form-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-list li i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #FF7800;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-list li strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-list li span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Contact Form Box */
.contact-form-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.contact-form-box .form-group {
  margin-bottom: 20px;
}

.contact-form-box label {
  font-size: 14px;
  font-weight: 700;
  color: #112240;
  margin-bottom: 6px;
  display: block;
}

.contact-form-box .form-control {
  height: 48px;
  border: 1px solid #e2e7f1;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 16px;
  color: #112240;
  transition: border-color 0.3s;
}

.contact-form-box textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.contact-form-box .form-control:focus {
  border-color: #144FC4;
  box-shadow: 0 0 0 3px rgba(20, 79, 196, 0.1);
}

.contact-form-box select.form-control {
  appearance: auto;
}

.contact-form-box .main-btn {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 14px 30px;
}