html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Font-black;
  src: url(../fonts/NeueBlack.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "font-octonion";
  src: url(../fonts/font.woff2) format("woff2");
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro Roman';
  src: url('../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayRoman.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}



body {
  font-family: var(--bs-font-sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: #000;
}



a {
  text-decoration: none;
}

.f30 {
  font-size: 30px;
  font-weight: 400;
}

.f35 {
  font-size: 35px;
  font-weight: 300;
  font-family: Font-black;
}

.f35n {
  font-size: 35px;
  font-weight: 300;
}

.f25gry {
  font-size: 25px;
  color: #7A7A7A;
  font-weight: 500;
}

.f20 {
  font-size: 20px;
}

.f25 {
  font-size: 25px;
  font-family: Font-black;
}

.f25n {
  font-size: 25px;
}


.f18 {
  font-size: 18px;
}

.f14 {
  font-size: 14px;
}

.f11 {
  font-size: 11px;
}

.fntgry {
  color: #7A7A7A;
}

.f16 {
  font-size: 16px;
}

.navbar-brand {
  margin-right: 0;
  padding:0;
}






/* ------------------------
   Navbar Base Styles
------------------------ */
/*.navbar {
  position: relative;
  z-index: 1000;
  padding-top:0; 
  padding-bottom:0;}

.navbar-brand img {
 height: 47px;
margin-right: 10px;
}*/

.navbar-nav {
  gap: 25px;
}

.logonav .dropdown-menu {
       box-shadow: 3px 3px 10px 0px #0000001A;
       padding: 0;

}

.logonav a{
    font-size: 15px;
 }
 
.logonav .dropdown-menu a:hover {
    background-color: #f8f9fa;

}

.logonav .dropdown-item {
    padding: 0.39rem 1rem !important;
}

.nav-link {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: #000 !important;
  text-transform: uppercase;
  position: relative;
}

/* ------------------------
   Rolling Text Hover Animation
------------------------ */
.rolling-text {
  position: relative;
  overflow: hidden;
  height: 1.2em;
}

.rolling-text span {
  display: block;
  position: relative;
  transition: transform 0.4s ease, color 0.3s ease;
}

.rolling-text span::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  color: #385DFF;
}

.rolling-text:hover span {
  transform: translateY(-100%);
  color: transparent;
}

/* ------------------------
   Mega Menu Styling (Fixed)
------------------------ */
.mega-dropdown {
  position: static !important;
  
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border: none;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show mega menu on hover */
.nav-item.mega-dropdown:hover>.mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Links */
.mega-menu .dropdown-item {
  color: #000;
  text-transform: capitalize;
  padding: 5px 0;
  display: inline-block;
  transition: color 0.3s;
  font-size: 14px;
}

.mega-menu .dropdown-item:hover {
  color: #385DFF;
  background: none;
}

/* Image and Icon Styling */
.mega-menu img {
  background-color: #eee;
  padding: 8px;
  border-radius: 3px;
}

/* ------------------------
   Dropdown and Icons
------------------------ */
.navbar .dropdown-menu.show {
  display: block !important;
}

.nav-item.dropdown .nav-link::after {
  content: '\f107';
  /* Font Awesome down arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 12px;
  margin-left: 11px;
  transition: transform 0.3s ease;
  display: inline-block;
  position: relative;
  top: 3px;
  border: 0;
}

.nav-item.dropdown:hover .nav-link::after {
  transform: rotate(180deg);
  color: #385DFF;
}

/* ------------------------
   Adjustments for Bootstrap Navbar
------------------------ */
.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  /*top: 80px;*/
}
/*.navbar-expand-lg .navbar-nav .user-dropdown .dropdown-menu {*/
/*position: absolute;*/
/*top: 10px;*/
/*}*/
.dropdown-toggle::after {
  vertical-align: 0;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/*.contact {*/
/*  height: 60px;*/
/*  position: relative;*/
/*  top: 23px;*/
/*}*/

li.contact ul.dropdown-menu {
  position: absolute;
  top: 34px !important;
  border: 0;
  padding: 20px;
  border-radius: 0;
}

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

.icon-box {
  background: #f2f2f2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.icon-box i {
  color: #000;
  font-size: 18px;
}

.contact-info .title {
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}

.contact-info .details {
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

.contact-info .details a {
  color: #000;
}





/* ------------------------
   Responsive Behavior
------------------------ */
@media (max-width: 991px) {
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
  }

  .navbar-nav {
    gap: 10px;
  }

  .mega-menu img {
    background: none;
    padding: 0;
  }

  .nav-item.dropdown .nav-link::after {
    display: none;
  }
}




.search-box input {
  border-radius: 48px;
  border: 1px solid #F1F1F1;
  padding: 20px 1rem;
  width: 100%;
 box-shadow: 3px 3px 10px 0px #0000001A;
}

.search-box button.desktop {
  border-radius: 23px;
  background-color: #000;
  color: #fff;
  border: none;
  position: absolute;
  padding: 12px 30px;
  right: 25px;
  top: 9px;
}

.offer-box {
  width: 100%;
}

.offer-box span {
  background: #ddd;
  border-radius: 3px;
  padding: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.find-btn {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  padding: 20px 30px;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
}



.nav-pills .nav-link {
  border: 1px solid #ccc;
  color: #000;
  background-color: #fff;
  transition: 0.3s;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
  background-color: #000;
  color: #fff !important;
  border-color: #000;
}


.tab-content .card {
  border-radius: 25px;
}

.black-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 30px;
}

.black-btn:hover {
  background-color: #000;
  color: #fff;
}

.violetbtn {
  background-color: #3C33CC;
  color: #fff;
  padding: 10px 30px;
}

.violetbtn:hover {
  background-color: #3C33CC;
  color: #fff;
}

/********** Templates marquee ****************/

.marquee-wrapper {

  text-align: center;
}

.marquee-wrapper .container-fluid {
  overflow: hidden;
}

.marquee-inner span {
  float: left;
  /* width:50%; */
}

.marquee-wrapper .marquee-block {
  --total-marquee-items: 3;
  height: 433px;
  width: calc(780px * (var(--total-marquee-items)));
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 20px auto 10px auto;
  padding: 30px 0;
}

.marquee-inner {
  display: block;
  width: 200%;
  position: absolute;
}

.marquee-inner.to-left {
  animation: marqueeLeft 50s linear infinite;
}

.marquee-inner.to-right {
  animation: marqueeRight 50s linear infinite;
}

.marquee-item {
  width: 680px;
  height: auto;
  display: inline-block;
  margin: 0 10px;
  float: left;
  transition: all .2s ease-out;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

@keyframes marqueeRight {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

.bgblu {
  background-color: #E5F1FF;
}

.subheadblu {
  padding: 8px;
  background-color: #E5F1FF;
  font-size: 18px;
  display: inline;
}

/********** FAQ's ********************/

.accordion-body {
  padding: 0;
}

.accordion-flush .accordion-item .accordion-button,
.accordion-flush .accordion-item .accordion-button.collapsed {
  padding: 12px 0px;
}

.accordion-item {
  border-bottom: 1px solid #BDBDBD !important;

}

.accordion-collapse {
  border: 0;
}

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

.accordion-body p {
  padding: 0px 0px 9px 0px;
}

.accordion-button::after {
  width: auto;
  height: auto;
  content: "+";
  font-size: 20px;
  background-image: none;
  font-weight: 500;
  transform: translateY(-4px);
}

.accordion-button:not(.collapsed)::after {
  width: auto;
  height: auto;
  background-image: none;
  content: "-";
  font-size: 20px;
  transform: translate(-5px, -4px);
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #000;
  box-shadow: none;
}

.bggrey {
  background-color: #F1F1F1;
}

.bgblack {
  background-color: #000;
}


/* .video-expand-section {
  height: 200vh; 
  position: relative;
}

.video-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: start;
  justify-content: center;
}

.video-el {
  width: 98%;
  height: 90vh;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;

}

.video-overlay {
  position: absolute;
  top: 30%;
  left: 15%;
  z-index: 1;
  width: 53%;
} */

/*.video-expand-section {
  position: relative;
  overflow: hidden;
}

.video-container {
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  align-items: start;
  justify-content: center;
   background: rgba(0, 0, 0, 0.8);
}

.video-el {
  width: 98%;
  object-fit: cover;
  border-radius: 25px;
  transition: all 0.5s ease;
}

.video-overlay {
  position: absolute;
  top: 33%;
  left: 10%;
  z-index: 2;
  width: 56%;
}*/







.video-expand-section {
  position: relative;
  overflow: hidden;
}

.video-container {
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  /*align-items: start;
  justify-content: center;*/
  position: relative; 
}

/* THE DARK OVERLAY */
.video-container::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; left:0; right:0; bottom:0 */
  /*background: rgba(0, 0, 0, 0.4); */
  z-index: 1; /* BELOW the text, ABOVE the video */
  pointer-events: none;
  border-radius: 25px;
}

.video-el {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 0; /* video stays behind overlay */
}

.video-overlay {
  position: absolute;
  bottom: 7%;
  left: 3.9%;
  z-index: 2;  /* ABOVE overlay */
  width: 56%;
}



.video-overlay h1 {
  color: #fff;
  font-size: 48px;
}

.videohgt {
  height: 100vh;
}

.clients img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/********** Mobile navigation *******************/

/* ====== MENU STYLING ====== */
#menu {
  background: #fff;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  transition: all 0.7s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 1100;
  padding: 100px 20px 0px 20px;
}

#menu.open {
  opacity: 1;
  visibility: visible;
}

.main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.main-nav>li {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  list-style: none;
}

.main-nav a {
  color: #000;
  display: block;
  font-size: 25px;
  font-weight: bold;
  padding: 12px 15px;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.main-nav a[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(90deg);
}

.main-nav ul {
  padding-left: 20px;
  list-style: none;
}

.main-nav ul li a {
  font-size: 20px;
  color: #333;
  padding: 8px 10px;
}

.main-nav ul li a::after {
  content: "" !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}



.main-nav ul li a:hover {
  color: #000;
}

/* ====== TOGGLE BUTTON ====== */
.toggle-menu {
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1200;
}

.toggle-menu span,
.toggle-menu span::before,
.toggle-menu span::after {
  display: block;
  background: #000;
  position: absolute;
  width: 26px;
  height: 3px;
  left: 0px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.toggle-menu span::before {
  content: "";
  top: -8px;
}

.toggle-menu span::after {
  content: "";
  top: 8px;
}

.toggle-menu.active span {
  background: transparent;
}

.toggle-menu.active span::before {
  transform: rotate(45deg);
  top: 0;
}

.toggle-menu.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Smooth sticky transition */
#mainHeader,
#mainHeaderMobile {
    transition: all 0.3s ease;
   padding: 0px;
}

/* Sticky activated style */
.sticky-active {
   position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    animation: fadeInDown 0.3s ease-out forwards;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


/*********** Inner pages **********************/

.banner {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner h1 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  font-family: 'Neue Haas Grotesk Display Pro';
}

.banner .overlay-text {
  position: absolute;
  width: 100%;
  top: 50%;
  /* center vertically */
  transform: translateY(-50%);
}

.banner p {
  font-family: 'Neue Haas Grotesk Display Pro Roman';
}

.pricing-card {
  border: none;
  border-radius: 12px;
  padding: 10px 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  font-family: 'Neue Haas Grotesk Display Pro Roman';
}

.pricing-card img {
  background-color: #000;
  padding: 8px;
  border-radius: 3px;
}

.pricing-card:hover {
  transform: translateY(-5px);

}

.plan-title {
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Neue Haas Grotesk Display Pro';

}

.plan-subtitle {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.section-heading {
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  padding-bottom: 4px;
  font-family: 'Neue Haas Grotesk Display Pro';
}

.list-unstyled li {
  font-size: 0.9rem;
  padding: 2px;
  list-style-image: url('../images/checkbullet.png');
}

.list-unstyled {
  padding-left: 20px;
}

/* Most Popular Badge */
.popular {
  position: relative;
  border-top: 4px solid #007bff;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #385DFF;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 30px;
  text-transform: uppercase;
  font-family: 'Neue Haas Grotesk Display Pro';
}

.feature-box img {
  width: 100px;

}

.built p {
  font-family: 'Neue Haas Grotesk Display Pro Roman';
}


.built p.fntvio {
  font-size: 90px;
  font-family: 'Neue Haas Grotesk Display Pro';
  color: #385DFF;
  font-weight: 700;
  line-height: 70px;
}


.borad15 {
  border-radius: 15px;
}

.search-box1 input {
  border-radius: 15px;
  border: 0px solid #ccc;
  padding: 35px 1rem;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.search-box1 a {
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  border: none;
  position: absolute;
  padding: 17px 30px;
  right: 35px;
  top: 16px;
}


/*********** Results page css ****************/

.domain-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 1.5rem;
  height: 100%;
}

.domain-card:hover {
  border-color: #385DFF;
  ;
  box-shadow: 0 0 10px rgba(0, 194, 168, 0.2);
}

.badge-custom {
  background-color: #e6e6e6;
  color: #555;
  font-size: 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-alt {
  background-color: #f4e2b8;
  color: #a06a00;
}


.btn-dark {
  border-radius: 4px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
}


.heart-icon1 {
  color: #999;
  font-size: 1.2rem;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/********* List itmes of results **************/

.domain-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.domain-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.heart-icon {
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0px 30px;
}

.domain-name {
  font-size: 28px;
  font-weight: 600;
}

.domain-name span {
  color: #385dff;
}

.labels {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
}

.premium {
  color: #385dff;
  font-weight: 700;
  margin-left: 4px;
}

.domain-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.price {
  text-align: right;
  line-height: 1.2;
}

.old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 18px;
}

.new-price {
  font-weight: 700;
  font-size: 18px;
  color: #111;
}

.cart-btn {
  border: 2px solid #111;
  border-radius: 8px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #111;
  color: #fff;
}

/* make icon white on hover */
.cart-btn:hover .icon-img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;

  @media (max-width: 576px) {
    .domain-row {
      flex-direction: column;
      align-items: flex-start;
    }

    .domain-right {
      width: 100%;
      justify-content: space-between;
      margin-top: 0.75rem;
    }

    .price {
      text-align: left;
    }
  }
}

/********* Digital marketing css from octonion design ******************/

.social-media-circle .img-banner {
  position: relative;
}
.social-media-circle .overlay-text {
  text-align: center;
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  padding-top: 33px;
  font-weight: 700;
  font-family: font-black;
  padding-right: 20px;
  font-size: 15px;
}
.social-media-circle .overlay-text .text-one {
  color: #fff;
  font-size: 17px;
  padding-left: 23px;
}
.social-media-circle .overlay-text .text-two {
  color: #fff;
  font-size: 17px;
  padding-right: 90px;
  padding-top: 25px;
}
.social-media-circle .overlay-text .text-three {
  color: #fff;
  font-size: 13px;
  padding-left: 90px;
  padding-top: 25px;
}
.social-media-circle .overlay-text .text-four {
  color: #fff;
  font-size: 23px;
  padding-right: 10px;
  padding-top: 8px;
}
.social-media-circle .overlay-text .text-five {
  color: #fff;
  font-size: 12px;
  padding-right: 90px;
  margin-top: -10px;
}
.social-media-circle .overlay-text .text-six {
  color: #fff;
  font-size: 14px;
  padding-left: 85px;
  padding-top: 13px;
}
.social-media-circle .overlay-text .text-seven {
  color: #fff;
  font-size: 14px;
  padding-left: 25px;
  padding-top: 50px;
}

.our-capabilities {
  color: var(--primary-color);
  background-color: var(--background-color-13);
}
.our-capabilities img {
  width: 30px;
  margin-right: 10px;
}
.our-capabilities ul {
  padding-left: 0;
}
.our-capabilities ul li {
  list-style-type: none;
  line-height: 45px;
}
.cardcontainer {
  position: relative;
  width: 100%;
}
.cardcontainer .cap-card {
  position: relative;
  margin-left: 9px;
  margin-right: 9px;
}
.cardcontainer .cap-card .face {
  position: relative;
  width: 100%;
  min-height: 200px;
  transition: 0.5s;
  border-radius: 12px;
  color: #000;
}
.cardcontainer .cap-card .face.face1 {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: translateY(100px);
}
.cardcontainer .cap-card:hover .face.face1 {
  transform: translateY(0);
  background: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
}
.cardcontainer .cap-card .face.face1 .content {
  opacity: 0.8;
  transition: 0.5s;
}
.cardcontainer .cap-card:hover .face.face1 .content {
  opacity: 1;
}
.cardcontainer .cap-card .face.face1 .content h2 {
  margin: 10px 0 0;
  padding: 0;
  color: #000;
  text-align: center;
  font-size: 30px;
}
.cardcontainer .cap-card .face.face2 {
  position: relative;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-100px);
}
.cardcontainer .cap-card:hover .face.face2 {
  transform: translateY(0);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.cardcontainer .cap-card .face.face2 ul li {
  margin: 0;
  padding: 0;
  list-style-type: disc;
  font-size: 20px;
}

.offerings .title span {
  color: var(--primary-color-10);
}
.offerings .card {
  border-radius: 20px;
  cursor: pointer;
  background-color: #f8f9fa;
  border: 1px solid #ccc;
}

.offerings .card .card-header {
  background-color: #f8f9fa;
  border: none;
}
.offerings .card .card-footer {
  background-color: #f8f9fa;
  border: none;
}
.offerings .card .card-footer ul li {
  list-style-type: none;
  line-height: 35px;
  transition: 0.3s ease-in-out;
}
.offerings .card .card-footer ul li:hover {
  color: var(--primary-color-10);
  transition: 0.3s ease-in-out;
}
.offerings .card .card-footer ul li i {
  color: var(--primary-color-10);
  margin-right: 10px;
}

/************ SEO page css *********************/

.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  border: 0.25px solid #9b9b9b;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: #f2f2f2;
  font-weight: bold;
  color: #343434;
  cursor: pointer;
}

.toggleContainer::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0%;
  border-radius: 20px;
  background: white;
  border: 0.25 solid #9b9b9b;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.toggleCheckbox:checked + .toggleContainer::before {
  left: 50%;
}

.toggleContainer div {
  font-size: 15px;
  padding: 6px;
  padding-right: 26px;
  padding-left: 26px;
  text-align: center;
  z-index: 1;
}

.toggleContent .card,
.reverse-toogle-content .card {
  background-color: #f8f9fa;
}

.toggleCheckbox {
  display: none;
}

.toggleCheckbox:checked + .toggleContainer div:first-child {
  color: #343434;
  transition: color 0.3s;
}

.toggleCheckbox:checked + .toggleContainer div:last-child {
  color: #343434;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer div:first-child {
  color: #343434;
  transition: color 0.3s;
}

.toggleCheckbox + .toggleContainer div:last-child {
  color: #343434;
  transition: color 0.3s;
}

.toggleContent {
  display: none;
}

.reverse-toogle-content {
  display: block;
}

.custom-fs {
  font-size: 20px !important;
}

.cfs-1 {
  font-size: 1rem !important;
}



footer .card {
  background-color: #1E1E1E;
  color: #fff;
  padding: 30px;
  border-radius: 18px;
}

footer .card i {
  color: #666 !important;
  font-size: 35px;
}

footer .list-unstyled {
  padding-left: 0px;
}



.mbfooterlinks ul li a {
  color: #fff;
  text-decoration: none;
  padding: 15px 10px;
}

.mbfooterlinks ul li a[aria-expanded="true"]::after {
  content: "\f068";
  font-family: 'FontAwesome';
  float: right;
  padding-left: 10px;
}

.mbfooterlinks ul li a[aria-expanded="false"]::after {
  content: "\2b";
  font-family: 'FontAwesome';
  float: right;
  padding-left: 10px;
}
/*** new style (anish) ***/
.toggle-password {
    position: absolute;
    right: 15px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    opacity: 0.6;
}

.toggle-password:hover {
    opacity: 1;
}
.position-relative .form-control {
    padding-right: 40px; /* space for icon */
}
.cart-box {
  border: 1px solid #ddd;
}
 
.order-summary {
  border: 1px solid #e2e6ea;
  background: #f3f6f7;
}
 
.form-select {
  min-width: 150px;
}
 
.btn-dark:hover {
  background: #000;
}
 
.thankyou-card {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  padding: 30px 30px 50px 30px;
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
 
.thankyou-emoji {
  font-size: 55px;
  margin-bottom: 15px;
}


/************************ Templates designed to sell for mobile *******************/


.mobile-category-dropdown {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.dropdown-selected {
    background: #f2f2f2;
    color: #000;
    padding: 14px 18px;
    border: 1px solid #000;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-selected .arrow {
    font-size: 18px;
    transform: rotate(180deg);
}

.dropdown-list {
    list-style: none;
    padding: 10px 0;
    margin: 6px 0 0 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.15);
    display: none;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.dropdown-list li {
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
}

.dropdown-list li:hover {
    background: #f3f3f3;
}

.dropdown-list li.selected {
    font-weight: bold;
}

.check {
    color: black;
    font-size: 16px;
    color:#385DFF;

}

/* Desktop hides dropdown */
@media (min-width: 992px) {
    .mobile-category-dropdown { display: none; }
}

/* Mobile hides desktop nav pills */
@media (max-width: 991px) {
    .nav-pills { display: none !important; }
}




/* Floated Social icons *****************/


#social-icons {
    min-height: 200px;
}

#social-icons {
  position: fixed;
  bottom: 60px;
  right: 40px;
}
.social-icons ul li {
  list-style-type: none;
  margin: 15px 0;
}
.social-icons ul li a {
  text-decoration: none;
  color: #fff !important;
  font-weight: 700;
  font-size: 17px;
  background-color: #000;
  transition: 1.5s ease;
}
.social-icons ul li a:hover {
  color: #fff;
  background-position: 500% 100%;
  background-image: var(--iconbg);
}
.social-icons #vimeo {
  padding: 10px 13px 9px 13px;
  font-size: 20px;
  border-radius: 100%;
}
.social-icons #medium {
  padding: 10px 13px 10px 12px;
  display: inline-block;
  margin-top: -8px;
  font-size: 17px;
  border-radius: 100%;
}
.social-icons #linkedin {
  padding: 10px 13px 10px 13px;
  font-size: 20px;
  border-radius: 100%;
  filter: hue-rotate(20deg);
}
.social-icons #whatsapp {
  padding: 10px 14px 10px 14px;
  font-size: 22px;
  border-radius: 100%;
  filter: hue-rotate(20deg);
}
.social-icons #facebook {
  padding: 11px 16px 11px 16px;
  font-size: 20px;
  border-radius: 100%;
  filter: hue-rotate(20deg);
}
.social-icons #instagram {
  padding: 11px 14px 11px 14px;
  font-size: 20px;
  border-radius: 100%;
  filter: hue-rotate(20deg);
}
.social-icons #twitter {
  padding: 11px 13px 11px 13px;
  font-size: 18px;
  border-radius: 100%;
  filter: hue-rotate(20deg);
}
.social-icons ul {
  margin-left: 0;
  width: 100%;
  justify-content: center;
}

