/* @import url(''); */


:root {
  --theme-color: #000000;
  --theme-color-second:#041d56;
  --theme-color-third: #0f2473;

  --heading-font:  "Archivo", sans-serif;
  --paragraph-font: "Archivo", sans-serif;
  --span-font: 'spanist';

--shadow-small: 0 2px 6px rgba(0, 0, 0, 0.15);
  --shadow-base: 0 6px 16px rgba(0, 0, 0, 0.2);
  --shadow-large: 0 14px 30px rgba(0, 0, 0, 0.25);

  --gap: 2.5rem;
  --size: 120px;
  --duration: 25s;
  --scroll-start: 0%;
  --scroll-end: -100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #000413;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Archivo", sans-serif;
  /* color: var(--theme-color) !important; */
}

.mobile-header{
  display: none;
}

.header-info {
    display: flex;
    flex-direction: row;
    gap: 11px;
    flex-wrap: wrap;
}
a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.li {
  display: inline-block;
  padding: 0px 5px;
}

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

h1 {
    font-size: 45px;
}
h2 {
  font-size: 40px;
}

h3 {}

h4{}

h5{}

h6{}


.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}

/* navbar----------- */


@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}
.desktop-logo img {
    width: 196px;
}

.desktop-header-menu li a {
    color: #000000;
    font-size: 16px;
    text-transform: capitalize;
    padding: 29px 19px;
    display: inline-block;
    font-weight: 500;
}

.desktop-header-menu li a:hover {
    color: var(--theme-color-second);
}

.navbar li:hover a {
    color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar li .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar li:hover .dropdown-menu {
        transition: 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

ul.submenu-2 li a:hover {
    color: #fff !important;
    background: var(--theme-color-second);
}

#desktop-header ul.submenu-2 li:last-child {
    border-bottom: 0px;
}

#desktop-header ul.submenu-2 li {
    border-bottom: 1px solid #c1c0bd;
    margin: 0;
}

ul.submenu-2 li a {
    color: #000 !important;
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 11px 12px;
}

ul.submenu-2 {
    border: none;
    background: #fff;
    padding: 0;
    min-width: inherit;
    width: 200px;
    border-radius: 0;
}

.has-submenu-2 i {
    top: -9px !important;
}

.has-submenu-2 {
    position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}
a.btn-dark{
  background-color: #1e1e1e;
}


.mail_banner p span{
  color: var(--theme-color-second);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

.mail_banner h1 i{
  color: #0f2473;
}

.mail_choose_sec h2{
  color: var(--theme-color-second);
}

.mail_choose_sec p span{
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

.mail_choose_sec  .card {
  background-color: #ade0fb;
}

.mail_choose_sec  .card i{
  color: var(--theme-color-second);
  font-size: 25px;
  margin-bottom: 10px;
}

.mail_choose_sec  .card p{
  margin-bottom: 0;
}

.mail_choose_sec  .card h4{
  color: var(--theme-color-second);
}

/* Wrapper */
.wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;


}

/* Marquee container */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  position: relative;
}

/* Marquee animation group */
.marquee_group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
    justify-content: space-around;
}
/* Reverse direction */
.marquee-reverse .marquee_group {
  animation-direction: reverse;
  animation-delay: -4s;
}

/* Animation */
@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

/* Icon base */
.marquee .fa {
    font-size: 56px;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    color: #ade0fb;
    background: linear-gradient(
    135deg,
    var(--theme-color-second),
    var(--theme-color-third)
  );
    border-radius: 14px;
    box-shadow: var(--shadow-base);
    transition: all 0.3s ease;
}

/* Hover effect */


.featured_design .card h5{
  font-family: var(--paragraph-font);
  font-weight: 600;
  color: #041d56;
}


/* pricing */

.main-head {
  background: var(--theme-color);
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
  padding: 1rem;
  margin-bottom: 0;
  margin-top: 5rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
}

/* Card */
.pricing-table {
  background: #fff;
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
  padding: 2rem;
  border-radius: 4px;
  transition: .3s;
}

.pricing-table:hover {
  box-shadow: 0px 1px 10px -4px rgba(0, 0, 0, .25);
}

.pricing-table .pricing-label {
    border-radius: 2px;
    padding: .25rem .5rem;
    margin: 0 auto;
    margin-bottom: 1rem;
    display: block;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 57, 75, 0.15);
    color: var(--theme-color-second);
    text-align: center;
}

/* Headings */
.pricing-table h2 {
  color: var(--theme-color);
  font-size: 24px;
  font-weight: 500;
}

.pricing-table h5 {
    color: rgba(0, 0, 0, 0.55);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
}

/* Features */
.pricing-table .pricing-features {
  margin-top: 2rem;
}

.pricing-table .pricing-features .feature {
  font-size: 14px;
  margin: .5rem 0;
  color: rgba(0, 0, 0, 0.55);
}

.pricing-table .pricing-features .feature span {
  float: right;
  color: var(--theme-color);
  font-weight: 500;
}

/* Price */
.pricing_sec .pricing-table {
	border:1px solid #666;
}
.pricing_sec .pricing-table .price-tag {
    margin-top: 0px;
    text-align: center;
    font-weight: 500;
    color: var(--theme-color-second);
    margin-bottom: 1rem;
	
}
.pricing_sec .pricing-table .price-tag .symbol {
  font-size: 24px;
}

.pricing_sec .pricing-table .price-tag .amount {
  letter-spacing: -2px;
  font-size: 64px;
}

.pricing_sec .pricing-table .price-tag .after {
  color: var(--theme-color);
  font-weight: 500;
}

/* Button */
.pricing_sec .pricing-table .price-button {
  display: block;
  color: #fff;
  margin-top: 2rem;
  padding: .75rem;
  border-radius: 2px;
  text-align: center;
  font-weight: 500;
  background: linear-gradient(
    135deg,
    var(--theme-color-second),
    var(--theme-color-third)
  );
  transition: .3s;
}

.pricing_sec .pricing-table .price-button:hover {
  text-decoration: none;
  background: linear-gradient(
    135deg,
    var(--theme-color-third),
    var(--theme-color-second)
  );
}

/* Theme Variants */
.pricing_sec .purple,
.pricing_sec .turquoise,
.pricing_sec .red {
  --accent: var(--theme-color-second);
}

.pricing_sec .purple .pricing-label,
.pricing_sec .turquoise .pricing-label,
.pricing_sec .red .pricing-label {
  background: rgba(255, 57, 75, 0.15);
  color: var(--accent);
}

.pricing_sec .purple .price-tag,
.pricing_sec .turquoise .price-tag,
.pricing_sec .red .price-tag {
  color: var(--accent);
}

.pricing_sec .purple .price-button,
.pricing_sec .turquoise .price-button,
.pricing_sec .red .price-button {
  background: var(--accent);
}

.pricing_sec .purple .price-button:hover,
.pricing_sec .turquoise .price-button:hover,
.pricing_sec .red .price-button:hover {
  background: var(--theme-color-third);
}


.faq_sec .accordion-item{
  margin-bottom: 10px;
  border: 1px solid var(--theme-color-second)!important;
  border-radius: 0px!important;
}
.faq_sec .accordion-button{
  background-color: #fff!important;
  box-shadow: none!important;
  color: #041d56!important;
  font-family: var(--paragraph-font);
}

.footer {
  color: #fff;
}

.footer .list-item{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: 15px 20px;
  margin-bottom: 28px;
}
.footer  li a{
  color: #c1c0bd;
}

.footer .social{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 28px;
}

.enquries .map{
  line-height: 0;
}

.enquries .map iframe{
  width: 100%;
  height: 225px;
}

.privacy h1{
  font-size: 50px;
}

.privacy h2{
  font-size: 40px;
}
.privacy h3{
  font-size: 30px;
}

.privacy h4 {
  font-size: 25px;
}
.privacy h5{
  font-size: 20px;
}
.privacy  p{
  font-size: 20px;
}