.social-icons ul li a:hover {
  color: #fff;
  background-position: 500% 100%;
  background-image: url(../images/nav-bg-fill-blue.png);
}


/*********************** Login Page css ***************************/

.f25 {
  font-size: 25px;
  font-weight: 400;
}
 
.login-container {
  height: 100vh; /* full viewport height */
}
 
.left-panel {
  background: url("../images/adminbg.png") no-repeat center center;
  background-size: cover;
  height: 100%;
  color: #fff;
  padding: 60px 30px;
  /*display: flex;*/
  /*flex-direction: column;*/
  /*justify-content: center;*/
  /*align-items: center;*/
  /*text-align: center;*/
}
 
.left-panel h2 {
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 15px;
}
 
.left-panel img {
  max-width: 600px;
  height: auto;
}
 
.right-panel {
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.login-logo {
  text-align: center;
  margin-bottom: 25px;
}
 
.login-logo img {
  width: 50px;
  margin-bottom: 10px;
}
 
.login-logo h5 {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}
 
.form-label {
  font-weight: 500;
  color: #333;
}
 
.btn-login {
  background: linear-gradient(to right, #1e88e5, #00c4cc);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  transition: 0.3s;
}
 
.btn-login:hover {
  opacity: 0.9;
}
 
@media (max-width: 768px) {
  .left-panel {
    display: none;
  }
  .right-panel {
    padding: 40px 30px;
  }
}


.features-box ul li {
    font-size: 15px;
}

.qtyheading {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Neue Haas Grotesk Display Pro';
}

.features-box img.check-icon {
    margin-right: 8px;
    margin-top: -2px;
       background-color: transparent;
    padding: 0px;
    border-radius: 0px;
}


.allordhistory .nav-pills .nav-link {
  color: #000 !important;
  padding: 10px 33px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Neue Haas Grotesk Display Pro Roman";
  border: 0;
  text-transform: capitalize;
}

.allordhistory .nav-pills .nav-link:hover {
  width: 100%;
  background-color: transparent;
  border-radius: 0;
}
.allordhistory .nav .nav-item button.active {
  background-color: transparent;
  color: #000 !important;
  font-weight: 500;
}

.allordhistory .nav .nav-item button.active::after,
.allordhistory .nav .nav-item button:hover::after {
  content: "";
  border-bottom: 2px solid #385dff;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}





/******************************************************/





@media (min-width: 821px) {
  .d-custmd-none {
    display: none !important;
  }

}


@media (max-width: 575.98px) and (max-width: 767px) {

  .search-box input {
    padding: 16px 1rem;
  }

  .search-box button.mobile {
    right: 22px;
    top: 9px;
    padding: 9px 18px;
  }

  .video-overlay h1,
  .video-overlay p {
    display: none;
  }

  .search-box .card {
    width: 328px;
  }

  .video-overlay {
    top: -1%;
    left: 6%;
    width: 82%;
  }

  .mt-6 {
    margin-top: 4rem;
  }


  .feature-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: flex-start !important;
    gap: 0.75rem;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    /* smooth scroll on iOS */
    scrollbar-width: thin;
  }

  /* Optional: hide scrollbar (Chrome, Safari) */
  .feature-tabs::-webkit-scrollbar {
    height: 6px;
  }

  .feature-tabs::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }

  .feature-tabs::-webkit-scrollbar-track {
    background: transparent;
  }

  /* Tabs should stay inline */
  .feature-tabs .nav-item {
    flex: 0 0 auto;
  }

  .feature-tabs .nav-link {
    white-space: nowrap;
  }

  .marquee-wrapper .marquee-block {
    --total-marquee-items: 4;
    height: 203px;
  }

  .marquee-item {
    width: 254px;
  }


  .social-icons ul li {
    list-style-type: none;
    margin: 0 0;
  }

  /* #social-icons {
    right: 5px;
  }
  .social-icons {
    position: inherit;
  } */
  .social-icons ul {
    justify-content: inherit;
  }

  .social-icons ul li {
    padding-right: 15px;
  }


  .w-50, .w-75 { 
    width: 100% !important;
  }

  .banner h1 {
    font-size: 28px;
  }
  
  
 .nav-item.dropdown .nav-link::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 12px;
    margin-left: 11px;
    transition: transform 0.3s ease;
    display: inline-block;
    position: relative;
    top: 3px;
    border: 0;
}

.nav-item.dropdown:hover .nav-link::after {
  transform: rotate(180deg);
  color: #385DFF;
}

.mobile {
    position: absolute;
    right: 27px;
    top: 12px;
    font-size: 22px;
}

.video-container {
    width: 95%;
    margin: 0 auto;
}


}

/* Ipad Air and Mini*/
@media screen and (min-width: 768px) and (max-width: 991px) {}



/* For Large screens */

@media (min-width: 1500px) {
 
}