.privacy  ul {
  padding-left: 20px;
  list-style: disc;
}

.privacy  ul li{
  margin-bottom: 10px;
}
.nav-tabs {
  border: none!important;
}
.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: lightgrey;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #000;
    width: 201px;
    border-radius: 0!important;
}

.nav-tabs .nav-link.active{
  background-color: #041d56;
  color: #fff!important;
}
/* =========================
   BANNER HERO
========================= */
.banner_hero {
  padding: 100px 0 60px;
  text-align: center;
}

.banner_hero h1 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.banner_hero h1 span {
  color: var(--theme-color-third);
}

.banner_hero p {
  color: var(--text-color);
  max-width: 700px;
  margin: 20px auto;
}

/* TAGS */
.tags {
  margin-top: 25px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  margin: 5px;
  border-radius: 20px;
  background: var(--tag-bg);
  font-size: 13px;
  color: var(--theme-color-second);
}

/* =========================
   BLOG SECTION
========================= */
.blog_section {
  padding: 40px 0 80px;
}

/* CARD */
.blog_card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.3s;
  box-shadow: var(--shadow-small);
}

.blog_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-base);
}

/* IMAGE */
.blog_img {
    height: auto;
    background: #ddd;
    background-size: cover;
    background-position: center;
    margin-bottom: 17px;
}
.blog_img  img{
	width:100%!important;
	height:100%!important;
}
h2.entry-title a {
    font-size: 19px;
    color: #000;
}
h2.entry-title {
    font-size: initial;
}

/* CONTENT */
.blog_content {
  padding: 20px;
}

.blog_content h5 {
  font-weight: 600;
  font-family: var(--heading-font);
}

.blog_content p {
  font-size: 14px;
  color: var(--text-color);
}

/* META */
.meta {
  font-size: 12px;
  color: var(--text-color);
  margin-bottom: 10px;
}

/* BUTTON */
.read_btn {
  font-size: 13px;
  color: var(--theme-color-third);
  text-decoration: none;
  font-weight: 500;
}

/* SIDEBAR */
.sidebar_box {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-small);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .banner_hero h1 {
    font-size: 30px;
  }
}


.blog_section {
  padding: 60px 0;
  background: #f8f9fb;
}

/* TITLE */
.post_title {
  font-size: 40px;
  font-weight: 700;
  max-width: 800px;
  margin: auto;
}

/* IMAGE */
.featured_img img {
  border-radius: 15px;
}

/* CONTENT */
.blog_content p {
  color: #6c757d;
  line-height: 1.8;
}

.blog_content ul {
  padding-left: 18px;
}

/* SHARE ICONS */
.share_icons {
  position: absolute;
  left: -60px;
  top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share_icons a {
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

/* QUOTE */
.quote_box {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #ff4d4d;
  margin: 30px 0;
  border-radius: 10px;
}

/* SIDEBAR */
.sidebar_box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* AUTHOR */
.author_box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

/* COMMENT */
.comment_box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

/* RELATED */
.related_card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}

/* MOBILE FIX */
@media(max-width:992px){
  .share_icons {
    display: none;
  }
}
.list-unstyled {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.list-unstyled li , .list-unstyled li a{
  display: inline-block;
  padding: 8px 28px;
  border-radius: 600px;
  background-color: #ececec;
}
.faq_sec{
    padding:80px 0;
    background:#f8fafc;
}

.faq_sec .heading h2{
    font-size:34px;
    margin-bottom:10px;
}

.faq_sec .heading p{
    color:#666;
    margin-bottom:25px;
}

/* Search */
.faq_sec .search-container{
    max-width:600px;
    margin:auto;
}

.faq_sec .search-box{
    background:#fff;
    border-radius:50px;
    padding:14px 20px;
    display:flex;
    align-items:center;
    box-shadow:var(--shadow-small);
}

.faq_sec .search-box i{
    font-size:18px;
    color:#777;
}

.faq_sec .search-box input{
    border:none;
    outline:none;
    width:100%;
    padding:0 10px;
    background:transparent;
}

.faq_sec .clear-search{
    border:none;
    background:none;
    display:none;
    cursor:pointer;
}

.faq_sec .clear-search.visible{
    display:block;
}

/* Filter */
.faq_sec .category-filter{
    margin-top:25px;
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
}

.faq_sec .category-btn{
    border:none;
    padding:10px 18px;
    border-radius:30px;
    background:#e9ecef;
    cursor:pointer;
    transition:.3s;
}

.faq_sec .category-btn.active{
    background:var(--theme-color-third);
    color:#fff;
}

/* FAQ */
.faq_sec .faq_wrap{
    margin-top:40px;
}

.faq_sec .faq-category{
    margin-bottom:20px;
}

.faq_sec .faq_item{
    background:#fff;
    margin-bottom:18px;
    border-radius:10px;
    box-shadow:var(--shadow-small);
    border-left:4px solid transparent;
    overflow:hidden;
    transition:.3s;
}

.faq_sec .faq_item:hover{
    transform:translateY(-3px);
    border-left:4px solid var(--theme-color-third);
}

.faq_sec .faq_question{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq_sec .faq_question h4{
    font-size:18px;
    margin:0;
}

.faq_sec .faq_question span{
    font-size:22px;
    transition:.3s;
}

.faq_sec .faq_item.active .faq_question span{
    transform:rotate(45deg);
}

.faq_sec .faq_answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
    padding:0 25px;
}

.faq_sec .faq_item.active .faq_answer{
    max-height:300px;
    padding:0 25px 20px;
}

.faq_sec .faq_answer p{
    font-size:15px;
    color:#555;
    line-height:1.7;
    margin:0;
}

.navigation.pagination {
    text-align: center;
    margin: 0px 0;
    justify-content: center;
}

.navigation .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Hover effect */
.navigation .page-numbers:hover {
  background: var(--theme-color-third);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}

/* Active page */
.page-numbers.current {
  background: var(--theme-color-third);
  color: #fff;
  font-weight: 600;
  cursor: default;
  box-shadow: var(--shadow-base);
}

/* Next button special style */
.navigation .page-numbers.next {
  padding: 0 18px;
}

/* SVG icon alignment */
.navigation .page-numbers svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Accessibility hidden text */
.navigation .screen-reader-text {
  position: absolute;
  left: -9999px;
}


/* BLOG SECTION WRAPPER */
.blog_section {
  background: #f9fbff;
  padding: 40px 0;
}

/* COMMENT BOX */
.blog_section .comment_box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-small);
}

/* COMMENTS AREA */
.blog_section .comments-area {
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.blog_section .comment-reply-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* TEXTAREA */
.blog_section .comment-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 15px;
  resize: none;
  transition: 0.3s;
  outline: none;
}

/* FOCUS */
.blog_section .comment-form textarea:focus {
  border-color: var(--theme-color-third);
  box-shadow: 0 0 0 3px rgba(15, 36, 115, 0.1);
}

/* BUTTON */
.blog_section .comment-form .submit {
  background: var(--theme-color-third);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.blog_section .comment-form .submit:hover {
  background: var(--theme-color-second);
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}

/* LOGGED IN TEXT */
.blog_section .logged-in-as {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.blog_section .logged-in-as a {
  color: var(--theme-color-third);
  text-decoration: none;
}

/* REQUIRED */
.blog_section .required {
  color: red;
}

/* POST NAVIGATION */
.blog_section .post-navigation {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* NAV FLEX */
.blog_section .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* NAV CARD */
.blog_section .post-navigation a {
  flex: 1;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  box-shadow: var(--shadow-small);
  transition: 0.3s;
  display: block;
}

.blog_section .post-navigation a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-base);
}

/* TEXT */
.blog_section .nav-subtitle {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.blog_section .nav-title {
  font-size: 16px;
  font-weight: 600;
}

/* ICON */
.blog_section .nav-title svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

/* MOBILE */
@media (max-width: 576px) {
  .blog_section .post-navigation .nav-links {
    flex-direction: column;
  }
}


/* AUTHOR BOX */
.blog_section .author_box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-small);
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* HOVER EFFECT */
.blog_section .author_box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-base);
  border-color: var(--theme-color-third);
}

/* AUTHOR IMAGE */
.blog_section .author_box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1f3f8;
  transition: 0.3s;
}

/* IMAGE HOVER */
.blog_section .author_box:hover img {
  border-color: var(--theme-color-third);
}

/* AUTHOR NAME */
.blog_section .author_box h6 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #111;
  transition: 0.3s;
}

/* NAME LINK */
.blog_section .author_box a {
  text-decoration: none;
}

/* NAME HOVER */
.blog_section .author_box a:hover h6 {
  color: var(--theme-color-third);
}

/* BIO TEXT */
.blog_section .author_box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 576px) {
  .blog_section .author_box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .blog_section .author_box img {
    margin-bottom: 10px;
  }
}

/* BLOG CONTENT WRAPPER */
.blog_section .blog_content {
 
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-small);
  line-height: 1.8;
  color: #333;
}

/* PARAGRAPH */
.blog_section .blog_content p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #555;
}

/* HEADINGS */
.blog_section .blog_content h2 {
  font-size: 26px;
  margin: 30px 0 12px;
  font-weight: 700;
  color: #111;
  position: relative;
  padding-left: 12px;
}

/* LEFT BORDER ACCENT */
.blog_section .blog_content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 70%;
  background: var(--theme-color-third);
  border-radius: 2px;
}

/* STRONG TEXT */
.blog_section .blog_content strong {
  color: #000;
}

/* LINKS */
.blog_section .blog_content a {
  color: var(--theme-color-third);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: 0.3s;
}

.blog_section .blog_content a:hover {
  border-color: var(--theme-color-third);
}

/* SPACING FIX FOR EMPTY P */
.blog_section .blog_content p:empty {
  display: none;
}

/* FEATURED IMAGE WRAPPER */
.blog_section .featured_img {
 
  margin: 0 auto 40px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-base);
  position: relative;
}

/* IMAGE */
.blog_section .featured_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 14px;
}

/* HOVER ZOOM EFFECT */
.blog_section .featured_img:hover img {
  transform: scale(1.05);
}

/* HEADING */
.mail_choose_sec .heading span {
  color: var(--theme-color-third);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.mail_choose_sec .heading h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

/* CARD */
.mail_choose_sec .card {
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-small);
  transition: all 0.35s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.mail_choose_sec .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-third);
}

/* ICON */
.mail_choose_sec .card i {
  font-size: 32px;
  color: var(--theme-color-third);
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.3s;
}


/* TITLE */
.mail_choose_sec .card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXT */
.mail_choose_sec .card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* SUBTLE TOP BORDER ANIMATION */
.mail_choose_sec .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--theme-color-third);
  transition: 0.4s;
}

.mail_choose_sec .card:hover::before {
  width: 100%;
}

.pricing_sec .purple,
.pricing_sec .turquoise,
.pricing_sec .red {
  --accent: var(--theme-color-second);
  box-shadow: var(--shadow-base);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing_sec .purple:hover,
.pricing_sec .turquoise:hover,
.pricing_sec .red:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
}
.form-logo-marquee {
    background: #f8f9fa;
    overflow: hidden;
}

.logo-wrapper img{
	width:100%;
	height:150px;
	object-fit:contain;
}
.logo-wrapper h2{
	color: var(--theme-color-second);
}

.pricing-wrapper{
    padding:60px 0;
}

.pricing-tabs{
    gap:15px;
}

.pricing-tabs .nav-link{
    border:none;
    padding:12px 30px;
    border-radius:50px;
    background:#edf3f4;
    color:#111;
    font-weight:600;
    transition:.3s;
	border:2px solid #000;
}

.pricing-tabs .nav-link.active{
    background:var(--theme-color-second);
    color:#fff;
}

.pricing-tab-pane{
    display:none;
}

.pricing-tab-pane.active{
    display:block;
}
section.custom_gallery.privacy-policy ul {
    list-style: disc;
    padding-left: 25px;
}

section.custom_gallery.privacy-policy ul  li{
	margin-bottom:15px;
}
.website-showcase .section-heading{
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.website-showcase .section-heading span{
    color:var(--theme-color-third);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.website-showcase .section-heading h2{
    font-size:48px;
    font-weight:800;
    margin:15px 0;
    color:var(--theme-color-second);
}

.website-showcase .section-heading p{
    color:#666;
    font-size:18px;
}

.website-showcase .showcase-row{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:100px;
}

.website-showcase .showcase-row.reverse{
    flex-direction:row-reverse;
}

.website-showcase .content{
    flex:1;
}

.website-showcase .content .number{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--theme-color-third);
    color:#fff;
    border-radius:50%;
    font-weight:700;
    margin-bottom:20px;
    box-shadow:var(--shadow-small);
}

.website-showcase .content h3{
    font-size:32px;
    font-weight:700;
    color:var(--theme-color-second);
    margin-bottom:15px;
}

.website-showcase .content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.website-showcase .content ul{
    padding:0;
    margin:0;
    list-style:none;
}

.website-showcase .content ul li{
    margin-bottom:12px;
    color:var(--theme-color);
    font-weight:500;
}

.website-showcase .content ul li::before{
    content:"✓";
    color:var(--theme-color-third);
    margin-right:10px;
    font-weight:700;
}

.website-showcase .image-box{
    flex:1;
}

.website-showcase .image-box img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow-large);
    transition:.4s ease;
}

.website-showcase .image-box img:hover{
    transform:translateY(-8px);
}

@media(max-width:991px){

    .website-showcase .showcase-row,
    .website-showcase .showcase-row.reverse{
        flex-direction:column;
        gap:40px;
        margin-bottom:70px;
    }

    .website-showcase .section-heading h2{
        font-size:36px;
    }

    .website-showcase .content h3{
        font-size:28px;
    }
}

@media(max-width:767px){

    .website-showcase{
        padding:70px 0;
    }

    .website-showcase .section-heading h2{
        font-size:30px;
    }

    .website-showcase .section-heading p{
        font-size:16px;
    }

    .website-showcase .content .number{
        width:50px;
        height:50px;
        font-size:14px;
    }

    .website-showcase .content h3{
        font-size:24px;
    }
}
/* ==========================
   COSTING SECTION
========================== */

.costing_sec {
    background: transparent;
}

.costing_sec .costing_card {
    background: linear-gradient(
        135deg,
        var(--theme-color-second),
        var(--theme-color-third)
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
    position: relative;
}

.costing_sec .costing_title {
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.costing_sec .costing_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.costing_sec .costing_row span {
    color: #ffffff;
    opacity: .85;
    font-family: var(--paragraph-font);
    font-size: 1.05rem;
    line-height: 1.6;
}

.costing_sec .costing_row strong {
    color: #ff4d5a;
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
}

.costing_sec .costing_row .plan_price {
    color: #8d85ff;
}

.costing_sec .saving_box {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 224, 164, 0.15);
    border-radius: 18px;
    padding: 28px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.costing_sec .saving_box span {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.costing_sec .saving_box h3 {
    margin: 0;
    color: #00e0a4;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {

    .costing_sec .costing_card {
        padding: 30px;
    }

    .costing_sec .saving_box h3 {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {

    .costing_sec .costing_card {
        padding: 25px 20px;
    }

    .costing_sec .costing_title {
        font-size: 1.5rem;
    }

    .costing_sec .costing_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .costing_sec .costing_row span {
        font-size: 0.95rem;
    }

    .costing_sec .costing_row strong {
        font-size: 1.1rem;
    }

    .costing_sec .saving_box {
        flex-direction: column;
        align-items: flex-start;
    }

    .costing_sec .saving_box span {
        font-size: 1.2rem;
    }

    .costing_sec .saving_box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .costing_sec .costing_title {
        font-size: 1.3rem;
    }

    .costing_sec .saving_box h3 {
        font-size: 1.7rem;
    }
}