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

Style.css
=============

Author:  Gino Aliaj
Template: Cloudify - Web Hosting HTML Template
Version: 1.2

Author URI: gnodesign.com
***************************/

/*------------------------------------------------------------------
[Table of contents]

1.  DEFAULT TYPOGRAPHY
2.  GENERAL STYLES
3.  MARGINS & PADDINGS

4.  BUTTONS
    4.1.    BORDER EFFECT
    4.2.    REVERSED BORDER EFFECT
    4.3.    BUTTON COLORS

5.  TOP HEADER
    5.1.    LIVE CHAT
    5.2.    LOGIN POP UP

6.  HEADER - NAVIGATION
    6.1.    DROPDOWN MENU
        6.1.1.  SIMPLE MENU
        6.1.2.  MEGA MENU

7.  MAIN SECTION - SLIDER
    7.1.    DOMAIN SEARCH

8.  SECTIONS
    8.1.    ABOUT
    8.2.    SERVICES
    8.3.    SUBSCRIBE
    8.4.    TEAM
    8.5.    PRICING
    8.6.    COUNTUP
    8.7.    TESTIMONIALS
    8.8.    BLOG
        8.8.1. BLOG SECTION VERSION 1
        8.8.2. BLOG SECTION VERSION 2
    8.9.    PARTNERS
    8.10.   BUY NOW

9.  FOOTER

10. PAGES
    10.1.   SERVICES
    10.2.   FAQ
    10.3.   CART PAGE
    10.4.   DOMAIN
    10.5.   TESTIMONIALS
        10.5.1. TESTIMONIAL 1
        10.5.2. TESTIMONIAL 2
        10.5.3. TESTIMONIAL 3
    10.6.   PRICING TABLES PAGE
        10.6.1.  PRICING TABLE 1
        10.6.2.  PRICING TABLE 2
    10.7.   404 PAGE
    10.8.   COMING SOON PAGE
    10.9.   LOGIN & REGISTER
    10.10.  BLOG LISTING PAGE
    10.11.  SINGLE BLOG POST PAGE
    10.12.  PORTFOLIO
    10.13.  CONTACT PAGES
        10.13.1.  CONTACT PAGE 1
        10.13.2.  CONTACT PAGE 2

11. ANIMATIONS
12. PAGE LOADER
-------------------------------------------------------------------*/

@import url(animate.css);
@import url(magnific-popup.css);

/* --------------------------------------
    1. Default Typography
-------------------------------------- */

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

body {
  font-family: "Open Sans", sans-serif;
  background-color: #121111 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 0 !important;
}

p {
  font-size: 16px;
  line-height: 20px;
  color: #738191;
}

h2 {
}

/* --------------------------------------
    2. General Styles
-------------------------------------- */
html,
body {
  width: 100%;
  height: 100%;
}

.btn-primary {
  background-color: transparent!important;
  width: 300px!important;
  border: 1px solid #fff!important;
}

body.mfp-zoom-out-cur {
  overflow: hidden;
}

a {
  color: #29b2fe;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #29b2fe;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none !important;
  outline: none !important;
}

a,
button,
input {
  outline: none !important;
}

.uppercase h2 {
  text-transform: uppercase;
}

.color-white {
  color: #fff;
}

.capitalize {
  text-transform: capitalize;
}

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

.section-break {
  border-bottom: 1px solid var(--border);
  width: 80%;
  margin: 0 auto!important;
}

img {
  -moz-user-select: none;
  /* These user-select properties are inheritable, used to prevent text selection */
  -webkit-user-select: none;
  -ms-user-select: none;
  /* From IE10 only */
  -webkit-user-drag: none;
  /* Prevents dragging of images/divs etc */
  user-drag: none;
}

.fullscreen {
  width: 100%;
  height: 100%;
}

.shadow {
  -webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.overlay-black:before {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  overflow: hidden;
  z-index: 2;
  position: absolute;
  top: 0;
}

.overlay-blue:before {
  background: rgba(41, 177, 253, 0.25);
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  overflow: hidden;
  z-index: 2;
  position: absolute;
  top: 0;
}

.overlay-gradient:before {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  overflow: hidden;
  z-index: 2;
  position: absolute;
  top: 0;
}

.overlay-gradient:after {
  background: -moz-linear-gradient(left, #29b2fe -40%, #0c112a 140%);
  background: -webkit-linear-gradient(left, #29b2fe -40%, #0c112a 140%);
  background: linear-gradient(to right, #29b2fe -40%, #0c112a 140%);
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  overflow: hidden;
  z-index: 3;
  position: absolute;
  top: 0;
  opacity: 0.3;
}

.hover-link:after {
  content: "\f0c1";
  font-family: "fontawesome";
  color: #f6f6f6;
  font-size: 32px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -20%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.hover-link:hover:after {
  left: 50%;
  opacity: 0.9;
}

.hover-zoom:after {
  content: "\f00e";
  font-family: "fontawesome";
  font-size: 30px;
  color: #f6f8f8;
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hover-zoom:hover:after {
  opacity: 0.8;
  font-size: 38px;
}

.transparent {
  background: transparent !important;
}

.text-white {
  color: #f6f6f6;
}

.text-blue {
  color: #29b2fe;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
  margin: 0 !important;
  text-transform: capitalize;
}

.section-title h2 {
  /* margin-bottom: 14px; */
}

.section-title p {
  width: 70%;
  margin: 0 auto;
  line-height: 1.7;
  text-transform: lowercase;
}

/* --------------------------------------
    3. Margins & Paddings
-------------------------------------- */

.nopadding {
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

/********** Margin Top **********/

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt120 {
  margin-top: 120px;
}

.mt125 {
  margin-top: 125px;
}

.mt130 {
  margin-top: 130px;
}

.mt140 {
  margin-top: 140px;
}

.mt150 {
  margin-top: 150px;
}

/********** Margin Bottom **********/

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb125 {
  margin-bottom: 125px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

/********** Margin Top & Bottom **********/

.mtb10 {
  margin: 10px 0;
}

.mtb15 {
  margin: 15px 0;
}

.mtb20 {
  margin: 20px 0;
}

.mtb25 {
  margin: 25px 0;
}

.mtb30 {
  margin: 30px 0;
}

.mtb35 {
  margin: 35px 0;
}

.mtb40 {
  margin: 40px 0;
}

.mtb45 {
  margin: 45px 0;
}

.mtb50 {
  margin: 50px 0;
}

.mtb60 {
  margin: 60px 0;
}

.mtb70 {
  margin: 70px 0;
}

.mtb80 {
  margin: 80px 0;
}

.mtb90 {
  margin: 90px 0;
}

.mtb100 {
  margin: 100px 0;
}

.mtb110 {
  margin: 110px 0;
}

.mtb120 {
  margin: 120px 0;
}

.mtb130 {
  margin: 130px 0;
}

.mtb140 {
  margin: 140px 0;
}

.mtb150 {
  margin: 150px 0;
}

/********** Padding Top **********/

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pt110 {
  padding-top: 110px;
}

.pt120 {
  padding-top: 120px;
}

.pt130 {
  padding-top: 130px;
}

.pt140 {
  padding-top: 140px;
}

.pt150 {
  padding-top: 150px;
}

.pt160 {
  padding-top: 160px;
}

/********** Padding Bottom **********/

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb110 {
  padding-bottom: 110px;
}

.pb120 {
  padding-bottom: 120px;
}

.pb130 {
  padding-bottom: 130px;
}

.pb140 {
  padding-bottom: 140px;
}

.pb150 {
  padding-bottom: 150px;
}

/********** Padding Top & Bottom **********/

.ptb10 {
  padding: 10px 0;
}

.ptb15 {
  padding: 15px 0;
}

.ptb20 {
  padding: 20px 0;
}

.ptb25 {
  padding: 25px 0;
}

.ptb30 {
  padding: 30px 0;
}

.ptb35 {
  padding: 35px 0;
}

.ptb40 {
  padding: 40px 16px;
}

.ptb45 {
  padding: 45px 0;
}

.ptb50 {
  padding: 50px 0;
}

.ptb60 {
  padding: 40px 0;
}

.ptb70 {
  padding: 70px 0;
}

.ptb80 {
  padding: 40px 0;
}

.ptb90 {
  padding: 90px 0;
}

.ptb100 {
  padding: 100px 0;
}

.ptb110 {
  padding: 110px 0;
}

.ptb120 {
  padding: 120px 0;
}

.ptb130 {
  padding: 130px 0;
}

.ptb140 {
  padding: 140px 0;
}

.ptb150 {
  padding: 150px 0;
}

/* --------------------------------------
    4. Buttons
-------------------------------------- */

.service-btn {
  padding: 15px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.btn-service {
  border-radius: 15px;
}

.btn {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-left: 9px;
  outline: none;
  padding: 0 15px;
  position: relative;
  line-height: 35px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn:focus {
  color: #f6f6f6;
}

.btn,
.btn-border:before,
.btn-border:after,
.btn-border-rev:before,
.btn-border-rev:after {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn-small {
  line-height: 25px;
}

/*********** 4.1 Border Effect *************/

.btn-border {
  border: 1px solid #ededed;
}

.btn-border:before,
.btn-border:after {
  content: "";
  border-style: solid;
  position: absolute;
  z-index: 5;
  border-radius: 3px;
  box-sizing: content-box;
}

.btn-border:before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
  top: -1px;
  left: 0;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -ms-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.btn-border:after {
  width: 100%;
  height: 0;
  border-width: 0 1px 0 1px;
  top: 0;
  left: -1px;
}

.btn-border:hover {
  background-color: transparent;
}

.btn-border:hover:before {
  width: 100%;
}

.btn-border:hover:after {
  height: 100%;
}

/*********** 4.2 Reversed Border Effect *************/

.btn-border-rev {
  border: 1px solid #ededed;
}

.btn-border-rev:before,
.btn-border-rev:after {
  content: "";
  border-style: solid;
  position: absolute;
  z-index: 5;
  border-radius: 3px;
  box-sizing: content-box;
}

.btn-border-rev:before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
  top: -1px;
  right: 0;
}

.btn-border-rev:after {
  width: 100%;
  height: 0;
  border-width: 0 1px 0 1px;
  bottom: 0;
  left: -1px;
  -webkit-transition-delay: 0.05s;
  -moz-transition-delay: 0.05s;
  -ms-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.btn-border-rev:hover {
  background-color: transparent;
}

.btn-border-rev:hover:before {
  width: 100%;
}

.btn-border-rev:hover:after {
  height: 100%;
}

/*********** 4.3 Button Colors *************/

.btn-blue:before,
.btn-blue:after {
  border-color: #29b1fd;
}

.btn-blue:hover {
  color: #29b1fd;
}

.btn-green:before,
.btn-green:after {
  border-color: #2ecc71;
}

.btn-green:hover {
  color: #2ecc71;
}

.btn-dark {
  background: #29b3fe !important;
  color: #fff;
  margin-top: 40px;
}

/* --------------------------------------
    5. Top Header
-------------------------------------- */

.top-header {
  background: #1f1f1f;
  color: #a4a4a4;
  z-index: 5;
  position: relative;
}

.top-header a {
  font-size: 14px;
  color: #999;
}

.top-header ul {
}

.social {
  line-height: 25px;
}

.social li {
  padding: 0 10px;
}

.social li a:hover {
  color: #f6f6f6;
}

.top-button {
  float: right;
}

.top-button li {
  display: inline-block;
}

.top-button .btn-border,
.top-button .btn-border-rev {
  border: 1px solid #999;
}

.top-button li a i {
  font-size: 14px;
  margin-right: 8px;
}

.top-button .customer-support:focus {
  color: #999;
}

/*********** 5.1 Live Chat *************/

.live-chat {
  bottom: 0;
  font-size: 12px;
  right: 24px;
  position: fixed;
  width: 300px;
  z-index: 100;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.live-chat.collapsed {
  -webkit-transform: translateY(360px);
  -moz-transform: translateY(360px);
  -ms-transform: translateY(360px);
  -o-transform: translateY(360px);
  transform: translateY(360px);
}

.live-chat.expanded {
  display: block;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.live-chat.closed {
  -webkit-transform: translateY(130%) !important;
  -moz-transform: translateY(130%) !important;
  -ms-transform: translateY(130%) !important;
  -o-transform: translateY(130%) !important;
  transform: translateY(130%) !important;
}

.live-chat.active {
  opacity: 1;
}

.live-chat .header {
  background: #0c112a;
  border-radius: 5px 5px 0 0;
  color: #f6f6f6;
  cursor: pointer;
  padding: 16px 24px;
}

.live-chat h4:before {
  background: #2ecc71;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 8px;
  margin: 0 8px 0 0;
  width: 8px;
}

.live-chat form {
  padding: 24px;
}

.live-chat input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 8px;
  outline: none;
  width: 100%;
}

.chat-message-counter {
  background: #29b1fd;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline;
  font-size: 12px;
  font-weight: bold;
  height: 28px;
  left: 0;
  line-height: 28px;
  margin: -15px 0 0 -15px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 28px;
}

.chat-close {
  color: #fff;
  display: block;
  float: right;
  font-size: 20px;
  line-height: 16px;
  margin: 2px 0 0 0;
}

.chat {
  background: #fff;
  max-height: 360px;
}

.chat-history {
  height: auto;
  padding: 8px 24px;
  overflow-y: scroll;
}

.chat-message {
  margin: 16px 0;
}

.chat-message img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  float: left;
}

.chat-message-content {
  margin-left: 56px;
}

.chat-message-content h5 {
  padding-bottom: 10px;
}

.chat-time {
  float: right;
  font-size: 10px;
}

.chat-feedback {
  font-style: italic;
  margin: 0 0 0 80px;
}

/*********** 5.2 Login Pop Up *************/

.cd-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1039;
  overflow-y: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.cd-user-modal.is-visible {
  visibility: visible;
  opacity: 1;
}

.cd-user-modal.is-visible .cd-user-modal-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-user-modal-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #fff;
  margin: 10% auto 0;
  cursor: auto;
  border-radius: 5px;
  -webkit-transform: translateY(-70px);
  -moz-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  -o-transform: translateY(-70px);
  transform: translateY(-70px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -ms-transition-property: -moz-transform;
  -o-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.cd-user-modal-container .cd-switcher {
  list-style: none;
  padding: 0;
}

.cd-user-modal-container .cd-switcher:after {
  content: "";
  display: table;
  clear: both;
}

.cd-user-modal-container .cd-switcher li {
  width: 50%;
  float: left;
  text-align: center;
}

.cd-user-modal-container .cd-switcher a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-weight: 600;
  background: #29b2fe;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.cd-user-modal-container .cd-switcher a:hover {
  background: #5bbc2e;
}

.cd-user-modal-container .cd-switcher a.selected {
  background: #fff;
  color: #323232;
}

@media only screen and (min-width: 600px) {
  .cd-user-modal-container .cd-switcher a {
    height: 70px;
    line-height: 70px;
  }
}

.cd-form {
  padding: 1.4em;
}

.cd-form .fieldset {
  position: relative;
  margin: 1.4em 0;
}

.cd-form .fieldset:first-child {
  margin-top: 0;
}

.cd-form .fieldset:last-child {
  margin-bottom: 0;
}

.cd-form label {
  font-size: 14px;
  color: #444;
  font-weight: 400;
}

.cd-form label.image-replace {
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.cd-form label.cd-username {
}

.cd-form label.cd-email {
}

.cd-form label.cd-password {
}

.cd-form input {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}

.cd-form input.full-width {
  width: 100%;
}

.cd-form input.has-padding {
  padding: 12px 20px 12px 20px;
}

.cd-form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.cd-form input.has-border:focus {
  border-color: #29b2fe;
  outline: none;
}

.cd-form input.has-error {
  border: 1px solid #d76666;
}

.cd-form input[type="password"] {
  /* space left for the HIDE button */
  padding-right: 65px;
}

.cd-form #remember-me {
  border: medium none;
  cursor: pointer;
  position: relative;
}

.cd-form #remember-me:checked {
  background: #29b2fe;
  color: #f6f6f6;
}

.cd-form input[type="submit"]:hover {
  background: #5bbc2e;
}

form.cd-form button {
  background: none;
  display: block;
  margin: 0 auto;
  color: #323232;
}

@media only screen and (min-width: 600px) {
  .cd-form {
    padding: 2em;
  }

  .cd-form .fieldset:first-child {
    margin-top: 0;
  }

  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }

  .cd-form input.has-padding {
    padding: 16px 20px 16px 20px;
  }

  .cd-form input[type="submit"] {
    padding: 16px 0;
  }
}

.cd-form-message {
  padding: 10px 15px 0;
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}

.cd-form-bottom-message {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

.cd-form-bottom-message a {
  color: #fff;
  text-decoration: none;
}

.cd-form-bottom-message a:hover {
  text-decoration: none;
  color: #ff9900;
}

#cd-login,
#cd-signup,
#cd-reset-password {
  display: none;
}

#cd-login.is-selected,
#cd-signup.is-selected,
#cd-reset-password.is-selected {
  display: block;
}

/* --------------------------------------
    6. Header - Navigation
-------------------------------------- */

header {
  position: absolute;
  width: 100%;
  z-index: 999;
  -webkit-transition: 0.6s all ease;
  -moz-transition: 0.6s all ease;
  -ms-transition: 0.6s all ease;
  -o-transition: 0.6s all ease;
  transition: 0.6s all ease;
}

header.navbar-fixed-top {
  position: fixed !important;
}

nav.navbar {
  background: #121111 !important;
  border: none;
  padding: 20px 0;
  margin: 0;
}

.navbar-brand img {
  height: 100px;
  cursor: pointer;
  margin-top: -40px !important;
}

.nav > li > a:focus,
.nav > li > a:hover {
  background: none !important;
}

.nav > li > a:focus {
  color: #f6f6f6 !important;
}

.navbar .navbar-nav > li > a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #f6f6f6;
}

.navbar .navbar-nav > li > a:hover {
  color: #29b2fe;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  background: none !important;
  color: #29b2fe;
}

.navbar .navbar-nav > li > a i {
  display: none;
}

.navbar .navbar-nav > li > a.cart i {
  display: inline-block;
}

header.navbar-fixed-top {
  background: #0c112a;
}

.navbar .navbar-nav > li {
  margin-top: 0;
}

.navbar .navbar-nav > li:last-child {
  margin-top: 0;
}

.navbar .navbar-nav > li > a.cart {
  font-size: 18px;
  overflow: hidden;
  display: block;
}

.navbar .navbar-nav > li > a.cart:hover {
  color: #29b1fd;
}

.navbar .navbar-nav > li > a.cart .btn {
  padding: 0 !important;
  line-height: 1;
}

.navbar .navbar-nav > li > a.cart .count {
  font-size: 14px;
  background: #29b1fd;
  margin-left: 5px;
  width: 25px;
  height: 25px;
  line-height: 1.7;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.navbar .navbar-nav > li > a.cart:hover .count {
  background: transparent;
  color: #29b2fe;
}

/*** Cart on hover ***/

.total-cart ul {
  background: #fff none repeat scroll 0 0;
  padding: 10px 8px 12px;
  position: absolute;
  right: 0;
  top: 50px;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: center top 0;
  -moz-transform-origin: center top 0;
  -ms-transform-origin: center top 0;
  -o-transform-origin: center top 0;
  transform-origin: center top 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  width: 277px;
  z-index: 99;
  border-radius: 15px;
}

.total-cart:hover ul {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  border-top: 0px;
  border-top: solid 4px #29b1fd;
}

.total-cart ul li {
  overflow: hidden;
  padding: 10px;
}

.total-cart ul li .cart-info {
  float: left;
}

.total-cart ul li .cart-info h4 {
}

.total-cart ul li .cart-info h4 a {
  color: #323232;
  font-size: 16px;
  margin-bottom: 10px;
}

.total-cart ul li .cart-info h4 a:hover {
  color: #29b1fd;
}

.total-cart ul li .cart-info span {
  font-size: 14px;
  font-weight: 700;
}

.total-cart ul li .del-icon {
  float: right;
  margin-top: 5px;
  padding-right: 10px;
}

.total-cart ul li .del-icon i {
  cursor: pointer;
  font-size: 17px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.total-cart ul li .del-icon i:hover {
  color: #29b1fd;
}

.subtotal-text,
.subtotal-price {
  float: left;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.subtotal-text {
  color: #fff;
}

.subtotal-price {
  float: right;
}

.cart-btn {
  text-align: center;
}

/*********** 6.1 Dropdown Menu *************/

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus {
  color: #f6f6f6;
  background: none;
}

.navbar-default .navbar-nav > .open > a:hover {
  color: #29b2fe;
  background: none;
}

#main-nav .navbar-nav .dropdown-menu {
  background: #fff none repeat scroll 0 0;
  padding: 10px 5px;
  border-radius: 15px !important;
  border-top: solid 4px #29b1fd;
  display: block;
  min-width: 200px;
  -webkit-transform-origin: center top 0;
  -moz-transform-origin: center top 0;
  -ms-transform-origin: center top 0;
  -o-transform-origin: center top 0;
  transform-origin: center top 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99;
  opacity: 0;
}

#main-nav .navbar-nav .open > .dropdown-menu {
  opacity: 1;
}

#main-nav .navbar-nav .open a {
  color: #29b1fd;
}

#main-nav .navbar-nav .dropdown-menu > li > a {
  padding: 5px 20px;
  font-weight: 700;
  color: #323232;
  text-transform: uppercase;
}

#main-nav .navbar-nav .dropdown-menu > li > a:focus,
#main-nav .navbar-nav .dropdown-menu > li > a:hover {
  background: none;
  color: #29b1df;
}

/*********** 6.1.1 Simple Menu *************/

#main-nav .navbar-nav .simple-menu .dropdown-menu {
  -webkit-transform: translateX(-50%) scaleY(0);
  -moz-transform: translateX(-50%) scaleY(0);
  -ms-transform: translateX(-50%) scaleY(0);
  -o-transform: translateX(-50%) scaleY(0);
  transform: translateX(-50%) scaleY(0);
  max-width: 250px;
  left: 50%;
}

#main-nav .navbar-nav .simple-menu.open .dropdown-menu {
  -webkit-transform: translateX(-50%) scaleY(1);
  -moz-transform: translateX(-50%) scaleY(1);
  -ms-transform: translateX(-50%) scaleY(1);
  -o-transform: translateX(-50%) scaleY(1);
  transform: translateX(-50%) scaleY(1);
}

/*********** 6.1.2 Mega Menu *************/

#main-nav .navbar-nav .mega-menu {
  position: static !important;
}

#main-nav .navbar-nav .mega-menu .dropdown-menu {
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  width: 70%;
  right: 0;
  padding: 10px 0;
}

#main-nav .navbar-nav .mega-menu.open .dropdown-menu {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

#main-nav .navbar-nav .mega-menu .dropdown-menu li {
  padding: 0 20px;
}

#main-nav .navbar-nav .mega-menu .dropdown-menu .mega-menu-inner {
  padding: 10px 5px;
}

#main-nav .navbar-nav .mega-menu .dropdown-menu .mega-menu-inner ul li {
  padding: 5px 0;
}

#main-nav
  .navbar-nav
  .mega-menu
  .dropdown-menu
  .mega-menu-inner
  ul
  li:first-child {
  border-bottom: 1px solid #ddd;
}

#main-nav
  .navbar-nav
  .mega-menu
  .dropdown-menu
  .mega-menu-inner
  ul
  li.menu-title {
  color: #738191;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#main-nav .navbar-nav .mega-menu .dropdown-menu .mega-menu-inner ul li a {
  color: #323232;
  text-transform: uppercase;
  font-weight: 700;
}

#main-nav .navbar-nav .mega-menu .dropdown-menu .mega-menu-inner ul li a:hover {
  color: #29b1fd;
}

/* --------------------------------------
    7. Main Section
-------------------------------------- */

section#home {
  position: relative;
}

/* ---- Slider ---- */

.demo1 {
  top: 0;
  height: -webkit-calc(100% - 180px);
  height: -moz-calc(100% - 180px);
  height: calc(100% - 180px);
  position: relative;
}

.swiper-slide-active {
  z-index: 100;
}

.swiper-slide {
  overflow: hidden;
}

.swiper-slide .bg-image img {
  width: 100%;
}

.slider-content {
  position: relative;
  top: 35%;
  z-index: 15;
  text-align: center;
}

.slider-content h2 {
  font-size: 48px;
  color: #f6f6f6;
  padding-bottom: 15px;
  line-height: 1.1;
}

.slider-content p {
  color: #9cb0c2;
  padding-bottom: 15px;
}

.slider-content a {
  color: #f6f6f6;
}

.slider-content a i {
  margin-right: 10px;
}

video.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../video/video.jpg) no-repeat;
  background-size: cover;
  -webkit-transition: 1s opacity;
  -moz-transition: 1s opacity;
  -ms-transition: 1s opacity;
  -o-transition: 1s opacity;
  transition: 1s opacity;
}

.video-bg::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* ---- Previous & Next Slider buttons ---- */

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 55px;
  color: #29b2fe;
  display: none;
}

.swiper-button-next i {
  float: right;
  display: none;
}

/* ---- Previous & Next Slider buttons ---- */

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 2px solid #29b1fd;
  background: none;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  border: none;
  background: #29b1fd;
  opacity: 1;
}

/* ---- Demo2 ---- */

.demo2 {
  height: 100%;
  height: -webkit-calc(100% - 47px);
  height: -moz-calc(100% - 47px);
  height: calc(100% - 47px);
  background-size: cover;
  background: url("../images/img/image1.jpg");
}

.demo-content {
  position: relative;
  top: 35%;
  z-index: 15;
  text-align: center;
}

.demo-content h2 {
  font-size: 42px;
  color: #f6f6f6;
  padding-bottom: 15px;
  line-height: 1.1;
  letter-spacing: -1px!important;
}

.demo-content p {
  color: #fff!important;
  padding-bottom: 15px;
  line-height: 1.5;
  font-size: 18px!important;
}

.demo-content a {
  color: #f6f6f6;
}

.demo-content a i {
  margin-right: 10px;
}

/* ---- Demo3 ---- */

.demo3 {
  height: -webkit-calc(100% - 47px);
  height: -moz-calc(100% - 47px);
  height: calc(100% - 47px);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* ---- Demo4 - Homepage 2 ---- */

.demo4 {
  /* height: -webkit-calc(100% - 47px);
  height: -moz-calc(100% - 47px); */
  height: calc(90vh - 47px);
  background-size: cover;
  /* background: linear-gradient(to bottom, #0c112a -40%, #29b2fe 140%); */
}

.demo4:before {
  content: "";
  background: url(../images/icons/home-lineart.svg) no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  width: 100%;
  height: 100%;
}

.demo5 {
  height: calc(90vh - 47px);
  /* vh use karein taaki screen ki height le */
  background-image: url("../images/img/about-us-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat!important;
}

.demo5:before {
  content: "";
  background: url("../images/img/about-us-bg.png") no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  width: 100%;
  height: 100% !important;
  background-repeat: no-repeat!important;
}

.demo6 {
  /* height: -webkit-calc(100% - 47px);
  height: -moz-calc(100% - 47px); */
  height: calc(90vh - 47px);
  background-size: cover;
  /* background: linear-gradient(to bottom, #0c112a -40%, #29b2fe 140%); */
}

.demo6:before {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/dailytop40.png") no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  width: 100%;
  height: 100%;
  /* content: '';
    background: url("images/top-daily-40.avif") no-repeat;
    background-size: cover;
    background-position: center bottom;
    position: absolute;
    width: 100%;
    height: 90%!important; */
}

.demo7 {
  height: calc(90vh - 47px);
  /* vh use karein taaki screen ki height le */
  background: url("../images/img/how-it-works.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: -webkit-calc(100% - 47px);
    height: -moz-calc(100% - 47px);
    height: calc(100% - 47px);
    background-size: cover; */
  /* background: linear-gradient(to bottom, #0c112a -40%, #29b2fe 140%); */
}

.demo7:before {
  content: "";
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../images/img/how-it-works.png") no-repeat;
  /* background: url('../images/img/image1.jpg') no-repeat; */
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  width: 100%;
  height: 100%;
}

.demo8 {
  height: calc(90vh - 47px);
  /* vh use karein taaki screen ki height le */
  background: url("../images/img/designarena_image.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.demo8:before {
  content: "";
  background: url("../images/img/designarena_image.png") no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  width: 100%;
  height: 100%;
}
.demo9 {
  position: relative; /* Essential for the layer to stay inside */
  height: calc(94vh - 47px);
  background: url("../images/img/contact-us.png") no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.demo9:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark layer: change 0.6 to higher (0.8) for darker or lower (0.3) for lighter */
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Ensure your text/content stays on top of the dark layer */
.demo9 > * {
  position: relative;
  z-index: 2;
  color: white; /* Makes text readable on dark background */
}

.demo10 {
  height: calc(94vh - 47px);
  /* vh use karein taaki screen ki height le */
  background: url("../images/img/41e2f8c9-f7db-4697-b11a-96f38effafdf (1).jpg")
    no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.demo10:before {
  content: "";
  background: url("../images/img/41e2f8c9-f7db-4697-b11a-96f38effafdf (1).jpg")
    no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  width: 100%;
  height: 100%;
}

/*********** 7.1 Domain Searcher *************/

.domain {
  background: #0c112a;
  color: #f6f6f6;
  position: relative;
}

.domain .form-group {
  position: relative;
}

.domain .form-group .form-control {
  width: 80%;
  float: left;
  padding-left: 30px;
}

.domain .form-group .search-filters {
  float: left;
}

.domain .form-group input[type="search"] {
  border-radius: 5px !important;
  border: none;
  box-shadow: none;
}

.domain .form-group button {
  float: left;
  padding: 0 30px;
}

.domain .form-group button:focus {
  color: #f6f6f6;
}

.domain .form-group button {
  background: none !important;
}

.domain .form-group .search-filters .domain-selector,
.domain .form-group button[type="submit"],
.domain .form-group input[type="search"] {
  height: 45px;
  outline: none;
}

.domain-check {
  margin-top: 10px;
}

.domain-check ul {
  padding: 0;
  margin: 0;
}

.domain-check ul li {
  color: #9cb0c2;
  font-size: 15px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
}

.domain-check li > input {
  border: medium none;
  cursor: pointer;
  margin: 0 6px 0 0;
  opacity: 0;
  position: relative;
  vertical-align: middle;
  z-index: 3;
}

.domain-check li > input + label {
  background: #fff none repeat scroll 0 0;
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 15px;
  z-index: 1;
  border-radius: 2px;
}

.domain-check li > input:checked + label:before {
  content: "\f00c";
  font-family: "fontawesome";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 11px;
  color: #fff;
  line-height: 15px;
  text-align: center;
  background: #29b2fe;
  border-radius: 2px;
}

/* ----------------------------------------------------------------------------
    8. SECTIONS
---------------------------------------------------------------------------- */

/* --------------------------------------
    8.1 About
-------------------------------------- */

#about {
  background:
        /*url('../images/about.svg')*/ #29b1fd no-repeat 100% 100%;
  background-size: 40%;
  overflow: hidden;
}

#about h2 {
  color: #f6f6f6;
}

#about p {
  font-size: 16px;
  font-weight: 300;
  color: #ededed;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.3px;
}

#about a {
  margin: 10px 0 0 0;
  color: #29b1fd;
  background: #f6f6f6;
}

#about a:hover {
  color: #f6f6f6;
  background: none;
}

#about .about-image {
  position: relative;
  z-index: 3;
}

#about .about-image img {
  width: 100%;
}

/* ---- Clouds ---- */

.clouds {
  position: relative;
}

.clouds img {
  position: absolute;
  top: 0;
  z-index: 0;
}

.clouds img.cloud1 {
  top: -35px;
  width: 120px;
  animation: cloud1 35s linear 1s infinite;
  opacity: 0;
}

.clouds img.cloud2 {
  top: 40px;
  width: 80px;
  -webkit-animation: cloud2 15s linear 7s infinite;
  animation: cloud2 15s linear 7s infinite;
  opacity: 0;
}

.clouds img.cloud3 {
  top: 115px;
  width: 95px;
  -webkit-animation: cloud3 30s linear 14s infinite;
  animation: cloud3 35s linear 14s infinite;
  opacity: 0;
}

.clouds img.cloud4 {
  top: 200px;
  width: 90px;
  -webkit-animation: cloud4 55s linear 16s infinite;
  animation: cloud4 40s linear 16s infinite;
  opacity: 0;
}

.clouds img.cloud5 {
  top: 300px;
  width: 130px;
  -webkit-animation: cloud5 25s linear 17s infinite;
  animation: cloud5 55s linear 17s infinite;
  opacity: 0;
}

/* --------------------------------------
    8.2 Services
-------------------------------------- */

/*#services2 {*/
/*    background: #f4f4f4;*/
/*}*/

#services.row {
  margin: 0;
}

.service img {
  height: 100px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.service img:hover {
  -webkit-transform: scale(1.1) translateY(-10px);
  -moz-transform: scale(1.1) translateY(-10px);
  -ms-transform: scale(1.1) translateY(-10px);
  -o-transform: scale(1.1) translateY(-10px);
  transform: scale(1.1) translateY(-10px);
}

/* ---- Information ---- */

.info:nth-child(2n) {
  background: #f4f4f4 !important;
}

.info-text ul {
  padding-left: 20px;
}

.info-text ul li {
  font-size: 16px;
  padding: 10px 0 0 0;
  color: #738191;
  list-style: none;
}

.info-text ul li:before {
  content: "\f00c";
  font-family: "fontawesome";
  margin-right: 10px;
  color: #2ecc71;
}

.info .info-text p {
  text-align: left !important;
}

.info-image:before {
  content: url("../images/clouds/cloud-blue.svg");
  display: block;
  width: 100%;
}

.info-image img {
  width: 100%;
  max-width: 160px;
  text-align: center;
  float: right;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.info .info-image img:hover {
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
  transform: scale(0.85);
  top: 30px;
}

/* --------------------------------------
    8.3 Subscribe
-------------------------------------- */

section#subscribe {
  background: #29b1fd;
  color: #f6f6f6;
  position: relative;
  overflow: hidden;
  max-width: 1116px;
  margin: 100px auto;
  border-radius: 20px;
  padding: 20px 0 !important;
}

section#subscribe-2 {
  background: #29b1fd;
  color: #f6f6f6;
  position: relative;
  overflow: hidden;
  max-width: 1116px;
  margin: 100px auto;
  border-radius: 20px;
  padding: 30px 9px;
}

.subscribe-form {
}

.subscribe-form h2 {
  letter-spacing: 1px;
  padding: 0;
  color: #fff;
  margin: 0 auto;
  line-height: 1.5;
}

.subscribe-form h2 small {
  color: #f6f6f6;
  display: block;
  font-weight: 300;
  font-size: 16px!important;
}

.subscribe-form .form-inline .form-group {
  width: 100%;
}

.subscribe-form .form-inline .form-group .input-group {
  width: 90%;
  display: flex;
  justify-content: flex-end;
}

.subscribe-form .form-inline .form-group .input-group .form-control {
  height: 45px;
  padding: 0 30px;
  border: none;
  border-radius: 5px;
  width: 80%;
}

.subscribe-form .form-inline .form-group .input-group button {
  height: 45px;
  background: none;
}

.subscribe-form .form-inline .form-group .input-group button:hover {
  color: #29b1fd;
  background: #fff;
}

section#subscribe .clouds {
  position: relative;
  opacity: 0.5;
}

section#subscribe .clouds img.cloud1 {
  width: 130px;
  top: -18px;
}

.background-banner {
  background-color: #29b3fe;
}

/* --------------------------------------
    8.4 Team
-------------------------------------- */

#team {
  padding: 40px 0;
}

.member {
  border: 1px solid #ecf3f6;
  border-radius: 5px;
  width: 80%;
  margin: 0 auto;
}

.member .member-details {
  position: relative;
}

.member img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: 0 0;
}

.member h4 {
  text-align: center;
  font-size: 18px;
  margin-top: 15px !important;
  letter-spacing: 0.8px;
}

.member p {
  text-align: center;
  font-size: 14px;
}

.member .member-details .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  filter: alpha(opacity=0);
  background-color: rgba(0, 0, 0, 0.6);
  -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;
}

.member .member-details .member-social {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  bottom: -5%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.member:hover .member-social {
  bottom: 20%;
}

.member .member-details .member-social a {
  display: inline-block;
}

.member .member-details .member-social a i {
  font-size: 20px;
  color: #fff;
  width: 48px;
  line-height: 48px;
  height: 48px;
  -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;
}

.member:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.member:hover .member-info {
  opacity: 0;
  filter: alpha(opacity=0);
}

.member:hover {
  border: 1px solid transparent;
}

.member-social a i:hover {
}

.member-info {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.member-info-overlay {
  padding-top: 30%;
}

.member-info-overlay h4 {
  color: #f4f4f4;
  font-size: 22px;
}

.member-info-overlay p {
  color: #f4f4f4;
  font-size: 15px;
}

/* --------------------------------------
    8.5 Pricing
-------------------------------------- */
/*.navbar {*/
/*    top:-75px;*/
/*}*/
#pricing-table {
  padding: 0 0;
}

/* --------------------------------------
    8.6 CountUp
-------------------------------------- */

section#countup {
  background: url(../images/img/image1.jpg) fixed;
  background-size: cover;
  color: #f6f6f6;
  text-align: center;
  position: relative;
}

section#countup:before {
  content: "";
  background-color: #fff !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

section#countup .container-fluid {
  z-index: 3;
  display: flex;
}

section#countup img {
  width: 60px;
  display: block;
  margin: 0 auto;
}

section#countup span.counter {
  font-size: 38px;
  font-weight: 300;
  color: #29b3fe;
  display: flex;
  margin-top: 10px;
}

section#countup h3 {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 5px;
}

/* --------------------------------------
    8.7 Testimonials
-------------------------------------- */

#testimonials {
}

/* --------------------------------------
    8.8 Blog
-------------------------------------- */

/*********** 8.8.1 Blog Section Version 1 *************/
section#latest-news {
  background-color: #f4f4f4;
}

.news-content {
}

.blog-single {
  /* background-color: #fff; */

  background: var(--card-bg);
  width: 100%;
  border-radius: 10px;
}

.blog-post-thumbnail {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.blog-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.blog-post-thumbnail.normal-post:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.4;
}

.blog-post-title {
  margin: 0 25px;
  border-bottom: 1px solid #eee;
}

.blog-post-title h3,
.blog-post-title h3 > a {
  font-size: 18px;
  text-transform: uppercase;
  /* color: #323232; */
}

.blog-post-title h3 > a:hover {
  color: #29b2fe;
}

.blog-post-title p {
  font-size: 12px;
  letter-spacing: 0.5px;
}

.blog-post-title .blog-author {
  text-transform: uppercase;
  font-weight: 700;
}

.blog-post-title .blog-date:before {
  content: "| ";
}

.blog-post-details {
  margin: 0 25px;
}

.blog-more-btn {
  /* color: #323232; */
}

.blog-more-btn:hover,
.blog-more-btn:focus {
  text-decoration: none;
  outline: none;
}

.blog-more-btn i {
  margin-left: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-more-btn:hover i {
  margin-left: 10px;
  color: #29b2fe;
}

/*********** 8.8.2 Blog Section Version 2 *************/
section#latest-news2 {
  background-color: #f4f4f4;
}

section#latest-news2 .blog-post {
  max-height: 350px;
  background: #0c112a;
  position: relative;
  padding: 0;
  overflow: hidden;
}

section#latest-news2 .blog-post .post-info {
  width: 100%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
  padding: 0 50px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0.9;
}

section#latest-news2 .blog-post:hover .post-info {
  bottom: 20px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

section#latest-news2 .blog-post .post-info a.blog-post-link {
  font-size: 24px;
  color: #f4f4f4;
  display: block;
}

section#latest-news2 .blog-post:hover .post-info a.blog-post-link {
}

section#latest-news2 .blog-post .post-info span {
  font-size: 14px;
  color: #f4f4f4;
  opacity: 0.9;
}

section#latest-news2 .blog-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section#latest-news2 .blog-post:hover img {
  opacity: 0.1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

/* Featured Blog Post */

section#latest-news2 .blog-post-featured {
  height: 620px;
  max-height: 620px;
  background: #0c112a;
  position: relative;
  padding: 0;
  overflow: hidden;
}

section#latest-news2 .blog-post-featured span.featured {
  position: absolute;
  z-index: 1;
  box-shadow: none;
  top: 30px;
  right: 50px;
  color: #f4f4f4;
  background: #29b1fd;
}

section#latest-news2 .blog-post-featured .post-info {
  width: 100%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
  padding: 0 50px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0.9;
}

section#latest-news2 .blog-post-featured:hover .post-info {
  bottom: 20px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

section#latest-news2 .blog-post-featured .post-info a.blog-post-link {
  font-size: 24px;
  color: #f4f4f4;
  display: block;
}

section#latest-news2 .blog-post-featured:hover .post-info a.blog-post-link {
}

section#latest-news2 .blog-post-featured .post-info span {
  font-size: 14px;
  color: #f4f4f4;
  opacity: 0.9;
}

section#latest-news2 .blog-post-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

section#latest-news2 .blog-post-featured:hover img {
  opacity: 0.2;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

/* --------------------------------------
    8.9 Partners
-------------------------------------- */

#partners {
  background-color: #fff;
}

#partners .owl-item {
  min-height: 30px;
}

#partners img {
  width: 130px;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  margin: 0 auto;
  display: block;
}

#partners img:hover {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/* --------------------------------------
    8.10 Buy Now
-------------------------------------- */

section.buy-now {
  background: url(../images/img/image2.png) no-repeat center bottom #0c112a;
  background-size: cover;
  position: relative;
}

section.buy-now h2 {
  line-height: 1.5;
}

/* --------------------------------------
    9. Footer
-------------------------------------- */

footer {
  background: #121111 !important;
  position: relative;
}

/* ---- Footer Contact ---- */

.top-footer #contact a {
  text-align: center !important;
  display: block;
  height: 0;
  font-size: 35px;
  color: #f6f6f6;
  position: relative;
}

.top-footer #contact a:hover {
  color: #29b2fe !important;
}

.top-footer #contact a:before {
  content: url("../images/clouds/cloud-dark.svg");
  width: 140px;
  height: 88px;
  display: block;
  top: -50px;
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: default;
}

.top-footer #contact a i {
  position: relative;
  top: -38px;
  cursor: pointer;
}

/* ---- Expandable Contact Form ---- */

.top-footer #contact .contact-us .contact-form {
  display: none;
  -webkit-animation: slide-down 0.8s ease;
  -moz-animation: slide-down 0.8s ease;
}

.contact-form .success,
.contact-form .error {
  display: none;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

.contact-form .success {
  color: #2ecc71;
}

.contact-form .error {
  color: #ff0000;
}

.contact-form .input-box {
  height: 45px;
  border: 1px solid rgba(246, 246, 246, 0.5);
  box-shadow: none;
}

.contact-form .textarea-box {
  border: 1px solid rgba(246, 246, 246, 0.5);
  box-shadow: none;
  max-width: 100%;
}

.contact-form .input-box:active,
.contact-form .input-box:focus,
.contact-form .textarea-box:active,
.contact-form .textarea-box:focus {
  color: #f6f6f6;
  border: 1px solid #29b2fe;
}

.contact-form button {
  margin: 0 auto;
  display: block;
  background: none;
  color: rgba(246, 246, 246, 0.5);
  border: 1px solid rgba(246, 246, 246, 0.5);
}

.contact-form button:hover {
  color: #29b2fe;
}

/* ---- Footer Info ---- */

.top-footer .footer-info {
}

.top-footer .about img {
  height: 30px;
}

.top-footer h4 {
  color: #f6f6f6;
  text-transform: uppercase;
  padding-top: 5px;
}

.top-footer .footer-links {
  list-style: none;
  text-align: left;
  line-height: 2;
}

.top-footer .footer-links li {
  color: #738191;
}

.top-footer .footer-links li i {
  font-size: 16px;
  margin-right: 10px;
  width: 30px;
}

.top-footer .footer-links li a {
  color: #738191;
}

.top-footer .footer-links li a:hover {
  color: #29b2fe;
}

.payment {
}

.payment ul li {
  padding-right: 10px;
}

/* ---- Copyright Section ---- */

footer .copyright {
  background: #090d20;
  color: #738191;
}

/* --------------------------------------
    10. Pages
-------------------------------------- */

.page-title {
  position: relative;
  background: url("../images/img/image1.jpg");
  background-size: cover;
  z-index: 0;
  color: #f6f6f6 !important;
  text-align: center;
}

.page-title > div {
  z-index: 3;
  position: relative;
}

.page-title h2 {
  letter-spacing: 2px;
}

.page-title .breadcrumbs h5 {
  font-weight: 400;
}

/*********** 10.1 Services Page *************/

.skillbar {
  position: relative;
  display: block;
  margin-bottom: 25px !important;
  width: 80%;
  margin: 0 auto;
  background: #eaeaea;
  height: 35px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  -moz-transition-property: width, background-color;
  -ms-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
}

.skillbar:last-child {
  margin-bottom: 0 !important;
}

.skillbar-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  text-align: center;
  font-size: 14px;
  color: #fefefe;
  background: #17517e;
  border-radius: 3px 0 0 3px;
}

.skillbar-title span {
  display: block;
  padding: 0 20px;
  line-height: 35px;
}

.skillbar-bar {
  height: 35px;
  width: 0px;
  background: #29b1fd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.skill-bar-percent {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 12px;
  height: 35px;
  line-height: 35px;
}

/* Skill Charts */

.chart {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  text-align: center;
}

.chart span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Tabs */

section.services-page3 {
  background: #f4f4f4;
}

ul.custom-tabs {
  border: 0;
}

ul.custom-tabs li {
  text-transform: uppercase;
  text-align: center;
}

ul.custom-tabs > li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-bottom: 1px solid transparent;
  border-radius: 5px 5px 0 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0.7;
}

ul.custom-tabs > li:hover:before {
  -webkit-transform: translateY(75%);
  -moz-transform: translateY(75%);
  -ms-transform: translateY(75%);
  -o-transform: translateY(75%);
  transform: translateY(75%);
}

ul.custom-tabs > li.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}

ul.custom-tabs li a {
  font-weight: 700;
  color: #323232;
  background: none;
  border: none;
  z-index: 2;
  padding: 10px 0;
}

ul.custom-tabs li a:hover {
  background: none;
}

ul.custom-tabs > li.active > a,
ul.custom-tabs > li.active > a:focus,
ul.custom-tabs > li.active > a:hover {
  color: #29b1fd !important;
  cursor: default;
  background: none !important;
  border: none;
  border-bottom-color: transparent;
}

.tab-content.custom-tabs {
  position: relative;
  border: 1px solid #eee;
  padding: 40px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

/*********** 10.2 FAQ Page *************/

.live-search-box {
  width: 100%;
  display: block;
  padding: 15px;
  color: #999;
  border: 1px solid #999;
  border-radius: 5px;
}

.live-search-box:focus {
  border: 1px solid #29b1fd;
}

.topic {
  padding: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: solid 1px #ebebeb;
}

.topic.expanded {
  background-color: #f4f4f4;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.topic .open {
  cursor: pointer;
  display: block;
  padding: 0px;
}

.topic .open:hover .question {
  color: #29b1fd;
}

.topic .question {
  padding: 20px 0;
  color: #323232;
  transition: all 0.3s ease;
}

.topic .answer {
  font-size: 16px;
  line-height: 24px;
  display: none;
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.topic i {
  font-size: 18px;
  color: #323232;
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.topic.expanded i {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-18deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*********** 10.3 Cart Page *************/

section.cart-page .main-content {
  padding-bottom: 100px;
}

.cart-right {
  text-align: right;
}

.cart-content {
  margin-top: 30px;
}

.cart-content > thead > tr > th {
  text-transform: capitalize;
  font-size: 22px;
  border-bottom: 1px solid #ddd;
}

.cart-content td {
}

.cart-content .product-name {
  margin: 22px 0 0 7px;
}

.cart-content .product-name h3 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 20px;
}

.cart-content .product-name .tag-line {
  font-style: italic;
  font-size: 13px;
  margin-bottom: 28px;
  color: #666;
}

.cart-content .term input[type="number"] {
  width: 50%;
  text-align: center;
  padding: 10px;
  margin-top: 25px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.cart-content .term input::-webkit-outer-spin-button,
.cart-content .term input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}

.cart-content .price {
  font-size: 24px;
  color: #29b1fd;
  font-weight: bold;
  padding: 30px 0;
}

.cart-content .delete {
  margin-top: 35px;
  font-size: 18px;
  display: block;
  float: right;
  text-align: center;
}

.cart-content .delete a {
  color: #999;
}

.cart-content .delete a:hover {
  color: #29b1fd;
}

.subtotal-content {
  border: 1px solid #ddd;
  padding: 30px 10px;
}

.subtotal-content > div {
  padding: 10px 0;
  margin: 0;
  clear: both;
}

.subtotal-content .tax {
  font-style: italic;
  color: #666;
}

.subtotal-content .coupon {
  padding-bottom: 25px;
}

.subtotal-content .coupon h4 {
  padding-bottom: 20px;
}

.subtotal-content .coupon input[type="text"] {
  height: 37px;
  border-radius: 5px;
  border: 1px solid #ededed;
  color: #999;
  padding-left: 20px;
  font-size: 13px;
  max-width: 120%;
}

.subtotal-content .coupon a {
  margin: 0;
}

.subtotal-content .order-total {
  padding: 25px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.subtotal-content .order-total h4 span {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  font-style: italic;
}

.subtotal-content .order-total span.price {
  font-size: 24px;
  color: #29b1fd;
  font-weight: bold;
}

.subtotal-content .cta {
  text-align: center;
  padding: 25px 0;
  border-bottom: 1px solid #ddd;
}

.subtotal-content .cta a {
  font-weight: bold;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.subtotal-content .cta a:hover {
  background: none;
  color: #29b1fd;
  font-weight: bold;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.subtotal-content .support {
  padding: 25px 0;
}

.subtotal-content .support h4 {
  padding-bottom: 15px;
}

.subtotal-content .support a {
  font-size: 18px;
  font-weight: 600;
}

/*********** 10.4 Domain Page *************/

.domain-page {
  background: #f4f4f4;
}

.domain-results ul {
  background: #fff;
  list-style: none;
  border-top: 7px solid #29b1fd;
  margin: 0;
  padding: 0;
}

.domain-results ul li {
  padding: 30px;
  border-bottom: 1px solid #e8e8e8;
}

.domain-results ul li > div {
  display: inline-block;
}

.domain-results ul li .domain-type span {
  font-size: 20px;
  font-weight: 800;
  text-transform: lowercase;
}

.domain-results ul li .price-action {
  float: right;
}

.domain-results ul li .price-action > * {
  float: left;
}

.domain-results ul li .price {
  font-size: 20px;
  font-weight: 700;
  color: #29b1fd;
  padding: 5px;
}

.domain-results ul li .price-strike {
  font-size: 14px !important;
  line-height: 2;
  text-decoration: line-through;
  padding-right: 0;
  color: #323232;
}

/* sidebar */

aside .domain-sidebar {
  background: #fff;
  border-top: 7px solid #29b1fd;
  padding: 30px;
}

aside .domain-sidebar .extensions ul {
  padding: 10px 20px;
  list-style: none;
  margin-top: 20px;
  overflow-y: scroll;
  height: 200px;
  background: #f4f4f4;
}

aside .domain-sidebar .extensions ul li {
  padding: 5px 0;
}

aside .domain-sidebar .extensions ul li input {
  height: 15px;
  width: 15px;
}

aside .domain-sidebar .extensions ul li label {
  font-size: 16px;
  padding-left: 5px;
}

/* price filter */

.price-filter {
  padding: 30px 0;
}

.price-filter
  .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
  background: #f4f4f4;
  border: medium none;
  border-radius: 0;
  height: 10px;
  margin: 30px 0;
}

.price-filter .ui-slider-handle.ui-state-default.ui-corner-all {
  background: #fff none repeat scroll 0 0;
  border: 3px solid #29b1fd;
  border-radius: 50%;
  height: 21px;
  margin-top: -2px;
  width: 21px;
  outline: none;
}

.price-filter .ui-slider-range {
  background: #29b1fd none repeat scroll 0 0;
}

.price-slider-amount > input[type="text"] {
  border: 1px solid #e8e8e8;
  font-weight: bold;
  height: 40px;
  letter-spacing: 1px;
  text-align: center;
  width: 65%;
}

.price-slider-amount > button {
  float: right;
  font-weight: bold;
  height: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 30%;
}

/* banner */

aside .banner {
  background: #fff;
}

/*********** 10.5 Testimonials Page *************/

/***** 10.5.1 Testimonial 1 *****/

.testimonial .owl-wrapper-outer {
  padding: 60px 0;
}

.testimonial .owl-item {
  -webkit-transform: scale(0.7) !important;
  -moz-transform: scale(0.7) !important;
  -ms-transform: scale(0.7) !important;
  -o-transform: scale(0.7) !important;
  transform: scale(0.7) !important;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonial .owl-item .item .customer {
  opacity: 0;
}

.testimonial .owl-item.active.center {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  opacity: 1;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.testimonial .owl-item.active.center .item .customer {
  opacity: 1;
}

.testimonial .owl-item .item {
  text-align: center;
}

.testimonial .owl-item .item .review {
  text-align: center;
  background: url(../images/clouds/cloud-blue.svg) no-repeat center bottom;
}

.testimonial .owl-item .item .review .review-inner {
  padding: 40px;
  position: relative;
}

.testimonial .owl-item .item .review img {
  display: none;
}

.testimonial .owl-item .item .review .review-inner blockquote {
  font-size: 14px;
  color: #fff;
  padding-top: 80px;
  margin: 0;
  border: 0;
  position: relative;
}

.testimonial .owl-item .item .review .review-inner blockquote:before {
  content: "\f10d";
  font-family: "fontawesome";
  font-size: 55px;
  display: block;
  position: absolute;
  color: #f6f6f6;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}

.testimonial .owl-item .item .customer h3:before {
  content: "";
  width: 2px;
  height: 30px;
  display: block;
  border: 1px dashed #999;
  margin: 0 auto;
}

/* ---- Pagenition ---- */

.testimonial .owl-nav,
.testimonial2 .owl-nav,
.testimonial3 .owl-nav {
  text-align: center;
  margin-top: 60px;
}

.testimonial .owl-controls .owl-page,
.testimonial2 .owl-controls .owl-page,
.testimonial3 .owl-controls .owl-page {
  width: 12px;
  height: 12px;
  background: #f4f4f4;
  border: 1px solid #d2d2d2;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

.testimonial .owl-nav .owl-prev,
.testimonial2 .owl-nav .owl-prev,
.testimonial3 .owl-nav .owl-prev {
  margin-right: 10px;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next,
.testimonial2 .owl-nav .owl-prev,
.testimonial2 .owl-nav .owl-next,
.testimonial3 .owl-nav .owl-prev,
.testimonial3 .owl-nav .owl-next {
  background: #29b2fe;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
}

.testimonial .owl-nav .owl-prev i,
.testimonial .owl-nav .owl-next i,
.testimonial2 .owl-nav .owl-prev i,
.testimonial2 .owl-nav .owl-next i,
.testimonial3 .owl-nav .owl-prev i,
.testimonial3 .owl-nav .owl-next i {
  font-size: 28px;
}

.testimonial .owl-nav .owl-prev i,
.testimonial2 .owl-nav .owl-prev i,
.testimonial3 .owl-nav .owl-prev i {
  margin-right: 4px;
}

.testimonial .owl-nav .owl-next i,
.testimonial2 .owl-nav .owl-next i,
.testimonial3 .owl-nav .owl-next i {
  margin-left: 4px;
}

/***** 10.5.2 Testimonial 2 *****/

section.testimonials-page2 {
  background: #f4f4f4;
}

.testimonial2 figure {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #ffffff;
  text-align: left;
  background-color: #0c112a;
  padding-top: 130px;
  border-radius: 20px;
}

.testimonial2 figure figcaption {
  width: 100%;
  background-color: rgba(41, 177, 253, 0.25);
  padding: 10px 10px 50px 25px;
  position: relative;
}

.testimonial2 figure figcaption:before {
  position: absolute;
  content: "";
  bottom: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 55px 0 0 400px;
  border-color: transparent transparent transparent rgba(41, 177, 253, 0.25);
}

.testimonial2 figure .profile {
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  bottom: 100%;
  left: 25px;
  z-index: 1;
  width: 90px;
  height: 90px;
  opacity: 1;
}

.testimonial2 figure h4 {
  position: absolute;
  top: 30px;
  right: 30px;
  text-transform: uppercase;
}

.testimonial2 figure h4 span {
  display: block;
  font-weight: 400;
  opacity: 0.8;
  text-transform: capitalize;
}

.testimonial2 figure blockquote {
  letter-spacing: 1px;
  opacity: 0.8;
  font-style: italic;
  font-weight: 300;
  border: none;
  margin: 0;
  padding: 10px 10px 0 0;
}

.testimonial2 figure blockquote:after {
  content: "\f10d";
  font-family: "fontawesome";
  font-style: normal;
  position: absolute;
  font-size: 60px;
  color: #ffffff;
  opacity: 0.2;
  right: 30px;
  bottom: -30px;
}

/***** 10.5.3 Testimonial 3 *****/

.testimonial3 .testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 7px solid #29b2fe;
}

.testimonial3 .review-inner {
  width: 70%;
  margin: 0 auto;
}

.testimonial3 blockquote {
  padding: 0;
  margin: 0;
  border: none;
  font-size: 24px;
  font-weight: 300;
}

/*********** 10.6 Pricing Tables Page *************/

.pricing-page1 {
  background: #f6f6f6;
}

/*** 10.6.1 Pricing Table 1 ***/

.pricing-table1 {
  border-radius: 30px;
  overflow: hidden;
}

.pricing-table1 .pricing-plan {
  background: #fff;
  text-align: center;
  border-right: 1px solid #ecf3f6;
}

.pricing-table1 .pricing-plan:first-child {
  border-radius: 30px 0 0 30px;
}

.pricing-table1 .pricing-plan:last-child {
  border: none;
  border-radius: 0 30px 30px 0;
}

.pricing-table1 .pricing-plan:first-child .price {
  border-radius: 30px 0 0 0;
}

.pricing-table1 .pricing-plan:last-child .price {
  border-radius: 0 30px 0 0;
}

.pricing-table1 .pricing-plan .price {
  padding: 40px 0;
  color: #f4f4f4;
}

.pricing-table1 .pricing-plan .price > div {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.pricing-table1 .pricing-plan:hover .price > div {
  -webkit-transform: translate(0, -25px) scale(1.2);
  -moz-transform: translate(0, -25px) scale(1.2);
  -ms-transform: translate(0, -25px) scale(1.2);
  -o-transform: translate(0, -25px) scale(1.2);
  transform: translate(0, -25px) scale(1.2);
}

.pricing-table1 .pricing-plan .price .currency {
  font-size: 24px;
  margin-left: -15px;
}

.pricing-table1 .pricing-plan .price .amount {
  font-size: 52px;
  font-weight: bold;
  vertical-align: middle;
}

.pricing-table1 .pricing-plan .price .month {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: -10px;
}

.pricing-table1 .pricing-plan .plan-type {
  margin-top: -13px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pricing-table1 .pricing-plan:hover .plan-type {
  -webkit-transform: translate(0, -15px);
  -moz-transform: translate(0, -15px);
  -ms-transform: translate(0, -15px);
  -o-transform: translate(0, -15px);
  transform: translate(0, -15px);
}

.pricing-table1 .pricing-plan .plan-type span {
  font-size: 16px;
  padding: 8px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pricing-table1 .pricing-plan:hover .plan-type span {
  border-radius: 20px 20px 0 0;
  border-bottom: 2px solid transparent;
  border: 2px solid #fff !important;
  color: #fff !important;
  background: transparent !important;
}

.pricing-table1 .pricing-plan .nav {
  padding-top: 30px;
  line-height: 50px;
}

.pricing-table1 .pricing-plan .nav li {
  border-bottom: 1px solid #ecf3f6;
  color: #323232;
}

.pricing-table1 .pricing-plan .nav li .fa-check {
  color: #52a51b;
}

.pricing-table1 .pricing-plan .nav li .fa-times {
  color: #cf1b41;
}

.pricing-table1 .pricing-plan .btn {
  margin: 30px 0;
  color: #323232;
}

/* ---- Starter Plan ---- */

.pricing-table1 #starter.pricing-plan .price {
  background: #29b2fe;
}

.pricing-table1 #starter.pricing-plan .plan-type span {
  color: #29b2fe;
  background: #fff;
  border: 2px solid #29b2fe;
}

.pricing-table1 #starter.pricing-plan .btn-blue:hover {
  color: #29b2fe !important;
}

/* ---- Basic Plan ---- */

.pricing-table1 #basic.pricing-plan .price {
  background: #209de1;
}

.pricing-table1 #basic.pricing-plan .plan-type span {
  color: #209de1;
  background: #fff;
  border: 2px solid #209de1;
}

.pricing-table1 #basic.pricing-plan .btn-blue.btn:before,
.pricing-table1 #basic.pricing-plan .btn-blue:after {
  border-color: #209de1 !important;
}

.pricing-table1 #basic.pricing-plan .btn-blue:hover {
  color: #209de1 !important;
}

/* ---- Agency Plan ---- */

.pricing-table1 #agency.pricing-plan .price {
  background: #0b7bba;
}

.pricing-table1 #agency.pricing-plan .plan-type span {
  color: #0b7bba;
  background: #fff;
  border: 2px solid #0b7bba;
}

.pricing-table1 #agency.pricing-plan .btn-blue.btn:before,
.pricing-table1 #agency.pricing-plan .btn-blue:after {
  border-color: #0b7bba !important;
}

.pricing-table1 #agency.pricing-plan .btn-blue:hover {
  color: #0b7bba !important;
}

/* ---- Enterprise Plan ---- */

.pricing-table1 #enterprise.pricing-plan .price {
  background: #045b8c;
}

.pricing-table1 #enterprise.pricing-plan .plan-type span {
  color: #045b8c;
  background: #fff;
  border: 2px solid #045b8c;
}

.pricing-table1 #enterprise.pricing-plan .btn-blue.btn:before,
.pricing-table1 #enterprise.pricing-plan .btn-blue:after {
  border-color: #045b8c !important;
}

.pricing-table1 #enterprise.pricing-plan .btn-blue:hover {
  color: #045b8c !important;
}

/*** 10.6.2 Pricing Table 2 ***/

.pricing-table2 .price-wrapper {
  border: 2px solid #e8e8e8;
  border-radius: 10px;
}

.pricing-table2 .price-wrapper.popular {
  border: 2px solid #0c112a;
}

.pricing-table2 .pricing-header {
  padding: 20px;
  color: #0c112a;
}

.pricing-table2 .price-wrapper.popular .pricing-header h4 {
  color: #fff;
}

.pricing-table2 .currency {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.pricing-table2 .value {
  font-size: 7rem;
  font-weight: 300;
  color: #fff;
}

.pricing-table2 .duration {
  font-size: 14px;
  color: #fff;
}

.pricing-table2 .pricing-body {
  overflow-x: visible;
}

.pricing-table2 .pricing-features {
  width: 100%;
  list-style: none;
  padding: 0;
}

.pricing-table2 .pricing-features li {
  padding: 15px;
  text-align: center;
}

.pricing-table2 .pricing-features li:nth-of-type(2n + 1) {
  background: #e8e8e8;
  color: #000;
}

.pricing-table2 .pricing-features em {
  font-weight: 600;
}

/*********** 10.7 404 Page *************/

.page-not-found {
  background: #29b2fe;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.page-not-found * {
  color: #f6f6f6;
}

.page-not-found .item-title {
  position: absolute;
  z-index: 0;
  left: 0;
  padding: 0;
  top: 50%;
  width: 100%;
  padding: 0 5%;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  visibility: visible;
}

.page-not-found .item-title img {
  width: 250px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}

.page-not-found .item-title #message {
  max-width: 100%;
  min-height: 300px;
  margin: 0 auto;
  text-align: center;
}

.page-not-found .item-title #message p:first-child {
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
}

.page-not-found .item-title .link-bottom {
  text-align: center;
}

.page-not-found .item-title .link-bottom .btn-blue:hover {
  color: #f6f6f6;
}

.page-not-found .clouds {
  position: initial;
  opacity: 0.6;
}

.page-not-found .clouds img.cloud1 {
  top: -75px;
  width: 120px;
  animation: cloud1 35s linear 1s infinite;
  opacity: 0;
}

.page-not-found .clouds img.cloud2 {
  top: 40px;
  width: 80px;
  -webkit-animation: cloud2 15s linear 7s infinite;
  animation: cloud2 15s linear 7s infinite;
  opacity: 0;
}

.page-not-found .clouds img.cloud3 {
  top: 115px;
  width: 95px;
  -webkit-animation: cloud3 30s linear 14s infinite;
  animation: cloud3 35s linear 14s infinite;
  opacity: 0;
}

.page-not-found .clouds img.cloud4 {
  top: 200px;
  width: 90px;
  -webkit-animation: cloud4 55s linear 16s infinite;
  animation: cloud4 40s linear 16s infinite;
  opacity: 0;
}

.page-not-found .clouds img.cloud5 {
  top: 300px;
  width: 130px;
  -webkit-animation: cloud5 25s linear 17s infinite;
  animation: cloud5 55s linear 17s infinite;
  opacity: 0;
}

/*********** 10.8 Coming Soon Page *************/

.coming-soon {
  width: 100%;
  min-height: 100%;
  background: url("../images/img/image1.jpg");
  background-size: cover;
  z-index: 5;
}

.gradient-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 6;
  background: linear-gradient(230deg, #323232, #218cca, #323232);
  background-size: 300% 300%;
  -webkit-animation: bg-movement 25s ease infinite;
  -moz-animation: bg-movement 25s ease infinite;
  -o-animation: bg-movement 25s ease infinite;
  animation: bg-movement 25s ease infinite;
  opacity: 0.93;
}

.coming-main {
  position: relative;
  z-index: 7;
  padding-top: 100px;
}

.logo {
  width: 200px !important;
  /*height:20px!important;*/
}

.logo-footer {
  width: 200px !important;
  height: 100px !important;
}

.coming-main .logo img {
  width: 400px;
  margin: 0 auto;
  display: block;
}

.coming-main h3 {
  color: #eaeaea;
  text-align: center;
  padding-top: 30px;
  font-weight: 300;
}

.countdown {
  text-align: center;
}

.countdown ul {
  list-style: none;
  margin: 0;
}

.countdown li span {
  color: #f6f6f6;
  font-size: 90px;
}

.countdown li p {
  color: #eaeaea;
  font-size: 26px;
  font-weight: 300;
  text-transform: capitalize;
}

/*********** 10.9 Login & Register *************/

section.login-page {
  background: url(../images/img/image3.jpg) center bottom;
  background-size: cover;
  position: relative;
}

.login-box {
  position: absolute;
  max-width: 350px;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
  border-radius: 15px;
}

.login-box:before {
  content: "";
  width: 100%;
  height: 30px;
  border-radius: 15px;
  position: absolute;
  top: -10px;
  background: #fff;
  left: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0.3;
}

.login-box form#login-form {
  padding: 40px;
}

.login-box input {
  border: 1px solid rgba(153, 153, 153, 0.7);
  box-shadow: none;
}

.login-box input[type="text"],
.login-box input[type="email"],
.login-box input[type="password"] {
  height: 40px;
}

.login-box input:active,
.login-box input:focus {
  color: #999;
  border: 1px solid #29b2fe;
  box-shadow: none;
}

.login-box a#forgot {
  color: #999;
}

.login-box a#forgot:hover {
  color: #29b2fe;
}

/*********** 10.10 Blog Listing *************/

section.blog-listing {
  background: #121111;
}

.blog-listing .blog-grid {
  height: 100%;
}

.blog-listing .element {
  margin-bottom: 40px;
}

.blog-post-thumbnail.normal-post {
  background: #29b2fe;
}

/* Thumbnail Slider */

.blog-listing .post-thumbnail-slider,
.blog-listing .post-thumbnail-slider .owl-stage-outer,
.blog-listing .post-thumbnail-slider .owl-stage-outer .owl-stage,
.blog-listing .post-thumbnail-slider .owl-item .item {
  height: 100%;
}

.blog-listing .post-thumbnail-slider .owl-item {
  position: relative;
  float: left;
  height: 100%;
}

.blog-listing .post-thumbnail-slider .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blog-listing .post-thumbnail-slider .owl-nav .owl-prev,
.blog-listing .post-thumbnail-slider .owl-nav .owl-next {
  font-size: 32px;
  color: #f6f6f6;
  display: inline-block;
  cursor: pointer;
}

.blog-listing .post-thumbnail-slider .owl-nav .owl-prev {
  padding-left: 10px;
}

.blog-listing .post-thumbnail-slider .owl-nav .owl-next {
  text-align: right;
  float: right;
  padding-right: 10px;
}

/* Quote Post */

.blog-listing .quote-post {
  background: #29b2fe;
}

.blog-listing .quote-post blockquote {
  border: none;
  margin: 0;
  height: 100%;
  font-size: 16px;
}

.blog-listing .quote-post blockquote span {
  display: block;
}

/*********** 10.11 Single Blog Post Page *************/

.blog-post .post-detail {
  color: #738191;
}

.blog-post .post-img {
  height: 250px;
  overflow: hidden;
}

.blog-post .post-quote blockquote {
  padding: 30px;
  margin: 0;
  color: #323232;
  background: #f6f6f6;
  border-color: #29b1fd;
}

/* Social Media Buttons */

.share {
  position: relative;
  width: 160px;
  height: 45px;
  font-size: 16px;
  overflow: hidden;
  background: #29b1fd;
  color: #fff;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.share:hover {
  width: 160px;
}

.share span {
  width: 100%;
  line-height: 45px;
  font-weight: 700;
  position: absolute;
  text-align: center;
  display: block;
  transition: all 0.8s ease;
  z-index: 1;
  top: 0;
}

.share:hover span {
  top: 135px;
}

.share .share-icon {
  font-size: 18px;
  position: absolute;
  line-height: 45px;
  left: -35px;
  transition: all 0.4s ease;
  display: inline-block;
  z-index: 2;
  color: #fff;
}

.share:hover .fb {
  left: 32px;
  transition-delay: 0.3s;
}

.share:hover .tw {
  left: 70px;
  font-size: 25px;
  transition-delay: 0.2s;
}

.share:hover .gp {
  left: 119px;
  transition-delay: 0.1s;
}

/* Comments Section */

.blog-comments .comments-list {
  list-style: none;
  padding: 0;
}

.blog-comments .comments-list .comment {
  margin-bottom: 40px;
  border-bottom: 2px solid #ededed;
}

.blog-comments .comments-list .comment:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.blog-comments .comments-list .commenter {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.blog-comments .comments-list .commenter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.blog-comments .comments-list .comment-body h6 {
  text-transform: capitalize;
  padding-bottom: 5px;
}

.blog-comments .comments-list .comment-body .comment-reply {
  margin: -18px 20px 0 0;
}

.blog-comments .comments-list .comment-body .comment-reply .btn {
  color: #29b1fd;
  background: #fff;
}

.blog-comments .comments-list .comment-body .comment-reply .btn:hover {
  color: #fff;
  background: #29b1fd;
}

.blog-comments .comments-list .comment-body .comment-info {
  padding-bottom: 20px;
}

.blog-comments .comments-list .comment-body time {
  color: #738191;
}

/* Comment Replies */

.blog-comments .comments-list .comment-replies {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.blog-comments .comments-list .comment-replied {
  border-bottom: 0;
}

.blog-comments .comments-list .comment-replied:last-child {
  margin-bottom: 0;
}

/* Submit Comment - Form */

.blog-comments form#comment-form .input-box {
  border: 1px solid rgba(153, 153, 153, 0.7);
  height: 45px;
  box-shadow: none;
}

.blog-comments form#comment-form .textarea-box {
  border: 1px solid rgba(153, 153, 153, 0.7);
  box-shadow: none;
}

.blog-comments form#comment-form .input-box:active,
.blog-comments form#comment-form .input-box:focus,
.blog-comments form#comment-form .textarea-box:active,
.blog-comments form#comment-form .textarea-box:focus {
  color: #999;
  border: 1px solid #29b2fe;
}

/*********** 10.12 Portfolio Page *************/

/* Portfolio Filters */

.portfolio ul#portfolio-sorting li {
  padding: 0 10px;
}

.portfolio ul#portfolio-sorting li a {
  color: #323232;
  font-weight: 700;
  display: block;
  opacity: 0.8;
}

.portfolio ul#portfolio-sorting li a.current {
  color: #29b2fe;
  opacity: 1;
}

/* Portfolio Items */

.portfolio-grid .element {
  margin-bottom: 40px;
  overflow: hidden;
}

.portfolio-grid .element.col-md-6 {
  height: 300px;
}

.portfolio-grid .element.col-md-4 {
  height: 200px;
}

.portfolio-grid .element.col-md-3 {
  height: 150px;
}

.portfolio-grid .element figure {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #29b2fe;
}

.portfolio-grid .element figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.portfolio-grid .element:hover figure img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.4;
}

/*********** 10.13 Contact Pages *************/

/* Contact Form */

.contact-page .contact-form .input-box {
  border: 1px solid rgba(153, 153, 153, 0.7);
}

.contact-page .contact-form .textarea-box {
  border: 1px solid rgba(153, 153, 153, 0.7);
}

.contact-page .contact-form .input-box:active,
.contact-page .contact-form .input-box:focus,
.contact-page .contact-form .textarea-box:active,
.contact-page .contact-form .textarea-box:focus {
  color: #999;
  border: 1px solid #29b2fe;
}

.contact-page .contact-form button {
  margin: 0 auto;
  display: block;
  background: none;
  color: #fff;
  border: 1px solid #fff;
}

.contact-page .contact-form button:hover {
  color: #29b1fd;
}

section.contact-page {
  /* background: #f4f4f4; */
}

/***** 10.13.1 Contact Page 1 *****/

.contact-page aside .contact-item {
  background: #fff;
  border-top: 7px solid #29b1fd;
  padding: 30px;
  margin-top: 50% !important;
}

.contact-page aside .contact-item ul {
  padding: 0;
  color: #738191;
}

.contact-page aside .contact-item ul li {
  padding-bottom: 5px;
}

.contact-page aside .contact-item ul li:last-child {
  padding-bottom: 0;
}

/* google maps */

.gmaps {
  height: 400px;
  padding: 0;
}

.gmaps #map {
  width: 100%;
  height: 100%;
}

/***** 10.13.2 Contact Page 2 *****/

.contact-page .contact-top .contact-item {
  background: #fff;
  border-top: 7px solid #29b1fd;
  padding: 30px;
}

.contact-page .contact-top .contact-item ul {
  padding: 0;
  color: #738191;
}

.contact-page .contact-top .contact-item ul li {
  padding-bottom: 5px;
}

.contact-page .contact-top .contact-item ul li:last-child {
  padding-bottom: 0;
}

/* google maps */

.contact-top .gmaps {
  height: 230px;
  padding: 0;
}

.contact-top .gmaps #map {
  border-top: 7px solid #29b1fd;
  width: 90%;
  height: 100%;
  margin: 0 auto;
}

.border {
  border-bottom: 1px solid #d3d3d3;
  width: 95%;
  margin: 0 auto;
}

.section-container {
  width: 100%;
  /* max-width: 1200px; */
  text-align: center;
  padding: 40px 20px;
  margin: 0 auto!important;
}

.title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #29b3fe!important;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.8;
  margin-top: 6px!important;
}

/* Perfect Centered Grid */
.card-grid {
  display: grid;
  justify-content: center;
  /* Centers the entire grid horizontally */
  align-items: center;
  /* Centers items vertically inside each cell */
  gap: 20px;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  /* auto-fit ensures perfect responsiveness */

  max-width: 1100px;
  margin: auto;
}

.card {
  padding: 28px;
  /*border: 2px solid rgba(0, 255, 255, 0.25);*/
  border: 1px solid #28e0ff !important;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  transition: 0.3s;
  width: 100%;
  max-width: 350px;
  /* Prevent ugly full-width stretch */
  margin: auto;
  /* Ensures perfect centering */
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 255, 0.5);
}

.card-title {
  color: #29b3fe !important;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}

.card p {
  color: #c9c9c9;
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
}

/* --------------------------------------
    11. Animations
-------------------------------------- */

/* ---- Cloud Animations ---- */

/* Cloud 1 */

@-webkit-keyframes cloud1 {
  0% {
    opacity: 0;
    right: 0;
  }

  40% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    right: 100%;
  }
}

@keyframes cloud1 {
  0% {
    opacity: 0;
    right: 0;
  }

  40% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    right: 100%;
  }
}

/* Cloud 2 */

@-webkit-keyframes cloud2 {
  0% {
    opacity: 0;
    right: 10%;
  }

  40% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    right: 50%;
  }
}

@keyframes cloud2 {
  0% {
    opacity: 0;
    right: 10%;
  }

  40% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    right: 50%;
  }
}

/* Cloud 3 */

@-webkit-keyframes cloud3 {
  0% {
    opacity: 0;
    right: 15%;
  }

  20% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    right: 45%;
  }
}

@keyframes cloud3 {
  0% {
    opacity: 0;
    right: 15%;
  }

  20% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    right: 45%;
  }
}

/* Cloud 4 */

@-webkit-keyframes cloud4 {
  0% {
    opacity: 0;
    right: 15%;
  }

  30% {
    opacity: 0.9;
  }

  70% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    right: 60%;
  }
}

@keyframes cloud4 {
  0% {
    opacity: 0;
    right: 15%;
  }

  30% {
    opacity: 0.9;
  }

  70% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    right: 60%;
  }
}

/* Cloud 5 */

@-webkit-keyframes cloud5 {
  0% {
    opacity: 0;
    right: 30%;
  }

  30% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    right: 100%;
  }
}

@keyframes cloud5 {
  0% {
    opacity: 0;
    right: 30%;
  }

  30% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    right: 100%;
  }
}

/* slide down effect */

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    -moz-transform: translateY(-30%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

/* Loader Animation */

@-webkit-keyframes cloud-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes cloud-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ---- Coming Soon BG Animations ---- */

@-webkit-keyframes bg-movement {
  0%,
  100% {
    background-position: 0 84%;
  }

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

@-moz-keyframes bg-movement {
  0%,
  100% {
    background-position: 0 84%;
  }

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

@-o-keyframes bg-movement {
  0%,
  100% {
    background-position: 0 84%;
  }

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

@keyframes bg-movement {
  0%,
  100% {
    background-position: 0 84%;
  }

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

/* Responsive Menu Animation */

@-webkit-keyframes mymenu-open {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@-moz-keyframes mymenu-open {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@-o-keyframes mymenu-open {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes mymenu-open {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* --------------------------------------
    12. Page Loader
-------------------------------------- */

.loader {
  position: fixed;
  background: #f6f6f6;
  z-index: 1040;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.spinner {
  margin: auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.loader .cloud1,
.loader .cloud2 {
  width: 60px;
  height: 60px;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-animation: cloud-bounce 3s infinite ease-in-out;
  animation: cloud-bounce 3s infinite ease-in-out;
}

.loader .cloud2 {
  top: auto;
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
}

/* Section Wrapper */

.smartscore-title {
  font-size: 32px;

  font-weight: 600;

  margin-bottom: 10px;

  text-align: center;
  color: #29b3fe!important;
}

.smartscore-subtitle {
  font-size: 18px;

  opacity: 0.8;

  max-width: 700px;

  margin: 0 auto 40px;
  margin-top: 6px!important;
}

/* Perfectly Centered Grid */

.smartscore-grid-block {
  display: grid;

  justify-content: center;

  align-items: center;

  gap: 20px;

  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));

  max-width: 1100px;

  margin: auto;
}

.ss-card-2 {
  padding: 26px;

  border: 2px solid #29b3fe;

  border-radius: 16px;

  backdrop-filter: blur(4px);

  transition: 0.3s ease;

  max-width: 300px;

  width: 100%;

  margin: auto;

  text-align: left;
  background-color: #1e1e1e!important;
}

.ss-card:hover {
  /* transform: translateY(-2px); */

  border-color: rgba(0, 255, 255, 0.55);
}

.ss-card-title {
  font-size: 18px;

  font-weight: 600;

  color: #28e0ff;

  margin-bottom: 16px !important;
}

.ss-card ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.ss-card ul li {
  font-size: 15px;

  margin-bottom: 6px;

  padding-left: 12px;

  position: relative;
}

.ss-card ul li::before {
  content: "•";

  position: absolute;

  left: 40px;

  color: #28e0ff;

  font-size: 20px;

  line-height: 10px;

  margin-top: 6px;
}

/* --- Global Styles/Reset (Optional but recommended) --- */
.blog-section-wrapper {
  padding: 1px 0;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  /* margin: 0 auto; */
  padding: 0 3px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

/* --- 1. Grid Layout for Responsiveness (The Core) --- */
.blog-grid {
  display: grid;
  gap: 30px;

  /* Default: Mobile-first 1 Column */
  grid-template-columns: 1fr;
}

/* Tablet Layout (>= 768px) - 2 Columns */
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Layout (>= 1024px) - 3 Columns (and 1 Featured Post) */
@media (min-width: 1024px) {
  .blog-grid {
    /* Define 3 equal columns */
    grid-template-columns: repeat(3, 1fr);
  }

  /* Featured Card Styling: Make the first card span 2 columns and 2 rows */
  .blog-card.featured {
    grid-column: 1 / span 2;
    /* Spans 2 columns */
    grid-row: 1 / span 1;
    /* Spans 2 rows (Visual enhancement) */
    display: flex;
    /* Change layout inside to horizontal */
    flex-direction: row;
  }

  .blog-card.featured .card-image-box {
    flex-basis: 50%;
  }

  .blog-card.featured .card-content {
    flex-basis: 50%;
    padding: 30px;
  }
}

/* --- 2. Blog Card Styling (Aesthetic) --- */
.blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-image-box {
  width: 100%;
  height: 200px;
  /* Standard height for smaller cards */
  overflow: hidden;
}

.blog-card.featured .card-image-box {
  height: 100%;
  /* Full height for the featured card */
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image covers the area without distortion */
  transition: transform 0.5s ease;
}

.blog-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-category {
  display: inline-block;
  background-color: #e0f7fa;
  color: #00bcd4;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #29b3fe;
  text-align: center;
}

.card-excerpt {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.card-meta {
  font-size: 13px;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.card-meta span:first-child {
  font-weight: 600;
}

.read-more-btn {
  display: inline-block;
  color: #3498db;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more-btn:hover {
  color: #2980b9;
}

/* --- 3. View All Button Styling --- */
.view-all-container {
  text-align: center;
  margin: 50px auto;
}

.view-all-btn {
  padding: 12px 25px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #2980b9;
}

/*Pricing Section*/

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

hr {
  border: 0;
  border-top: 3px solid #e0e0e0;
  max-width: 800px;
  margin: 3rem auto;
}

.container-slider {
  max-width: 1000px;
  margin: 40px auto!important;
  padding: 0 8px;
}

/* ------------------------------------- */
/* 2. PRO Plan Card Styling */
/* ------------------------------------- */
.pro-card-section {
  padding: 2rem 0;
}

.pro-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffc107;
  /* Highlight border */
  text-align: center;
  max-width: 450px;
  margin: 0 auto 3rem;
}

.pro-card .header {
  background-color: #1a237e;
  color: white;
  padding: 1rem 0.5rem;
  margin: -2rem -2rem 1.5rem -2rem;
  /* Pull up for visual effect */
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}

.pro-card h3 {
  margin: 0;
  font-size: 1.8rem;
  color: white;
}

.pro-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffc107;
  /* Gold price */
  margin: 0.5rem 0;
}

.pro-card .tagline {
  font-style: italic;
  color: #555;
  margin-bottom: 2rem;
}

.pro-features li {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  padding: 0 1rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 0.5rem;
}

.pro-features li span {
  color: #28a745;
  /* Green checkmark */
  font-size: 1.2rem;
  margin-right: 10px;
  font-weight: bold;
}

.pro-card .cta-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background-color: #ffc107;
  color: #1a237e;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.pro-card .cta-btn:hover {
  background-color: #ff9800;
  transform: translateY(-2px);
}

/* ------------------------------------- */
/* 3. Comparison Table Styling */
/* ------------------------------------- */
.comparison-section {
  padding: 2rem 0;
}

.table-scroll {
  overflow-x: auto;
  /* Allows horizontal scrolling on small screens */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-table {
  width: 100%;
  min-width: 650px;
  /* Ensures scroll on small phones */
  border-collapse: collapse;
  background-color: white;
}

.feature-table th,
.feature-table td {
  padding: 1rem 0.75rem;
  border: 1px solid #e0e0e0;
  text-align: center;
  vertical-align: middle;
  font-size: 0.9rem;
}

.feature-table th {
  background-color: #e3f2fd;
  /* Light Blue Header */
  color: #1a237e;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-table td:first-child {
  text-align: left;
  font-weight: 500;
  background-color: #f8f8f8;
  color: #333;
}

.highlight-col {
  background-color: #fffde7 !important;
  /* Light Gold for PRO column */
  font-weight: 700;
  color: #1a237e;
}

/* Icons for features */
.feature-table .check {
  color: #28a745;
  font-weight: 700;
}

.feature-table .cross {
  color: #dc3545;
  font-weight: 700;
}

/* ------------------------------------- */
/* 4. Responsive Adjustments (Mobile First) */
/* ------------------------------------- */

/* Medium devices (Tablets) */
@media (min-width: 768px) {
  .pro-card {
    padding: 3rem;
  }

  .pro-card .header {
    margin: -3rem -3rem 2rem -3rem;
  }
}

/* Large devices (Desktops) */
@media (min-width: 1024px) {
  .pro-card {
    max-width: 980px;
  }
}

.intelligence-heading-main,
.intelligence-heading-sub {
  text-align: center;
  color: #1a237e;
  /* Deep Indigo */
  margin-bottom: 1.5rem;
}

.feature-list-reset {
  list-style: none;
  padding: 0;
}

.divider-visual {
  border: 0;
  border-top: 3px solid #e0e0e0;
  max-width: 800px;
  margin: 3rem auto;
}

.layout-container-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 16px;
}

/* ------------------------------------- */
/* 2. PRO Plan Card Styling (unique names) */
/* ------------------------------------- */
.plan-showcase-section {
  padding: 2rem 0;
}

.plan-card-pro {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid #e59dff;
  /* Highlight border */
  text-align: left;
  max-width: 450px;
  margin: 0 auto 3rem;
  transition: transform 0.3s ease-in-out;
  /* margin-top: 40px; */
}

.plan-card-pro:hover {
  transform: translateY(-5px);
}

.plan-header-pro {
  background-color: #1a237e;
  color: white;
  padding: 2rem 0.5rem;
  margin: -2rem -2rem 1.5rem -2rem;
  /* Pull up for visual effect */
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}

.plan-header-pro h3 {
  margin: 0;
  font-size: 1.8rem;
  color: white;
}

.pricing-value-pro {
  font-size: 52px;
  font-weight: 700;
  color: #ffc107;
  /* Gold price */
  margin: 0.5rem 0;
}

.plan-description-pro {
  font-style: italic;
  color: #555;
  margin-bottom: 2rem;
}

.pro-feature-item {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 0.75rem;
  font-size: 14px;
  padding: 0 1rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 0.5rem;
}

.pro-feature-icon {
  color: #28a745;
  /* Green checkmark */
  font-size: 14px;
  margin-right: 10px;
  font-weight: bold;
}

.pro-action-button {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background-color: #ffc107;
  color: #1a237e;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.pro-action-button:hover {
  background-color: #ff9800;
  transform: translateY(-2px);
}

/* ------------------------------------- */
/* 3. Comparison Table Styling (unique names) */
/* ------------------------------------- */
.comparison-data-section {
  padding: 40px 0;
}

.table-responsive-wrapper {
  overflow-x: auto;
  /* Allows horizontal scrolling on small screens */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.data-table-features {
  width: 100%;
  min-width: 650px;
  /* Ensures scroll on small phones */
  border-collapse: collapse;
  /* background-color: white; */
  background: var(--card-bg);
  margin-top: 40px;
}

.data-table-features th,
.data-table-features td {
  padding: 1rem 0.75rem;
  border: 1px solid #e0e0e0;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}

.data-table-features th {
  /* background-color: #e3f2fd; */
  background: var(--card-bg);
  /* Light Blue Header */
  color: #29b3fe;
  font-weight: 700;
  text-transform: uppercase;
}

.data-table-features td:first-child {
  text-align: left;
  font-weight: 500;
  /* background-color: #f8f8f8; */
  color: #fff;
  padding: 16px 10px !important;
}

.column-highlight-pro {
  /* background-color: #fffde7 !important; */
  background: var(--card-bg);
  /* Light Gold for PRO column */
  font-weight: 700;
  color: #fff;
}

/* Icons for features */
.data-table-features .icon-check {
  color: #28a745;
  font-weight: 700;
}

.data-table-features .icon-cross {
  color: #dc3545;
  font-weight: 700;
}

.layout-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 1rem;
}

.section-heading {
  text-align: center;
  color: #29b3fe;
  margin-bottom: 2rem !important;
  font-size: 42px !important;
  font-weight: 700;
  margin-bottom: 40px !important;
}

hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 3rem 0;
}

/* ------------------------------------- */
/* 2. CTA Banner (Header) */
/* ------------------------------------- */
.cta-banner {
  background-color: #29b3fe;
  /* Deep Indigo */
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-banner-headline {
  font-size: 30px;
  margin-bottom: 0.5rem;
}

.cta-banner-sub {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #fff;
  margin-top: 5px;
}

.cta-buttons-wrapper {
  display: flex;
  flex-direction: column;
  /* Stack buttons on mobile */
  gap: 0.75rem;
  align-items: center;
}

.cta-button {
  display: block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  width: 100%;
  /* Full width on mobile */
  max-width: 300px;
  box-sizing: border-box;
}

.btn-secondary {
  background-color: white;
  color: #1a237e;
  border: 2px solid white;
}

.btn-tertiary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ------------------------------------- */
/* 3. Domain Audit Cards */
/* ------------------------------------- */
.audit-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 40px;
  max-width: 990px;
  margin: 0 auto;
}

.audit-card {
  /* background-color: white; */
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 580px;
  /* Consistent height */
}

.audit-mini {
  border-top: 5px solid #17a2b8;
  /* Teal */
}

.audit-advanced {
  border-top: 5px solid #e59dff;
  /* Blue */
  /* background-color: #f0f7ff; */
  /* Light background for highlight */
}

.audit-plan-title {
  font-size: 18px !important;
  margin-top: 0;
  text-align: center;
}

.mini-title {
  color: #17a2b8;
}

.advanced-title {
  color: #007bff;
}

.audit-price-tag {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.audit-tagline {
  font-style: italic;
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 1rem;
}

.audit-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.audit-features-list li {
  padding: 0.4rem 0;
  font-size: 16px;
}

.audit-features-list li::before {
  content: "🔹 ";
  color: #007bff;
  font-weight: 700;
}

.audit-verdict {
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 1rem;
  text-align: center;
}

.bulk-pricing-box {
  margin-top: auto;
  /* Pushes bulk pricing and CTA to the bottom */
  padding: 1rem;
  /* background-color: #f0f0f0; */
  border-radius: 6px;
  font-size: 0.9rem;
}

.bulk-pricing-box h4 {
  margin: 0 0 0.5rem 0;
  color: #29b3fe;
}

.audit-card .cta-btn-card {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: #e59dff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 1rem;
  text-align: center;
  transition: background-color 0.3s;
  font-size: 16px;
}

.audit-card .cta-btn-card:hover {
  background-color: #0056b3;
}

/* ------------------------------------- */
/* 4. FAQ Section */
/* ------------------------------------- */
.faq-container {
  padding: 1rem 0;
  max-width: 800px;
  margin: 40px auto!important;
}

.faq-details {
  /* background-color: white; */
  background: var(--card-bg);
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-summary {
  padding: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.faq-summary::after {
  content: "+";
  font-size: 16px;
  color: #29b3fe;
}

.faq-details[open] .faq-summary::after {
  content: "−";
}

.faq-details[open] .faq-summary {
  border-bottom: 1px solid #eee;
}

.faq-answer {
  padding: 0 1rem 1rem 1rem;
  margin: 14px 0;
  font-size: 16px;
  color: #fff;
}

.premium-reason-list {
  padding-left: 20px;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.premium-reason-list li {
  margin-bottom: 0.3rem;
}

.pricing-container-master {
  max-width: 1150px !important;
  margin: 40px auto !important;
  padding: 0 1rem;
}

.pricing-title-main {
  text-align: center;
  color: #1a237e;
  margin-bottom: 60px!important;
  font-size: 32px;
  font-weight: 900;
  margin-top: 40px !important;
}

/* ------------------------------------- */
/* 2. Card Grid Layout (Responsiveness Key) */
/* ------------------------------------- */
.plan-grid-wrapper {
  display: grid;
  /* Default: Single column for small mobile screens */
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 40px !important;
}

/* ------------------------------------- */
/* 3. Individual Plan Card Styling */
/* ------------------------------------- */
.plan-card-item {
  /* background-color: white; */
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 480px;
  /* Ensure visual alignment */
}

.plan-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Plan Specific Colors/Accents */
.plan-free {
  border-top: 5px solid #6c757d;
}

/* Gray */
.plan-mini {
  border-top: 5px solid #17a2b8;
}

/* Teal */
.plan-advanced {
  border-top: 5px solid #ffc107;
}

/* Gold/Yellow */

.plan-name-label {
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price-display {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.price-unit-text {
  font-size: 2rem;
  font-weight: 400;
  color: #666;
}

.plan-tagline {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 1rem;
}

.feature-list-pricing {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  /* Pushes the CTA button to the bottom */
  text-align: left;
  margin-bottom: 1.5rem;
}

.feature-item {
  padding: 0.5rem 0;
  font-size: 14px !important;
  display: flex;
  align-items: flex-start;
}

/* Feature Icons */
.icon-check {
  color: #28a745;
  margin-right: 8px;
  font-size: 14px !important;
}

.icon-cross {
  color: #dc3545;
  margin-right: 8px;
  font-size: 12px !important;
}

/* ------------------------------------- */
/* 4. CTA Buttons */
/* ------------------------------------- */
.plan-cta-button {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  margin-top: auto;
  /* Ensures button is at the bottom */
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 14px !important;
}

.cta-free {
  background-color: #6c757d;
  color: white;
}

.cta-free:hover {
  background-color: #5a6268;
}

.cta-mini {
  background-color: #17a2b8;
  color: white;
}

.cta-mini:hover {
  background-color: #118398;
}

.cta-advanced {
  background-color: #ffc107;
  color: #1a237e;
}

.cta-advanced:hover {
  background-color: #ffaa00;
}

/* * All class names are prefixed with 'custom-' for uniqueness. 
         */

/*
         * ----------------------------------------
         * 1. Global/Reset Styles
         * ----------------------------------------
         */
:root {
  /* Define Color Variables */
  --color-text-dark: #1f2937;
  /* Dark text for readability */
  --color-text-light: #ffffff;
  /* Light text for contrast */
  --color-primary-bg: #4f46e5;
  /* A vibrant primary blue/indigo */
  --color-primary-accent: #6366f1;
  /* Lighter primary for hover */
  --color-secondary-bg: #e5e7eb;
  /* Light gray for secondary banner */
  --color-secondary-border: #d1d5db;
  --color-cta-symbol: #007bff;
  /* Blue for the circle symbol */

  /* Define Spacing Variables */
  --spacing-m: 1rem;
  --spacing-l: 1.5rem;
  --spacing-xl: 2rem;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  background-color: #f9fafb;
  /* Light background for the page */
}

/*
         * ----------------------------------------
         * 2. Container & Layout
         * ----------------------------------------
         */
.custom-cta-container {
  display: flex;
  flex-direction: column;
  /* Stacks the banners vertically on mobile */
  gap: var(--spacing-l);
  max-width: 1100px;
  /* Keeps the original max-width: 100% */
  margin: 40px auto;
}

/*
         * ----------------------------------------
         * 3. General Banner Styles
         * ----------------------------------------
         */
.custom-cta-banner {
  padding: var(--spacing-l);
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
  /* Stack content and button vertically on mobile */
  gap: var(--spacing-m);
  text-align: center;
  /* Center content for mobile stacking */
  align-items: center;
  border-radius: 20px;
  max-width: 1100px;
}

.custom-banner-title {
  font-size: 20px !important;
  font-weight: 700;
  color: #fff;
}

.custom-banner-title-2 {
  font-size: 20px !important;
  font-weight: 700;
  color: #fff;
}

.custom-banner-description {
  font-size: 16px;
  margin-top: 0.25rem;
  color: #fff;
}

.custom-banner-description-2 {
  font-size: 16px;
  margin-top: 0.25rem;
  color: #fff;
}

/*
         * ----------------------------------------
         * 4. CTA Button Styles
         * ----------------------------------------
         */
.custom-cta-button {
  display: block;
  /* Make button full width on mobile */
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  /* Remove underline from link */
  font-weight: 600;
  transition: background-color 0.2s, transform 0.1s;
  white-space: nowrap;
  /* Prevents text wrap */
}

/* Primary Button Styling */
.custom-primary-button {
  background-color: var(--color-primary-bg);
  color: var(--color-text-light);
  border: 1px solid #fff;
  width: 200px !important;
}

.custom-primary-button:hover {
  background-color: var(--color-primary-accent);
  border-color: var(--color-primary-accent);
}

/* Secondary Button Styling */
.custom-secondary-button {
  background-color: var(--color-text-light);
  color: var(--color-primary-bg);
  border: 2px solid var(--color-primary-bg);
  width: 200px !important;
}

.custom-secondary-button:hover {
  background-color: var(--color-secondary-bg);
}

/*
         * ----------------------------------------
         * 5. Specific Banner Theme
         * ----------------------------------------
         */

/* Primary Banner: Dark/Vibrant background */
.custom-primary-banner {
  background-color: #29b3fe !important;
  color: #000;
}

/* Secondary Banner: Light background, border for subtle differentiation */
.custom-secondary-banner {
  background-color: #29b3fe !important;
  color: #fff !important;
  border: 1px solid var(--color-secondary-border);
  margin: 40px 0 !important;
}

/*
 * -------------------------------------
 * 1. Base Setup & Variables
 * -------------------------------------
 */
:root {
  /* Color Palette */
  --dg-color-primary: #3b82f6;
  /* A clean blue for CTAs/Highlights */
  --dg-color-primary-dark: #2563eb;
  --dg-color-text: #1f2937;
  /* Dark gray for readability */
  --dg-color-light-text: #4b5563;
  --dg-color-bg-white: #ffffff;
  --dg-color-bg-light: #f3f4f6;
  --dg-color-accent: #f59e0b;
  /* A subtle accent color (yellow/gold) */

  /* Typography */
  --dg-font-family: "Poppins", sans-serif;
  --dg-border-radius: 0.5rem;
  --dg-shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.06);
}

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

body {
  font-family: var(--dg-font-family);
  line-height: 1.6;
  color: var(--dg-color-text);
  background-color: #00a3ff;
}

/* Base Utility Classes */
.dg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  /* Essential for mobile padding */
}

.dg-bg-white-2 {
  background-color: #29b2fe;
}

.dg-content-section {
  padding: 40px 0;
  background-color: #121111 !important;
}

/*
 * -------------------------------------
 * 2. Typography & Headings
 * -------------------------------------
 */
/* h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 1.5rem; } */
.dg-section-heading-2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #29b3fe !important;
  margin-bottom: 40px !important;
  font-size: 30px !important;
}

.dg-section-heading-3 {
  text-align: center;
  margin-bottom: 3rem;
  color: #29b3fe !important;
  margin-bottom: 40px !important;
}

.dg-section-heading {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff !important;
  margin-bottom: 40px !important;
}

.dg-card-title,
.dg-card-subtitle {
  color: #29b2fe;
  margin-bottom: 18px !important;
}

/*
 * -------------------------------------
 * 3. Header Hero Section
 * -------------------------------------
 */
.dg-header-hero {
  background: var(--dg-color-primary-dark);
  color: var(--dg-color-bg-white);
  padding: 6rem 0;
  text-align: center;
}

.dg-header-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.dg-header-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/*
 * -------------------------------------
 * 4. Mission/Vision (MVV) Section
 * -------------------------------------
 */
.dg-mvv-grid {
  display: flex;
  flex-direction: column;
  /* Mobile stack first */
  gap: 2rem;
}

.dg-mvv-card {
  background: var(--dg-color-bg-white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--dg-shadow-base);
  text-align: center;
  border: 1px solid #29b2fe;
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .dg-mvv-grid {
    flex-direction: row;
  }

  .dg-mvv-card {
    flex: 1;
  }
}

/*
 * -------------------------------------
 * 5. Problem/Solution Section
 * -------------------------------------
 */
.dg-problem-solution-layout {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: Single column */
  gap: 2rem;
}

.dg-solution-card {
  padding: 32px 40px;
  border-radius: var(--dg-border-radius);
  background-color: var(--dg-color-bg-light);
  border-left: 5px solid var(--dg-color-accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dg-solution-card ul {
  list-style-type: none;
  padding-left: 0;
}

.dg-solution-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 2.5rem;
  position: relative;
  font-size: 16px;
}

/* Problem side styling */
.dg-card-problem ul li::before {
  content: "❌";
  position: absolute;
  left: 0;
}

/* Solution side styling */
.dg-card-solution-primary {
  color: var(--dg-color-bg-white);
  border-left-color: var(--dg-color-accent);
}

.dg-card-solution-primary .dg-card-subtitle {
  color: var(--dg-color-accent);
}

.dg-card-solution-primary ul li::before {
  content: "✅";
}

@media (min-width: 768px) {
  .dg-problem-solution-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/*
 * -------------------------------------
 * 6. AI Engine Steps
 * -------------------------------------
 */
.dg-ai-engine-steps {
  display: flex;
  flex-direction: column;
  /* Mobile: Stack steps vertically */
  gap: 2.5rem;
}

.dg-step-card {
  padding: 40px 40px;
  background: var(--dg-color-bg-light);
  border-radius: 20px !important;
  text-align: center;
  box-shadow: var(--dg-shadow-base);
  position: relative;
  padding-top: 3rem;
  border: 1px solid #29b2fe;
}

.dg-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #29b3fe;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--dg-color-bg-light);
}

@media (min-width: 992px) {
  .dg-ai-engine-steps {
    flex-direction: row;
  }
}

/*
 * -------------------------------------
 * 7. Brand Values
 * -------------------------------------
 */
.dg-values-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Mobile: 2 columns */
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.dg-value-item {
  text-align: center;
  padding: 1rem;
  background: var(--dg-color-bg-light);
  border-radius: var(--dg-border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #29b3fe;
}

.dg-value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .dg-values-layout {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*
 * -------------------------------------
 * 8. Team & CTA
 * -------------------------------------
 */
.dg-team-module {
  background: var(--dg-color-bg-white);
  padding: 4rem;
  border-radius: 20px !important;
  border: 2px solid #29b3fe;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.dg-placeholder-text {
  font-style: italic;
  margin-top: 1rem;
  color: #29b3fe;
}

.dg-cta-section {
  text-align: center;
  background: #fff !important;
  color: #000 !important;
}

.dg-cta-box {
  padding: 2rem;
  border-radius: var(--dg-border-radius);
}

.dg-cta-box h2 {
  color: #000;
  margin-bottom: 1rem;
  margin-bottom: 14px !important;
}

.about-light {
  color: #000;
  font-size: 18px;
}

.dg-cta-button {
  display: inline-block;
  background-color: #29b3fe;
  color: #fff !important;
  padding: 0.75rem 2rem;
  margin-top: 1rem;
  border-radius: var(--dg-border-radius);
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.dg-cta-button:hover {
  background-color: #349ad1;
}

/*
 * -------------------------------------
 * 9. Footer
 * -------------------------------------
 */
.dg-page-footer {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  color: var(--dg-color-light-text);
  font-size: 0.9rem;
}

/*
 * -------------------------------------
 * 1. Base Setup & Variables
 * -------------------------------------
 */
:root {
  --dg-color-primary: #3b82f6;
  /* Blue */
  --dg-color-primary-dark: #2563eb;
  --dg-color-text: #1f2937;
  --dg-color-bg-white: #ffffff;
  --dg-color-bg-light: #f9fafb;
  --dg-color-warning: #f59e0b;
  /* Orange/Yellow for warnings */
  --dg-color-critical: #ef4444;
  /* Red for non-refundable notices */
  --dg-font-family: "Poppins", sans-serif;
  --dg-border-radius: 0.5rem;
  --dg-shadow-light: 0 1px 3px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: var(--dg-font-family);
  line-height: 1.7;
  /* Increased line height for readability of legal text */
  color: var(--dg-color-text);
  background-color: var(--dg-color-bg-white);
}

.dg-legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Helper background classes */

/*
 * -------------------------------------
 * 2. Header & Footer
 * -------------------------------------
 */
.dg-legal-header {
  background: var(--dg-color-primary-dark);
  color: var(--dg-color-bg-white);
  padding: 3rem 0;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.dg-legal-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.dg-legal-header p {
  font-size: 1rem;
  opacity: 0.8;
}

.dg-legal-footer {
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  color: #6b7280;
  font-size: 0.9rem;
}

/*
 * -------------------------------------
 * 3. Policy Sections & Structure
 * -------------------------------------
 */
.dg-legal-section {
  padding: 3rem 0;
}

.dg-policy-heading {
  font-size: 2.8rem;
  color: var(--dg-color-primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
  margin-bottom: 40px !important;
}

.dg-policy-heading i {
  margin-right: 10px;
  color: var(--dg-color-primary);
}

.dg-last-updated {
  font-style: italic;
  color: #9ca3af;
  margin-bottom: 2rem;
  display: block;
}

.dg-policy-content {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: Single column */
  gap: 2rem 3rem;
}

@media (min-width: 768px) {
  .dg-policy-content {
    grid-template-columns: 1fr 1fr;
    /* Desktop: Two columns for better flow */
  }

  #terms-of-service .dg-policy-content,
  #privacy-policy .dg-policy-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Single column for smaller policies and the Disclaimer */
#refund-policy .dg-policy-content,
#disclaimer .dg-policy-content {
  grid-template-columns: 1fr;
}

/*
 * -------------------------------------
 * 4. Policy Blocks (Sub-sections)
 * -------------------------------------
 */
.dg-policy-block {
  padding: 1.5rem;
  background: var(--dg-color-bg-white);
  border-radius: var(--dg-border-radius);
  box-shadow: var(--dg-shadow-light);
  border-left: 4px solid #29b3fe;
  /* Visual accent */
}

.dg-bg-light .dg-policy-block {
  background: #ffffff;
  /* Keep blocks white on light gray background */
}

.dg-block-title {
  font-size: 20px !important;
  color: #29b3fe;
  margin-bottom: 1rem;
  font-weight: 600;
  margin-bottom: 20px !important;
}

/* Specific highlight colors for importance */
.dg-critical {
  color: var(--dg-color-critical);
}

.dg-warning {
  color: var(--dg-color-warning);
}

/* Lists (ULs) styling */
.dg-policy-block ul {
  list-style: none;
  padding-left: 0;
}

.dg-policy-block ul li {
  margin-bottom: 0.75rem;
  padding-left: 20px;
  position: relative;
  color: #000 !important;
}

.dg-policy-block ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--dg-color-primary);
  font-size: 14px;
  color: #000 !important;
}

/* Icon list for Privacy Policy */
.dg-icon-list li i {
  color: var(--dg-color-primary);
}

/* Contact Info */
.dg-contact-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #eef2ff;
  border-radius: var(--dg-border-radius);
  grid-column: 1 / -1;
  /* Full width */
}

.dg-contact-info a {
  color: var(--dg-color-primary-dark);
  font-weight: 600;
}

/* Disclaimer Box Styling */
.dg-disclaimer-box {
  border-left-color: var(--dg-color-warning);
  background-color: #fffbeb;
  /* Light yellow background */
  grid-column: 1 / -1;
}

.dg-disclaimer-emphasis {
  font-weight: 700;
  color: var(--dg-color-critical);
  margin: 10px 0;
}

/*
 * -------------------------------------
 * 1. Base Setup & Variables
 * -------------------------------------
 */
:root {
  /* Clean Professional Palette */
  --dg-color-primary: #29b3fe;
  /* Your requested Blue */
  --dg-color-primary-dark: #1f8ad1;
  /* A slightly darker blue for hover */
  --dg-color-background: #ffffff;
  /* White background */
  --dg-color-text: #1f2937;
  /* Very dark gray (near black) */
  --dg-color-text-secondary: #4b5563;
  /* Medium gray */
  --dg-color-surface: #f9fafb;
  /* Light gray surface for cards/sidebar */
  --dg-color-surface-light: #e5e7eb;
  /* Subtle borders/separators */

  --dg-font-family: "Poppins", sans-serif;
  --dg-border-radius: 0.5rem;
  --dg-shadow-base: 0 1px 3px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: var(--dg-font-family);
  line-height: 1.6;
  color: var(--dg-color-text);
  background-color: var(--dg-color-background);
}

.dg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dg-section-padding {
  padding: 40px auto !important;
}

h1,
h2,
h3 {
  color: var(--dg-color-text);
  line-height: 1.2;
}

.dg-section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--dg-color-surface-light);
  padding-bottom: 0.5rem;
  font-weight: 700;
}

.dg-section-subtitle {
  font-size: 1.2rem;
  color: var(--dg-color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

/*
 * -------------------------------------
 * 2. HERO SECTION
 * -------------------------------------
 */
.dg-hero-insights {
  padding: 6rem 0 4rem;
  background: var(--dg-color-surface);
  /* Light gray background */
  border-bottom: 5px solid var(--dg-color-primary);
  text-align: center;
}

.dg-hero-insights h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--dg-color-text);
  margin-bottom: 1rem;
}

.dg-hero-insights p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--dg-color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Placeholder for the AI visual */
.dg-hero-visual {
  height: 10px;
  width: 100%;
  background-color: var(--dg-color-primary-dark);
  margin-top: 1rem;
  opacity: 0.8;
}

/*
 * -------------------------------------
 * 3. MAIN LAYOUT GRID (Responsive Columns)
 * -------------------------------------
 */
.dg-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: Single column stack */
  gap: 3rem;
  padding: 3rem 0;
}

/* Desktop/Tablet Layout */
@media (min-width: 1024px) {
  .dg-layout-grid {
    grid-template-columns: 2.5fr 1fr;
  }
}

/*
 * -------------------------------------
 * 4. CATEGORY FILTERS
 * -------------------------------------
 */
.dg-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.dg-category-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--dg-color-surface-light);
  color: var(--dg-color-text-secondary);
  border: 1px solid var(--dg-color-surface-light);
  transition: all 0.2s ease;
}

.dg-category-tag:hover {
  background-color: var(--dg-color-primary);
  color: var(--dg-color-background);
}

.dg-tag-active {
  background-color: var(--dg-color-primary);
  color: var(--dg-color-background) !important;
  border-color: var(--dg-color-primary);
}

/*
 * -------------------------------------
 * 5. FEATURED POSTS (Cards)
 * -------------------------------------
 */
.dg-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.dg-post-card {
  background-color: var(--dg-color-background);
  border-radius: var(--dg-border-radius);
  overflow: hidden;
  box-shadow: var(--dg-shadow-base);
  border: 1px solid var(--dg-color-surface-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dg-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(41, 179, 254, 0.2);
}

.dg-card-image {
  height: 180px;
  background-color: var(--dg-color-surface);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--dg-color-surface-light);
}

/* Placeholder background images using CSS for the 'image' effect */
.dg-image-1 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f9fafb"/><circle cx="50" cy="50" r="20" fill="%2329b3fe"/></svg>');
}

.dg-image-2 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f9fafb"/><path d="M10 50 L50 90 L90 50 L50 10 Z" fill="%2329b3fe" opacity="0.5"/></svg>');
}

.dg-image-3 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f9fafb"/><rect x="15" y="30" width="70" height="40" fill="%2329b3fe"/></svg>');
}

.dg-image-4 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f9fafb"/><line x1="10" y1="90" x2="90" y2="10" stroke="%2329b3fe" stroke-width="5"/></svg>');
}

.dg-image-5 {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f9fafb"/><path d="M10 80 C30 20, 70 20, 90 80" stroke="%2329b3fe" fill="none" stroke-width="5"/></svg>');
}

.dg-card-body {
  padding: 1.25rem;
}

.dg-card-tag {
  display: inline-block;
  color: var(--dg-color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dg-post-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.dg-post-card p {
  color: var(--dg-color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.dg-read-link {
  color: var(--dg-color-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: color 0.2s ease;
}

.dg-read-link:hover {
  color: var(--dg-color-primary-dark);
}

/* Highlighted card for a featured post */
.dg-card-highlight {
  background-color: var(--dg-color-surface);
  border-left: 5px solid var(--dg-color-primary);
}

/*
 * -------------------------------------
 * 6. SIDEBAR MODULES (Search & Newsletter)
 * -------------------------------------
 */
.dg-sidebar-module {
  background-color: var(--dg-color-surface);
  padding: 1.5rem;
  border-radius: var(--dg-border-radius);
  margin-bottom: 2rem;
  border: 1px solid var(--dg-color-surface-light);
}

.dg-module-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dg-color-primary);
  font-weight: 700;
}

/* Search Form */
.dg-search-form {
  display: flex;
  gap: 0.5rem;
}

.dg-search-input {
  flex-grow: 1;
  padding: 0.75rem;
  border-radius: var(--dg-border-radius);
  border: 1px solid var(--dg-color-surface-light);
  background-color: var(--dg-color-background);
  color: var(--dg-color-text);
}

.dg-search-button {
  padding: 0.75rem 1rem;
  background-color: var(--dg-color-primary);
  color: var(--dg-color-background);
  border: none;
  border-radius: var(--dg-border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dg-search-button:hover {
  background-color: var(--dg-color-primary-dark);
}

/* Newsletter Module */
.dg-newsletter-module {
  border-top: 5px solid var(--dg-color-primary);
}

.dg-newsletter-module p {
  color: var(--dg-color-text-secondary);
  margin-bottom: 1rem;
}

.dg-newsletter-input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: var(--dg-border-radius);
  border: 1px solid var(--dg-color-surface-light);
  background-color: var(--dg-color-background);
  color: var(--dg-color-text);
}

.dg-newsletter-cta {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--dg-color-primary);
  color: var(--dg-color-background);
  border: none;
  border-radius: var(--dg-border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dg-newsletter-cta:hover {
  background-color: var(--dg-color-primary-dark);
}

/*
 * -------------------------------------
 * 7. CTA BANNER
 * -------------------------------------
 */
.dg-cta-banner {
  background-color: var(--dg-color-primary);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--dg-color-primary-dark);
}

.dg-cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dg-color-background);
  /* White text on blue background */
  font-weight: 800;
}

.dg-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.dg-button {
  padding: 1rem 2rem;
  border-radius: var(--dg-border-radius);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 250px;
}

.dg-button-primary {
  background-color: var(--dg-color-background);
  /* White button */
  color: var(--dg-color-primary);
  border: 2px solid var(--dg-color-background);
}

.dg-button-primary:hover {
  background-color: var(--dg-color-surface-light);
}

.dg-button-secondary {
  background: none;
  color: var(--dg-color-background);
  /* White text */
  border: 2px solid var(--dg-color-background);
  /* White border */
}

.dg-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 600px) {
  .dg-cta-buttons {
    flex-direction: row;
  }
}

/*
 * -------------------------------------
 * 8. FOOTER
 * -------------------------------------
 */
.dg-page-footer {
  padding: 1.5rem 0;
  text-align: center;
  background-color: var(--dg-color-surface);
  border-top: 1px solid var(--dg-color-surface-light);
  color: var(--dg-color-text-secondary);
  font-size: 0.9rem;
}

/* HERO */
.insight-hero {
  padding: 80px 20px;
  text-align: center;
  /* background: radial-gradient(circle at top, #0a2cff, #050b14 60%); */
  /* background-color: #fff; */
}

.border-bottom {
  margin: 0 auto;
}

.insight-hero-inner h1 {
  font-size: 42px;
  font-weight: 700;
  color: #4db3ff;
}

.insight-hero-inner span {
  color: #4db3ff;
}

.insight-hero-inner p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #b6c6e3;
}

/* SECTION TITLE */
.section-heading {
  text-align: center;
  margin-bottom: 24px;
}

/* CATEGORIES */
.insight-categories {
  padding: 20px 20px;
}

.category-chip-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.category-chip {
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 14px;
  cursor: pointer;
  /* background: rgba(77, 179, 255, 0.12); */
  border: 1px solid rgba(77, 179, 255, 0.4);
  background-color: #29b3fe;
  color: #fff;
}

/* SEARCH */
.insight-search {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.search-input {
  width: 100%;
  max-width: 420px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  outline: none;
}

/* FEATURED */
.featured-insights {
  padding: 20px 20px;
  max-width: 1163px;
  margin: auto;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.insight-card {
  /* padding: 24px; */
  border-radius: 16px;
  /* background: linear-gradient(180deg, #0c1b35, #050b14); */
  border: 1px solid #29b3fe;
  transition: all 0.3s ease;
  width: 310px !important;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(77, 179, 255, 0.2);
}

.insight-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.insight-card p {
  font-size: 14px;
  color: #9fb3d1;
}

/* NEWSLETTER */
.newsletter-box {
  padding: 40px 20px;
  text-align: center;
  /* background: linear-gradient(180deg, #08162e, #050b14); */
  background-color: #29b3fe;
  max-width: 1100px !important;
  margin: 40px auto !important;
  border-radius: 12px !important;
}

.newsletter-btn {
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 10px;
  background: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #000;
}

/* CTA */
.final-action {
  padding: 70px 20px;
  text-align: center;
}

.action-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 30px;
  border-radius: 10px;
  background: #29b3fe;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff !important;
}

.btn-primary-2 {
  padding: 14px 30px;
  border-radius: 10px;
  background: #4db3ff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

.btn-outline-2 {
  padding: 14px 30px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #4db3ff;
  color: #4db3ff;
  font-weight: 600;
  cursor: pointer;
}

/* GRID */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* IMAGE */
.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* CONTENT */
.card-content {
  padding: 22px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e6f1ff;
}

.card-content p {
  font-size: 14px;
  color: #9fb3d1;
  margin-bottom: 16px;
}

/* BUTTON */
.card-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #4db3ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  color: #ffffff;
}

/* ---------------------------------------------------- */
/* 1. Global Reset & Typography */
/* ---------------------------------------------------- */
:root {
  --color-primary: #007bff;
  /* Neon Blue */
  --color-secondary: #ffc107;
  /* Gold/Amber */
  --color-background: #121212;
  /* Dark/Black UI */
  --color-card-bg: #1e1e1e;
  --color-text-light: #f8f9fa;
  --color-text-dimmed: #adb5bd;
  --color-success: #28a745;
  --font-main: "Inter", sans-serif;
  --spacing-large: 40px;
  --spacing-medium: 20px;
}

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

body {
  font-family: var(--font-main);
  /* background-color: var(--color-background); */
  color: var(--color-text-light);
  line-height: 1.6;
  padding-bottom: var(--spacing-large);
}
/* 
.container-drops {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px var(--spacing-medium);
} */

h1,
h2,
h3 {
  font-weight: 800;
  margin-bottom: var(--spacing-medium);
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  color: var(--color-primary);
  padding-top: var(--spacing-medium);
}

/* ---------------------------------------------------- */
/* 2. Utility Classes */
/* ---------------------------------------------------- */
.section-padding {
  margin: 80px auto!important;
}

.tag {
  display: inline-block;
  /* background: var(--color-secondary); */
  background-color: #29b3fe;
  color: #fff;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 5px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
}

.btn-primary {
  /* background-color: var(--color-primary); */
  /* color: var(--color-text-light); */
  /* border: 2px solid var(--color-primary); */
  /* box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4); */
}

.btn-secondary {
  background-color: transparent;
  color: #29b3fe;
  border: 2px solid #29b3fe;
}

.btn-secondary:hover {
  background-color: rgba(0, 123, 255, 0.1);
}

/* ---------------------------------------------------- */
/* 3. Hero Section (Section 1) */
/* ---------------------------------------------------- */
.hero-section {
  background: var(--color-background);
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid var(--color-primary);
  /* Neon accent */
}

.hero-headline {
  font-size: 3rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--color-text-dimmed);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(145deg, #1e1e1e, #0c0c0c);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
  font-size: 0.9rem;
  color: var(--color-primary);
  overflow: hidden;
}

/* Placeholder for the complex visual */
.hero-visual::before {
  content: "AI Dashboard: Top-40 → Top-15 → Top-10 → Top-2 Funnel";
  display: block;
  min-height: 150px;
  background-image: repeating-linear-gradient(
    45deg,
    #0f0f0f,
    #0f0f0f 5px,
    #1a1a1a 5px,
    #1a1a1a 10px
  );
  border: 1px dashed var(--color-primary);
  border-radius: 8px;
  line-height: 150px;
  font-size: 1.1rem;
}

/* ---------------------------------------------------- */
/* 4. What You Get (Section 2) */
/* ---------------------------------------------------- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-medium);
  margin-top: var(--spacing-large);
}

.feature-card {
  /* background-color: var(--color-card-bg); */
  background-color: #fff;
  padding: var(--spacing-medium);
  border-radius: 12px;
  border-left: 5px solid #29b3fe;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--color-secondary);
}

.feature-card h3 {
  color: #29b3fe;
  font-size: 1.5rem;
  margin-bottom: 16px !important;
}

.rank-badge {
  display: inline-block;
  background-color: #29b3fe;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: 800;
  margin-right: 10px;
}

/* Specific coloring for Top-2 */
.top-2-card {
  border-left-color: var(--color-secondary);
}

.top-2-card .rank-badge {
  background-color: var(--color-secondary);
  color: var(--color-background);
}

.heading {
  color: #29b3fe;
  font-size: 32px !important;
  margin-bottom: 20px !important;
}

/* ---------------------------------------------------- */
/* 5. Daily Delivery (Section 3 & 7) */
/* ---------------------------------------------------- */
.delivery-box,
.timing-box {
  background-color: var(--color-card-bg);
  padding: var(--spacing-large);
  border-radius: 12px;
  border: 2px solid #29b3fe;
  margin: var(--spacing-medium) 0;
  text-align: center;
}

.delivery-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.delivery-list li {
  background-color: #2a2a2a;
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.delivery-list li::before {
  content: "📦";
  margin-right: 10px;
  font-size: 2.1rem;
}

.timing-details p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.timing-details strong {
  color: var(--color-secondary);
}

/* ---------------------------------------------------- */
/* 6. Plan Breakdown (Section 4) */
/* ---------------------------------------------------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-medium);
  margin-top: var(--spacing-large);
}

.plan-card {
  background-color: var(--color-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-top: 5px solid transparent;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

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

.plan-card-free {
  border-top-color: var(--color-text-dimmed);
}

.plan-card-mini {
  border-top-color: var(--color-primary);
}

.plan-card-advanced {
  border-top-color: var(--color-secondary);
}

.plan-card-pro {
  /* border-top-color: #e59dff; */
  /* Custom Pro Color */
  background: var(--card-bg);
  border-top-color: #e59dff !important;
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  text-align: left;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #29b3fe;
  margin-bottom: 10px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-dimmed);
}

.plan-card-pro .plan-price {
  color: #e59dff;
}

.plan-card-advanced .plan-price {
  color: var(--color-secondary);
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  flex-grow: 1;
  /* To make list take up space */
}

.plan-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
}

.plan-card ul li::before {
  content: "✔️";
  color: var(--color-success);
  margin-right: 8px;
  font-weight: bold;
}

.plan-card-free ul li::before {
  content: "❌";
  color: #dc3545;
  /* Red for missing features */
}

.plan-for {
  font-style: italic;
  color: var(--color-text-dimmed);
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #333;
}

/* ---------------------------------------------------- */
/* 7. Sample Output (Section 5) */
/* ---------------------------------------------------- */
.sample-output {
  border-radius: 12px;
  padding: 30px 0 !important;
  margin-top: 40px !important;
}

.sample-output h3 {
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 15px;
}

.domain-list-preview {
  max-width: 400px;
  margin: 14px auto;
}

.domain-item {
  display: flex;
  justify-content: space-between;
  background-color: #212529;
  padding: 20px 5px;
  margin-bottom: 8px;
}

.domain-name {
  font-weight: 600;
  color: var(--color-text-light);
}

.smart-score {
  color: var(--color-primary);
  font-weight: 800;
}

/* ---------------------------------------------------- */
/* 8. Why It Matters (Section 6) */
/* ---------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-medium);
  margin-top: var(--spacing-large);
}

.benefit-item {
  background-color: #1e293b !important;
  padding: 16px 16px !important;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-right: 5px solid #29b3fe;
  color: #fff !important;
}

.benefit-item h3 {
  font-size: 16px !important;
  color: #29b3fe;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* .benefit-item h3::before {
            content: '✅';
            margin-right: 10px;
            font-size: 16px;
        } */

/* ---------------------------------------------------- */
/* 9. Final CTA Banner (Section 8) */
/* ---------------------------------------------------- */
.cta-banner {
  /* background-color: #fff; */
  background: var(--card-bg);
  padding: 40px auto !important;
  border-radius: 15px;
  margin-top: var(--spacing-large);
  border: 2px solid #29b3fe;
  text-align: center;
  max-width: 600px;
  margin: 40px auto !important;
}

/* .cta-banner-2 {
            background-color: #fff;
            padding: 40px auto!important;
            border-radius: 15px;
            margin-top: var(--spacing-large);
            border: 2px solid #29b3fe;
            text-align: center;
            max-width: 990px;
            margin: 0 auto;
        } */

.cta-banner h2 {
  color: var(--color-secondary);
  font-size: 2rem;
}

/* ================= ROOT ================= */

.plan-footer {
  margin-top: 22px;
  font-size: 14px;
  color: var(--success);
}

/* ================= TABLE ================= */
.table-wrap {
  overflow-x: auto;
  margin-top: 30px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.compare-table th,
.compare-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.compare-table th {
  color: var(--accent);
  font-weight: 600;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-main);
}

/* ================= CTA ================= */
.cta-box {
  background: linear-gradient(
    135deg,
    rgba(58, 169, 255, 0.18),
    rgba(0, 102, 255, 0.08)
  );
  border-radius: var(--radius-lg);
  padding: 50px 26px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* ---------------------------------------------------- */
/* 1. Global Setup and Variables */
/* ---------------------------------------------------- */
:root {
  --color-neon-blue: #007bff;
  --color-gold: #ffc107;
  --color-dark-bg: #0a0a0a;
  --color-card-bg: #1a1a1a;
  --color-text-light: #f8f9fa;
  --color-text-dimmed: #adb5bd;
  --color-success: #28a745;
  --font-main: "Inter", sans-serif;
  --font-mono: "Roboto Mono", monospace;
  --spacing-large: 60px;
  --spacing-medium: 30px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  line-height: 1.6;
}

.dg-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-medium);
}

h1,
h2,
h3 {
  font-weight: 800;
  margin-bottom: var(--spacing-medium);
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--color-neon-blue);
  padding-top: var(--spacing-medium);
}

.dg-section-padding {
  padding: var(--spacing-large) 0;
}

/* ---------------------------------------------------- */
/* 2. Utility Buttons and CTAs */
/* ---------------------------------------------------- */
.dg-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 0.5px;
}

.dg-btn-primary {
  font-size: 14px;
  background-color: var(--color-neon-blue);
  color: var(--color-text-light);
  border: 2px solid var(--color-neon-blue);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
}

.dg-btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.7);
}

.dg-btn-secondary {
  font-size: 14px;
  background-color: transparent;
  color: #fff !important;
  border: 2px solid #fff !important;
}

.dg-btn-secondary:hover {
  background-color: rgba(0, 123, 255, 0.1);
}

.dg-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------- */
/* 3. Hero Section (Section 1) */
/* ---------------------------------------------------- */
.dg-hero-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--color-dark-bg) 0%, #001f40 100%);
  border-bottom: 5px solid var(--color-neon-blue);
}

.dg-hero-headline {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

.dg-hero-subheadline {
  font-size: 14px;
  color: var(--color-text-dimmed);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dg-visual-placeholder {
  padding: 30px;
  background-color: #05051a;
  border-radius: 15px;
  border: 2px solid var(--color-neon-blue);
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  color: var(--color-neon-blue);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}

/* ---------------------------------------------------- */
/* 4. Pipeline Funnel (Section 2) */
/* ---------------------------------------------------- */
.dg-funnel-header {
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: center;
  color: #c9c9c9;
}

.dg-stage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.dg-stage-card {
  padding: 25px;
  border-radius: 12px;
  border-left: 5px solid #29b3fe !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff !important;
  /* background-color: #fff !important; */
  background: var(--card-bg);
}

.dg-stage-card:hover {
  transform: translateY(-5px);
}

.dg-stage-card h3 {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px !important;
}

.dg-stage-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 5px;
  color: var(--color-dark-bg);
  font-weight: 700;
  font-size: 0.9rem;
}

.stage-0-badge {
  background-color: #29b3fe!important;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center !important;
}

.stage-1-badge {
  background-color: #fd7e14;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center !important;
}

.stage-2-badge {
  background-color: #28a745;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center !important;
}

.stage-3-badge {
  background-color: #6f42c1;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center !important;
}

.stage-4-badge {
  background-color: #fd7e14;
  color: #fff;
  padding: 8px;
  font-size: 14px;
  text-align: center !important;
}

.smartscore-badge {
  background-color: var(--color-gold);
  color: #fff;
  padding: 8px;
  font-size: 14px;
}

.dg-stage-outcome {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed #333;
  color: #29b3fe!important;
  font-weight: 600;
}
.outcome-two {
  color: #fd7e14!important
}
.outcome-three {
  color: #28a745!important;
}
.outcome-four {
  color: #6f42c1!important;
}
.outcome-five {
  color: #ffd700!important;
}
.dg-checks-list {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.dg-checks-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  font-size: 14px;
  /* color: #121111; */
}

.dg-checks-list li::before {
  content: "•";
  color: #29b3fe!important;
  font-size: 20px!important;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ---------------------------------------------------- */
/* 5. Plan Unlocks (Section 3) */
/* ---------------------------------------------------- */
.dg-plan-unlocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-medium);
}

.dg-plan-card {
  background-color: var(--color-card-bg);
  padding: 25px;
  border-radius: 12px;
  border-top: 4px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  margin-top: 40px !important;
}

.dg-plan-card h3 {
  margin-bottom: 5px;
}

.dg-plan-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.dg-plan-price span {
  font-size: 14px !important;
  font-weight: 400;
  color: var(--color-text-dimmed);
}

/* Plan Specific Colors */
.plan-free {
  border-top-color: var(--color-text-dimmed);
}

.plan-mini {
  border-top-color: var(--color-neon-blue);
}

.plan-advanced {
  border-top-color: var(--color-gold);
}

.plan-pro {
  border-top-color: #e59dff;
}

/* Purple/Pink for Pro */

.plan-mini .dg-plan-price {
  color: #29b3fe;
}

.plan-advanced .dg-plan-price {
  color: var(--color-gold);
}

.plan-pro .dg-plan-price {
  color: #e59dff;
}

.dg-unlocks-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.dg-unlocks-list li {
  margin-bottom: 8px;
  font-size: 14px !important;
  display: flex;
  align-items: flex-start;
}

.dg-unlocks-list li::before {
  content: "✔";
  color: var(--color-success);
  margin-right: 8px;
  font-weight: bold;
  line-height: 1.6;
}

.plan-free .dg-unlocks-list li::before {
  content: "❌";
  color: #dc3545;
  /* Red for missing features */
}

.dg-pipeline-depth {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #333;
  font-family: var(--font-mono);
  font-size: 12px !important;
  color: #29b2fe !important;
}

/* ---------------------------------------------------- */
/* 6. Visual Plan Access Map (Table - Section 4) */
/* ---------------------------------------------------- */
.dg-table-wrapper {
  overflow-x: auto;
  margin-top: var(--spacing-medium);
}

.dg-access-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  /* Ensure table is scrollable on small screens */
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.dg-access-table th,
.dg-access-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #333;
  font-size: 14px;
  color: #fff;
}

.dg-access-table th {
  /* background-color: var(--color-neon-blue); */
  color: #000;
  font-weight: 700;
  text-align: center;
}

.dg-access-table th:first-child {
  background-color: #2a2a2a;
  color: #fff;
  text-align: left;
}

.dg-access-table tr:nth-child(even) {
  /* background-color: #121212; */
}

/* 
        .dg-access-table {
            background-color: #fff;
        } */

/* .check-mark { color: var(--color-success); font-weight: 700; font-size: 1.1rem; } */
/* .cross-mark { color: #dc3545; font-weight: 700; font-size: 1.1rem; } */
/* .enhanced-mark { color: var(--color-gold); font-weight: 700; } */

/* ---------------------------------------------------- */
/* 7. Why This Matters (Section 5) */
/* ---------------------------------------------------- */
.dg-impact-list {
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-medium);
}

.dg-impact-list li {
  /* background-color: #fff; */
  background: var(--card-bg);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 16px !important;
  /* color: #121111; */
  color: #fff;
}

.dg-impact-list li::before {
  content: "💡";
  font-size: 1.5rem;
  margin-right: 15px;
}

.dg-scientific {
  text-align: center;
  font-style: italic;
  color: var(--color-gold);
  margin-top: 30px;
}

/* ---------------------------------------------------- */
/* 8. Media Queries for Responsiveness */
/* ---------------------------------------------------- */
@media (max-width: 992px) {
  .dg-hero-headline {
    font-size: 2.5rem;
  }

  .dg-plan-unlocks {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  .dg-stage-grid {
    gap: 20px;
  }

  .dg-cta-group {
    flex-direction: column;
  }

  .dg-btn {
    width: 100%;
  }

  .dg-table-wrapper {
    /* Allows horizontal scroll for the detailed table */
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .dg-hero-section {
    padding: 80px 0 40px 0;
  }
}

/* .container-index {
            background-color: #fff!important;
        } */

.social-icons {
  width: 25px !important;
  height: 25px !important;
  font-size: 25px !important;
}

/* --- Section Wrapper (Original: .ptb80, background-color:#121111) --- */
.pipeline-section-wrapper {
  background-color: #121111;
}

/* --- Container (Original: .container) --- */
.pipeline-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 40px;
  align-items: center;
  justify-content: center!important;
}

/* --- Media/Video Column (Original: .col-md-6) --- */
.pipeline-content-media {
  flex: 1 1 550px;
  /* Grow, shrink, and base width for media column */
  min-width: 300px;
  /* Ensure a minimum width */
}

/* --- Responsive Video Embed (16:9 Aspect Ratio) --- */
.pipeline-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio (9/16 * 100%) */
  height: 0;
  overflow: hidden;
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pipeline-video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Info/Text Column (Original: .col-md-6, .info-text) --- */
.pipeline-content-info {
  flex: 1 1 550px;
  /* Grow, shrink, and base width for info column */
  padding: 20px 0;
}

/* --- Heading (Original: h2, color:#fff, pb20) --- */
.pipeline-info-heading {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* --- Description (Original: p, nomargin) --- */
.pipeline-info-description {
  color: #b0b0b0;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 10px!important;
}

/* --- List (Original: ul, nopadding) --- */
.pipeline-info-list {
  list-style: none;
  /* Remove default bullets */
  padding: 0;
  margin: 0 0 30px 0;
  /* Add space below the list */
}

.pipeline-list-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle separator */
  color: #e0e0e0;
  font-size: 18px !important;
  text-align: center;
}

.pipeline-list-item:last-child {
  border-bottom: none;
}

/* Highlight the filter name */
.pipeline-list-filter {
  color: #4caf50;
  /* A distinct color for emphasis */
  font-weight: 600;
  margin-right: 5px;
}

/* --- Button (Original: a, btn btn-border btn-blue btn-dark mt20) --- */
.pipeline-cta-button {
  /* Style based on btn-border btn-blue/dark */
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  /* mt20 */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: #29b3fe;
  /* Blue text for border button */
  border: 2px solid #29b3fe;
  /* Blue border */
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  text-align: center;
}

.pipeline-cta-button:hover {
  background-color: #2196f3;
  /* Solid blue on hover */
  color: #fff!important;
  /* Dark text on hover */
  border-color: #2196f3;
}

/* --- General Styling --- */
#countup {
  padding: 60px 0;
  background-color: #f9f9f9;
  /* Optional: background color */
}

.counter-wrapper {
  margin-bottom: 30px;
  /* Mobile par gap ke liye */
}

.counter-item {
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-item img {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: block;
}

.counter-item .counter {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.counter-item h3 {
  font-size: 18px;
  color: #666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ss-card {
  background: #1c1c1c;
  border: 1px solid #29b3fe;
  padding: 25px;
  margin: 0px;
  /* Cards ke beech gap */
  border-radius: 10px;
  height: 220px;
  /* Sabhi cards ek barabar */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ss-card-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.ss-card ul {
  color: #bbb;
  padding-left: 15px;
  margin: 0;
}

.ss-card ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Dots and Nav Styling */
.owl-theme .owl-dots .owl-dot span {
  background: #444;
  display: none !important;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.mySwiper {
  padding: 20px 0 50px 0 !important;
  max-width: 1000px;
  margin: 0 auto;
}

.card-3 {
  background: #1e1e1e;
  /* Slightly lighter than background */
  border: 2px solid #29b3fe;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  /* Ensures all cards in a row are same height */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 220px;
  align-items: center;
}

.card-3:hover {
  /* border-color: #555; */
  /* transform: translateY(-5px); */
}

.card-3-title {
  color: #29b3fe !important;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.card-3 p {
  color: #fff!important;
  line-height: 1.6;
  font-size: 16px;
  margin-top: 14px;
  text-align: center;
}

/* Customizing Swiper Arrows & Dots */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  transform: scale(0.7);
  display: none !important;
}

.swiper-pagination-bullet {
  background: #555 !important;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

:root {
  --color-text-dimmed: #888;
  --color-gold: #ffd700;
  --card-gap: 20px;
  --ani-speed: 30s;
  /* Animation ki speed yahan se control karein */
}

.dg-section-padding {
  padding: 80px 0;
  background-color: #121111 !important;
  overflow: hidden;
  width: 100%;
}

.dg-container {
  width: 100%;
  margin: 0 auto;
}

.text-center {
  text-align: center;
  color: #29b3fe!important;
  font-family: sans-serif;
  margin-bottom: 30px;
  font-size: 32px!important;
}

/* Slider Container */
.dg-slider-window {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Moving Track */
.dg-plan-unlocks {
  display: flex;
  width: max-content;
  /* Ye cards ko ek line me rakhta hai */
  animation: smoothScroll var(--ani-speed) linear infinite;
}

/* .section-padding {
  padding-top: 40px;
} */

.container-drops {
  max-width: 1200px;
  margin: auto;
  padding: 0 0 !important;
}
.container-drops-2 {
  max-width: 1200px;
  margin: auto;
  padding: 0 12px !important;
}
.container-drops-3 {
  max-width: 1200px;
  margin: 80px auto!important;
  padding: 0 12px !important;
}

.plan-grid .owl-stage {
  display: flex;
}

.plan-grid .owl-item {
  display: flex;
}

.plan-card {
  background: var(--card-bg);
  color: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.plan-card h3 {
  font-size: 22px;
  margin: 10px 0;
}

.plan-price {
  font-size: 28px;
  font-weight: bold;
}

.plan-price span {
  font-size: 14px;
  opacity: 0.7;
}

.plan-card ul {
  padding-left: 18px;
  margin: 18px 0;
}

.plan-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.plan-for {
  font-size: 13px;
  opacity: 0.8;
}

.tag {
  display: inline-block;
  background: #444;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 12px;
}

/* Owl dots */
.owl-dots {
  margin-top: 30px;
}

.owl-dot span {
  background: #444 !important;
}

.owl-dot.active span {
  background: #29b3fe !important;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .plan-card {
    padding: 22px 14px;
  }

  .plan-card h3 {
    font-size: 20px;
  }
}

.featured-insights {
  padding: 70px 18px;
  /* background: #0b0b0b; */
}

.section-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.insight-card {
  background: #121212;
  border-radius: 14px;
  overflow: hidden;
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 6px;
}

.card-content p {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 10px;
}

.card-content a {
  color: #00ffd5;
  text-decoration: none;
  font-weight: 600;
}

/* Smooth motion */
.owl-stage {
  display: flex;
}

/* About-us section start */
:root {
  --bg-color: #121111;
  --card-bg: #1a1a1a;
  --accent-primary: #00f2ff;
  --accent-secondary: #7000ff;
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.03);
}

.container-about {
  max-width: 1100px;
  width: 100%;
  text-align: center;
  margin: 40px auto !important;
}

.header-about {
  margin-bottom: 50px;
}

.header-about h1 {
  font-size: 48px !important;
  margin-top: 40px !important;
  color: #29b3fe !important;
}

.header-about p {
  color: var(--text-dim);
  font-size: 18px !important;
}

/* Pipeline Layout */
.pipeline-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
  padding: 0 20px !important;
}

.card-about {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card-about:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.card-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  opacity: 0.5;
}

.step-number {
  font-size: 18px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-primary);
  margin-bottom: 10px;
  display: block;
  text-align: center;
}

.card-about h2 {
  font-size: 22px !important;
  margin-bottom: 150px;
  font-weight: 700;
  color: #29b3fe !important;
}

.card-about p {
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 16px !important;
  text-align: center!important;
}

/* Highlighting the "Gem" card */
.card-about.featured {
  background: linear-gradient(
    145deg,
    rgba(112, 0, 255, 0.1),
    rgba(0, 242, 255, 0.05)
  );
  border: 1px solid var(--accent-primary);
}

.footer-note {
  margin-top: 60px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-note h3 {
  color: var(--accent-primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* About-us section end */

/* How the intelligence engine works section start */
:root {
  --bg: #121111;
  --card-inner: #1a1a1a;
  --accent-cyan: #00f2ff;
  --accent-purple: #8a2be2;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
}

.wrapper-intelligence {
  max-width: 900px;
  margin: 80px auto !important;
  padding: 0 20px !important;
}

.section-title-intelligence h1 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 48px !important;
  color: #29b3fe !important;
}
.section-title-intelligence p {
  font-size: 18px!important;
}

.section-title h1 {
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  background: linear-gradient(to bottom right, #fff, #64748b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* The Engine Pipeline Layout */
.engine-container {
  position: relative;
  padding-left: 40px;
}

/* The Vertical Line */
.engine-container::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-cyan),
    var(--accent-purple),
    transparent
  );
}

.filter-step {
  position: relative;
  margin-bottom: 40px;
  background: var(--card-inner);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.filter-step:hover {
  border-color: var(--accent-cyan);
  transform: translateX(5px);
  box-shadow: -10px 0 20px rgba(0, 242, 255, 0.05);
}

/* Connection Node */
.filter-step::after {
  content: "";
  position: absolute;
  left: -41px;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--bg);
  border: 3px solid var(--accent-cyan);
  border-radius: 50%;
  z-index: 2;
}

.filter-step h3 {
  color: var(--accent-cyan);
  font-size: 18px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.filter-step h2 {
  color: #29b3fe !important;
  margin-bottom: 16px!important;
  font-weight: 600;
}

.filter-step p {
  color: var(--text-secondary);
  font-size: 16px !important;
  text-align: center!important;
}

/* SmartScore Section */
.smart-score-box {
  margin-top: 80px;
  /* Updated Blue Gradient */
  background: radial-gradient(
    circle at top left,
    rgba(41, 179, 254, 0.25) 0%,
    /* Your primary blue */ rgba(0, 119, 255, 0.05) 60%,
    /* A slightly deeper blue */ transparent 100%
  );
  /* Changed border to match your blue theme */
  border: 1px solid rgba(41, 179, 254, 0.3);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(41, 179, 254, 0.1);
}

.smart-score-badge {
  display: inline-block;
  padding: 6px 16px;
  /* Soft blue glass background */
  background: rgba(41, 179, 254, 0.15);
  /* Bright, readable blue text */
  color: #a3e0ff;
  border-radius: 100px;
  font-size: 16px !important;
  font-weight: 700;
  margin-bottom: 20px;
  /* Border matches your primary blue at low opacity */
  border: 1px solid rgba(41, 179, 254, 0.4);
  /* Optional: subtle text shadow to make it pop */
  text-shadow: 0 0 10px rgba(41, 179, 254, 0.3);
}

.smart-score-box h2 {
  font-size: 32px !important;
  margin-bottom: 20px!important;
  color: #29b3fe !important;
}
.smart-score-box p {
  font-size: 18px!important;
}

.grid-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #29b3fe!important;
}

.info-card strong {
  display: block;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  font-size: 22px !important;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 16px !important;
}

/* How the intelligence engine works section end */

/* Founder note section start */
:root {
  --bg-color: #121111;
  --card-bg: #1a1a1a;
  --accent: #00f2ff;
  --accent-soft: rgba(0, 242, 255, 0.1);
  --text-bright: #ffffff;
  --text-muted: #a0a0a0;
  --glass-border: rgba(255, 255, 255, 0.08);
}

.founder-card {
  max-width: 900px;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin: 0 auto !important;
}

/* Left Side: Profile */
.founder-sidebar {
  flex: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 242, 255, 0.05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--glass-border);
}

.profile-img-container {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(45deg, var(--accent), #7000ff);
  margin-bottom: 20px;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #222;
  /* Placeholder for actual image */
  object-fit: cover;
  border: 4px solid var(--card-bg);
}

.founder-name {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #29b3fe !important;
}

.founder-title {
  color: var(--accent);
  font-size: 16px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Right Side: Content */
.founder-content {
  flex: 2;
  padding: 50px;
  max-height: 80vh;
  overflow-y: auto;
}

.note-header {
  font-size: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.content-block p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px !important;
}

.highlight-quote {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-bright);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 30px 0;
}

.pattern-list {
  list-style: none;
  margin: 25px 0;
}

.pattern-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.pattern-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Custom Scrollbar */
.founder-content::-webkit-scrollbar {
  width: 6px;
}

.founder-content::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

/* Founder note section end */

/* Build in public section start */
:root {
  --bg: #121111;
  --card-bg: #1a1a1a;
  --accent-cyan: #00f2ff;
  --accent-red: #ff4b4b;
  --text-main: #ffffff;
  --text-dim: #94a3b8;
  --border-glow: rgba(0, 242, 255, 0.15);
}

.main-container {
  max-width: 940px !important;
  width: 100%;
  margin: 80px auto !important;
  padding: 0 18px !important;
}

/* Built in Public Header */
.bip-header {
  background: linear-gradient(145deg, #1e1e1e, #121111);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 255, 0.1);
  color: var(--accent-cyan);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 16px !important;
  font-weight: 700;
  margin-bottom: 15px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: dgPulse 2s infinite;
}

@keyframes dgPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 242, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
  }
}

.bip-header h1 {
  font-size: 32px !important;
  margin-bottom: 15px !important;
  color: #29b3fe;
  text-align: center;
}

.bip-header p {
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
  font-size: 16px!important;
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.comp-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-card.designed-for {
  border-top: 4px solid var(--accent-cyan);
}

.comp-card.not-for {
  border-top: 4px solid #333;
  opacity: 0.8;
}

.comp-card h3 {
  font-size: 18px!important;
  margin-bottom: 15px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #29b3fe !important;
}

.check-list {
  list-style: none;
}

.check-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 16px !important;
  color: var(--text-dim);
}

.designed-for .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.not-for .check-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--accent-red);
}

/* Operating Principles */
.principles-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 60px;
}

.principle-tile {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.principle-tile:hover {
  background: rgba(0, 242, 255, 0.05);
  transform: translateY(-5px);
}

.principle-tile span {
  display: block;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--text-main);
}

/* Build in public section end */

/* Team section start */
:root {
  --bg-color: #121111;
  --card-bg: #1a1a1a;
  --accent-cyan: #00f2ff;
  --text-main: #ffffff;
  --text-dim: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
}

.wrapper-team {
  max-width: 935px !important;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 15px !important;
}

/* The Team Section */
.team-block {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 20px !important;
  /* border-bottom: 1px solid var(--border); */
}

.founder-img-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-cyan), #7000ff);
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #222;
  object-fit: cover;
  border: 4px solid var(--bg-color);
}

.team-block h2 {
  font-size: 22px !important;
  margin-bottom: 20px;
  font-weight: 700;
  color: #29b3fe !important;
}

.team-block p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 14px !important;
  margin-bottom: 15px;
}

/* Try the System Section */
.preview-container {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.preview-container h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  background: linear-gradient(to right, #fff, var(--text-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preview-container p {
  color: var(--text-dim);
  font-size: 16px !important;
  line-height: 1.6;
  margin-bottom: 30px;
}

.highlight-box {
  background: rgba(0, 242, 255, 0.03);
  border: 1px solid rgba(0, 242, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 35px;
}

.highlight-box span {
  display: block;
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 16px !important;
  margin-bottom: 10px;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 1rem;
}

.cta-button-free {
  display: inline-block;
  background-color: var(--text-main);
  color: var(--bg-color);
  padding: 18px 45px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px !important;
  transition: all 0.3s ease;
}

.cta-button-free:hover {
  background-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

.disclaimer {
  margin-top: 25px;
  font-style: italic;
  color: #64748b !important;
  font-size: 0.9rem !important;
}

/* Team section end */

/* Daily top 40 section start */
:root {
  --bg-dark: #0f172a;
  --card-bg: #1e293b;
  --accent-blue: #38bdf8;
  --accent-purple: #a855f7;
  --accent-gold: #fbbf24;
  --text-main: #f8fafc;
  --text-dim: #94a3b8;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  /* background-color: var(--bg-dark); */
  font-family: "Inter", sans-serif;
}

.tier-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  /* Default for mobile */
  max-width: 350px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Daily top 40 section end */

/* How it recieve section start */
.order-list {
  list-style-type: none !important;
}

/* How it recieve section end */

/* DAILY DROPS TOP 40 CTA BANNER SECTION */
section#dailydrops-subscribe {
  background: #29b1fd;
  color: #f6f6f6;
  position: relative;
  overflow: hidden;
  max-width: 1116px;
  margin: 100px auto;
  border-radius: 20px;
  padding: 20px 0 !important;
}

section#subscribe-2 {
  background: #29b1fd;
  color: #f6f6f6;
  position: relative;
  overflow: hidden;
  max-width: 1116px;
  margin: 100px auto;
  border-radius: 20px;
  padding: 30px 9px;
}

.subscribe-form {
}

.dailydrops-subscribe-form h2 {
  letter-spacing: 1px;
  padding: 0;
  color: #fff;
  margin: 0 auto;
}

.dailydrops-subscribe-form h2 small {
  color: #f6f6f6;
  display: block;
  font-weight: 300;
}

.dailydrops-subscribe-form p {
  text-align: center;
  color: #fff;
}

.dailydrops-subscribe-form .form-inline .form-group {
  width: 100%;
}

.dailydrops-subscribe-form .form-inline .form-group .input-group {
  width: 90%;
  display: flex;
  justify-content: flex-end;
}

.dailydrops-subscribe-form .form-inline .form-group .input-group .form-control {
  height: 45px;
  padding: 0 30px;
  border: none;
  border-radius: 5px;
  width: 80%;
}

.dailydrops-subscribe-form .form-inline .form-group .input-group button {
  height: 45px;
  background: none;
}

.dailydrops-subscribe-form .form-inline .form-group .input-group button:hover {
  color: #29b1fd;
  background: #fff;
}

section#dailydrops-subscribe .clouds {
  position: relative;
  opacity: 0.5;
}

section#dailydrops-subscribe .clouds img.cloud1 {
  width: 130px;
  top: -18px;
}

.background-banner {
  background-color: #29b3fe;
}

/* Testimonial section start */
:root {
  --primary: #6366f1;
  --bg: #0f172a;
  --card-bg: #1e293b;
  --text-main: #f8fafc;
  --text-dim: #94a3b8;

  /* Logic for 3-2-1 responsiveness */
  --cards-to-show: 3;
  --gap: 20px;
}

@media (max-width: 1024px) {
  :root {
    --cards-to-show: 2;
  }
}

@media (max-width: 600px) {
  :root {
    --cards-to-show: 1;
  }
}

.header {
  text-align: center;
  padding: 80px 20px 40px;
}

.header h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 15px;
}
.subcription-header {
  text-align: center;
}

/* Slider Wrapper */
.slider-container {
  width: 100%;
  max-width: 1000px;
  /* Limits width on big screens */
  margin: 80px auto!important;
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: scroll 300s linear infinite;
}

.track:hover {
  animation-play-state: paused;
}

/* Calculation for Card Width: 
           (100% of container / number of cards) minus the gap adjustment */
.card-testimonial {
  width: calc(
    (100vw - (var(--gap) * (var(--cards-to-show) + 1))) / var(--cards-to-show)
  );
  max-width: calc((1000px - (var(--gap) * 4)) / var(--cards-to-show));
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  flex-shrink: 0;
  display: flex;
  height: 300px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 16px !important;
  color: #cbd5e1;
  margin-bottom: 25px;
  line-height: 1.6;
}

.author-name {
  display: block;
  font-weight: 700;
  color: #29b3fe !important;
  font-size: 18px !important;
}

.author-title {
  font-size: 14px !important;
  color: var(--text-dim);
}

/* The Animation Loop */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* This moves exactly 5 cards (the original set) then loops */
    transform: translateX(calc(-1 * ((100% / 3) * 5)));
  }
}

/* Testimonial section end */
.feature-list li {
  font-size: 6px !important;
}

.tier-header p {
  font-size: 14px !important;
}

.tier-header h3 {
  margin-bottom: 8px !important;
}

.footer-tag {
  font-size: 14px !important;
}

:root {
  --primary-accent: #00d2ff;
  --secondary-accent: #3a7bd5;
  --bg-dark: #0f172a;
  --card-bg: rgba(30, 41, 59, 0.7);
  --text-main: #f8fafc;
  --text-dim: #94a3b8;
}

.intelligence-container {
  max-width: 900px;
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
}

/* Header Section */
.header-2 {
  text-align: left;
}
.header-2 h2{
  color: #29b3fe!important;
  margin-bottom: 10px!important;
  font-size: 32px!important;
}


.badge {
  background: linear-gradient(
    90deg,
    var(--primary-accent),
    var(--secondary-accent)
  );
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.sub-text {
  color: var(--text-dim);
  font-size: 16px;
  /* max-width: 600px; */
  text-align: center !important;
}

/* Stats & Pipeline Section */
.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #29b3fe!important;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.big-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #29b3fe!important;
  display: block;
}

.stat-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-top: 10px;
}

.pipeline-flow {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.flow-step {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  border-left: 4px solid #29b3fe;
  transition: transform 0.3s ease;
}

.step-two {
  border-left: 4px solid #ffc107!important;
}
.step-three {
  border-left: 4px solid #e59dff!important;
}

.flow-step:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
}

.step-icon {
  margin-right: 15px;
  font-size: 1.2rem;
}

.footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
}
.glass-effect {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subscription section start */
/* Global Reset & Variables */
/* Modern Reset and Variables */
:root {
  --bg: #0f172a;
  --card-positive: #10b981;
  --card-negative: #f43f5e;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --glass: rgba(30, 41, 59, 0.7);
}

.wrapper {
  max-width: 900px;
  width: 100%;
  margin: 120px auto !important;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* The Grid System */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 80px auto !important;
}

/* Card Styling */
.card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Success Theme */
.positive {
  border-top: 4px solid var(--card-positive);
}
.positive .card-header {
  color: var(--card-positive);
}
.positive .marker {
  background: var(--card-positive);
}

/* Negative Theme */
.negative {
  border-top: 4px solid var(--card-negative);
}
.negative .card-header {
  color: var(--card-negative);
}
.negative .marker {
  background: var(--card-negative);
}

/* List Styling */
.item-list {
  list-style: none;
}

.item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}

.item span {
  font-size: 16px !important;
  font-weight: 500;
}
/* Subscription section end */

/* Pricing bottom section start */
:root {
  --dg-bg: #05070a;
  --dg-card: #11141d;
  --dg-accent: #3b82f6;
  --dg-accent-glow: rgba(59, 130, 246, 0.5);
  --dg-text: #ffffff;
  --dg-text-muted: #94a3b8;
  --dg-border: #1e293b;
  --dg-glass: rgba(255, 255, 255, 0.03);
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--dg-bg);
  color: var(--dg-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Responsive Wrapper */
.dg-wrapper {
  max-width: 1100px;
  margin: 80px auto !important;
}

/* Header Section */
.dg-hero {
  text-align: center;
  margin-bottom: 60px;
}

.dg-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  text-align: center;
  color: #29b3fe !important;
}

.dg-hero p {
  color: var(--dg-text-muted);
  font-size: 16px !important;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Value Proposition Grid */
.dg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.dg-feature-card {
  background: var(--dg-card);
  border: 1px solid var(--dg-border);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.dg-feature-card:hover {
  border-color: var(--dg-accent);
  box-shadow: 0 0 20px var(--dg-accent-glow);
  transform: translateY(-5px);
}

.dg-icon-box {
  width: 50px;
  height: 50px;
  background: var(--dg-glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dg-accent);
  font-size: 1.5rem;
}
.dg-icon-box img {
  width: 30px !important;
  height: 30px !important;
}

.dg-feature-card h3 {
  margin-bottom: 12px;
  font-size: 16px !important;
  color: #fff !important;
}

.dg-feature-card p {
  color: var(--dg-text-muted);
  font-size: 14px !important;
}

/* Accordion Logic Section */
.dg-logic-section {
  background: var(--dg-glass);
  border: 1px solid #29b3fe!important;
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.dg-section-title-pricing {
  margin-bottom: 40px !important;
  font-size: 32px !important;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #29b3fe!important;
}

.dg-accordion-item {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid transparent;
}

.dg-accordion-header {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: var(--dg-text);
  text-align: left;
  font-size: 14px !important;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  margin-top: 10px !important;
}

.dg-accordion-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dg-accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0, 1, 0, 1);
  color: var(--dg-text-muted);
  font-size: 0.95rem;
  margin-top: 10px !important;
}

.dg-accordion-item.is-open {
  border-color: var(--dg-border);
  background: rgba(255, 255, 255, 0.04);
}

.dg-accordion-item.is-open .dg-accordion-content {
  max-height: 1000px;
  padding: 0 20px 20px 20px;
}

.dg-accordion-header i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.dg-accordion-item.is-open .dg-accordion-header i {
  transform: rotate(180deg);
}

/* Comparison List Style */
.dg-list-group {
  margin-top: 15px;
  display: grid;
  gap: 10px;
}

.dg-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px!important;
}

.dg-list-item i {
  color: var(--dg-accent);
  margin-top: 5px;
}
/* Pricing bottom section end */

/* CTA submit button popup modal section start */
/* Modal Overlay */
/* Modal Overlay - Full Screen */
.custom-modal-overlay {
  position: fixed;
  top: 40% !important;
  left: 40% !important;
  translate: calc(-50%, -50%);
  width: 100vw;
  height: 100vh;
  display: none; /* Controlled by JS */
  justify-content: center;
  align-items: center;
  z-index: 99999; /* Ensure this is higher than your navbar/header */
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* When active, show the overlay */
.custom-modal-overlay.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

/* The White Box */
.custom-modal {
  background: #ffffff;
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100000; /* Must be higher than overlay */
}

/* Close Button Styling */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}
/* Typography */
.modal-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.modal-content p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}

/* Form Styling */
.form-input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-input-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 12px;
  outline: none;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-input-group input:focus {
  border-color: #007bff; /* Matches your btn-blue color */
}

.btn-send {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-send:hover {
  background: #0056b3;
}
.openModalBtn {
  cursor: pointer;
}
.center {
  box-shadow: none !important;
  border: none !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 18px;
  background-color: #777; /* Original color */
  transition: background-color 0.3s ease; /* Smooth transition */
  color: white;
  padding: 10px 20px;
  border: none;
  width: 100%;
}
.center:hover {
  background-color: #555; /* Hover color */
}
.mini-plan {
  background-color: #29b3fe!important;
  transition: background-color 0.3s ease;
}
.mini-plan:hover {
  background-color: #1e9ad4!important;/* Darker version */
}
.advanced-plan {
  background-color: var(--color-secondary)!important;
  transition: background-color 0.3s ease
}
.advanced-plan:hover {
  background-color: #e0a800!important;
}
.pro-plan {
  background-color: #e59dff!important;
  transition: background-color 0.3s ease
}
.pro-plan:hover {
  background-color: #cc70e3!important;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* CTA submit button popup modal section end */

.popup-modal {
  padding: 20px 20px !important;
}

/* Unique Variables for easy customization */
.vp-section {
    --vp-secondary: #00f7ff; /* Cyan */
    --vp-card: #0a0a0a;
    --vp-border: #222222;
    
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.vp-container {
    max-width: 1100px;
    margin: 0 auto;
}

.vp-main-heading {
    font-size: 32px!important;
    font-weight: 600;
    margin-bottom: 15px;
    color: #29b3fe!important;
}

.vp-highlight {
    color: var(--vp-accent);
}

.vp-main-description {
    color: #888;
    margin-bottom: 50px;
    font-size: 18px!important;
    text-align: center;
    margin-top: 6px!important;
}

/* Pipeline Grid Styling */
.vp-pipeline-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(319px, 1fr));
    gap: 20px;
}

.vp-step-item {
    background-color: #1e1e1e!important;
    border: 1px solid #29b3fe!important;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vp-step-item:hover {
    border-color: var(--vp-accent);
    transform: translateY(-5px);
}

.vp-step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #29b3fe!important;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.vp-step-title {
    color: #29b3fe!important;
    font-size: 18px!important;
    text-transform: uppercase;
    margin-bottom: 20px!important;
    font-weight: 700;
    letter-spacing: 1px;
}

.vp-step-text {
    font-size: 16px!important;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Button */
.vp-action-area {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vp-btn-primary {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #29b3fe!important ;
    color: #29b3fe!important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.vp-btn-primary:hover {
    background-color: #29b3fe!important;
    color: #fff!important;
}

/* Container & Section Colors */
.di-pricing-section {
    padding: 20px 15px!important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.di-container {
    max-width: 1200px;
    margin: 0 auto;
}

.di-section-title {
    color: #29b3fe;
    text-align: center;
    font-size: 32px!important;
    padding-bottom: 40px;
}

/* Grid for Responsiveness */
.di-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(387px, 2fr));
    gap: 20px;
}

/* Base Card Styling */
.di-plan-card {
    background-color: #1e293b;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #334155;
}

.di-plan-card:hover {
    transform: translateY(-8px);
}

.di-card-inner {
    text-decoration: none !important;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 464px!important;
}
.di-card-inner-2 {
    text-decoration: none !important;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 430px!important;
}
.di-card-mini {
  border-top: 6px solid #29b3fe!important;
}

.di-card-advanced {
  border-top: 6px solid #ffc107!important;
}

/* Typography from your code */
.di-plan-name {
    color: #29b3fe!important;
    margin-bottom: 10px !important;
    font-size: 32px!important;
}

.di-price {
    color: #fff!important;
    font-size: 32px!important;
    font-weight: bold;
    margin-bottom: 25px;
}

.di-price span {
    font-size: 18px!important;
    color: #94a3b8;
    font-weight: normal;
}

/* Info Labels (Mimics the Table Header) */
.di-content-group {
    margin-bottom: 20px;
}

.di-content-group label {
    display: block;
    font-size: 16px!important;
    text-transform: uppercase;
    color: #38bdf8; /* Accent color for labels */
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.di-content-group p {
    color: #cbd5e1;
    font-size: 14px!important;
    line-height: 1.5;
    margin: 0;
}

/* Buttons */
.di-footer {
    margin-top: auto;
    padding-top: 20px;
}

.di-btn {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    background: #334155;
    color: #fff;
    transition: 0.3s;
}

/* Specific Plan Colors */
.btn-mini { background: #0284c7; }
.btn-advanced { background: #ffc107!important; }

/* EXACT COLOR FROM YOUR CODE: #e59dff */
.di-card-pro {
    border: 1px solid #e59dff;
}

.di-card-pro {
  border-top: 6px solid #e59dff!important;
}

.btn-pro {
    background: #e59dff;
    color: #fff;
}

.di-bottom-note {
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    font-size: 16px!important;
    margin-bottom: 30px;
}

/* --- Dark Theme Variables --- */
:root {
    --da-bg: #0f172a;           /* Dark Navy */
    --da-card: #1e293b;         /* Slate */
    --da-accent: #e59dff;       /* Your Purple Accent */
    --da-text-high: #ffffff;
    --da-text-low: #94a3b8;
    --da-border: #334155;
}

/* --- Base Layout --- */
.da-wrapper {
    padding: 40px 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--da-text-high);
}

.da-container {
    max-width: 1100px;
    margin: 0 auto;
}

.da-main-title {
    font-size: 32px!important;
    margin: 0 auto!important;
    text-align: center;
    color: #29b3fe!important;
}

.da-mt-large { margin-top: 80px; }

/* --- Fully Responsive Audit Grid --- */
.da-audit-grid {
    display: grid;
    /* This creates a fluid grid that wraps automatically */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px auto!important;
}

.da-card {
    background: var(--da-card);
    border: 1px solid var(--da-border);
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.da-card:hover {
    transform: translateY(-5px);
    border-color: var(--da-accent);
}

.da-card--featured {
    border-top: 6px solid #29b3fe!important;
    box-shadow: 0 0 15px rgba(229, 157, 255, 0.1);
}

.da-card-advanced {
  border-top: 6px solid #e59dff!important;
}


.da-card-inner { padding: 30px; }

.da-type {
    font-size: 18px!important;
    color: var(--da-text-low);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.da-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--da-text-high);
}

.da-price span {
    font-size: 16px!important;
    color: var(--da-text-low);
    font-weight: 400;
}

.da-info { margin-bottom: 18px; }

.da-label {
    display: block;
    font-size: 18px!important;
    color: var(--da-accent);
    margin-bottom: 4px;
    font-weight: 600;
}

.da-text {
    font-size: 16px!important;
    line-height: 1.2;
    margin: 0;
}

.da-note {
    text-align: center;
    font-size: 16px;
    color: var(--da-text-low);
    margin-top: 25px;
    font-style: italic;
}

/* --- Fully Responsive Bulk Pricing Table --- */
.da-table-container {
    background: var(--da-card);
    border-radius: 16px;
    border: 1px solid var(--da-border);
    overflow: hidden;
}

.da-bulk-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.da-bulk-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    font-size: 18px!important;
    color: #fff!important;
    border-bottom: 1px solid var(--da-border);
}

.da-bulk-table td {
    padding: 20px;
    border-bottom: 1px solid var(--da-border);
    font-size: 16px!important;
}

.da-price-cell {
    font-weight: 700;
    font-size: 1.1rem;
}
/* Container Setup */
.nb-delivery-container {
    padding: 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
    margin: 80px auto!important;
}

.nb-delivery-wrapper {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Cards */
.nb-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.nb-info-card:hover {
    transform: translateY(-5px);
    border-color: #29b3fe;
}

/* Headers */
.nb-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.nb-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Icons */
.nb-icon-circle {
    background: rgba(41, 179, 254, 0.15);
    color: #29b3fe;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature List */
.nb-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nb-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.nb-dot {
    width: 8px;
    height: 8px;
    background: #29b3fe;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(41, 179, 254, 0.5);
}

.nb-dot-alt {
    background: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.nb-feature-list p {
    margin: 0;
    font-size: 16px;
    color: #cbd5e1;
}

.nb-badge {
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 16px!important;
    font-weight: bold;
    margin-left: 8px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

/* Timing Card Specifics */
.nb-time-slot {
    font-size: 16px;
    font-weight: 700;
    color: #29b3fe;
    margin-bottom: 10px;
}

.nb-time-slot small {
    font-size: 16px;
    color: #94a3b8;
}

.nb-description {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

.nz-sample-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.nz-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nz-main-heading {
    text-align: center;
    color: #29b3fe!important;
    font-size: 32px!important;
    margin-bottom: 10px;
    font-weight: 800;
}

.nz-sub-heading {
    text-align: center;
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 40px;
    margin-top: 10px!important;
}

/* The Row Logic */
.nz-domain-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 in a row by default */
    gap: 20px;
}

/* The Card Style */
.nz-domain-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nz-domain-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: #29b3fe;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nz-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nz-tag {
    background: rgba(41, 179, 254, 0.1);
    color: #29b3fe;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
}

.nz-trend {
    width: 18px;
    height: 18px;
    color: #10b981; /* Success Green */
}

.nz-domain-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    word-break: break-all;
}

.nz-score-box {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.nz-score-label {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.nz-score-value {
    font-size: 16px;
    color: #29b3fe;
    font-weight: 800;
}
.popup-logo {
  width: 65px!important;
  height: 65px!important;
}
/* Base Styles */
/* .dg-pro-pipeline-section {
    padding: 80px 20px;
    background-color: #0b0e14;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #ffffff;
}

.dg-pro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-pro-header-area {
    text-align: center;
    margin-bottom: 60px;
}

.dg-pro-main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dg-pro-funnel-pill {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    color: #ffd700;
    font-weight: 500;
}

.dg-pro-arrow {
    opacity: 0.5;
    margin: 0 8px;
}

.dg-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}

.dg-pro-card {
    background: rgba(255, 255, 255, 0.03);
    border-top: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dg-pro-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.dg-pro-badge-wrapper {
    margin-bottom: 20px;
}

.dg-pro-badge {
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-color);
    color: #fff;
}

.dg-pro-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.dg-pro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.dg-pro-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #bcbcbc;
}

.dg-pro-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--accent-color);
}

.dg-pro-outcome {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.4;
}

.dg-pro-check {
    color: var(--accent-color);
    margin-right: 5px;
}

.dg-pro-highlight-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-top: 4px solid #ffd700;
}

.dg-pro-subtext {
    font-weight: bold;
    margin-bottom: 10px;
} */

/* Table Wrapper for Scrolling on Mobile */
    .table-responsive-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: relative;
        margin-bottom: 10px;
    }

    /* Container to control height */
    .table-expand-container {
        max-height: 550px; /* Approximate height for 10 rows + header */
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        position: relative;
    }

    .table-expand-container.expanded {
        max-height: 2500px; /* Large enough to show full table */
    }

    /* Gradient overlay for "Show More" hint */
    .table-expand-container:not(.expanded)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80px;
        pointer-events: none;
    }

    /* Button Styling */
    .show-more-btn {
        display: block;
        margin: 20px auto;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
        transition: background 0.3s;
    }

    .show-more-btn:hover {
        background-color: #1a8cc7;
    }
/* Ensure the grid columns are equal height */
/* .da-audit-grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
} */

/* Base card styling */
.da-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Makes cards fill the grid height */
    text-decoration: none; /* Removes underline from the anchor tag */
}

/* Ensure the inner container expands */
.da-card-inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes the inner content take up all available space */
    padding: 20px;
    height: 100%!important;
}

/* Push the button container to the very bottom */
.da-card-inner > div:last-child {
    margin-top: auto; 
    padding-top: 20px;
    text-align: center; /* Centers the button horizontally */
}

/* Ensure buttons are consistent */
.di-btn {
    display: inline-block;
    min-width: 180px; /* Optional: ensures buttons have a standard width */
}

.list {
  list-style-type: none;
  text-align: center;
  color: #94a3b8;
  font-size: 14px!important;
}
/* UNIQUE DGAI CSS FRAMEWORK */
        :root {
            --dgai-bg: #0f172a;
            --dgai-card: #1e293b;
            --dgai-accent: #38bdf8;
            --dgai-text-hi: #ffffff;
            --dgai-text-lo: #94a3b8;
            --dgai-danger: #f43f5e;
            --dgai-radius: 12px;
        }

        .dgai-wrapper-2 {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--dgai-text-hi);
            line-height: 1.6;
            margin: 0;
            padding: 1rem;
            box-sizing: border-box;
        }

        .dgai-wrapper *, .dgai-wrapper *::before, .dgai-wrapper *::after {
            box-sizing: inherit;
        }

        .dgai-container {
            width: 100%;
            max-width: 1100px;
            margin: 80px auto;
        }

        /* HEADER SECTION */
        .dgai-hero {
            text-align: center;
            padding: 3rem 0;
        }

        .dgai-main-title {
            font-size: 32px!important;
            color: #fff!important;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .dgai-brand-color { color: var(--dgai-accent); font-size: 32px!important; }

        .dgai-tagline {
            color: var(--dgai-text-lo);
            font-size: 16px!important;
            max-width: 700px;
            margin: 0 auto;
        }

        /* FAILURE POINTS SECTION */
        .dgai-alert-box {
            border-radius: var(--dgai-radius);
            padding: 1.5rem;
            margin-bottom: 3rem;
        }

        .dgai-section-label {
            display: block;
            font-size: 18px!important;
            font-weight: 700;
            color: var(--dgai-accent);
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
        }
          .dgai-section-label-2 {
            display: block;
            font-size: 18px!important;
            font-weight: 700;
            color: var(--dgai-accent);
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            text-align: center!important;
        }
        .dgai-failure-grid-2 {
            display: grid;
            grid-template-columns: 1fr; /* Mobile default */
            gap: 10px;
        }

        .dgai-failure-item-2 {
            background: #1a1a1a!important;
            padding: 20px 1rem;
            border-radius: 8px;
            font-size: 16px!important;
            border-left: 3px solid #29b3fe!important;
        }

        .dgai-failure-grid {
            display: grid;
            grid-template-columns: 1fr; /* Mobile default */
            gap: 10px;
        }

        .dgai-failure-item {
            background: #1a1a1a!important;
            padding: 20px 1rem;
            border-radius: 8px;
            font-size: 16px!important;
            border-left: 3px solid #29b3fe!important;
        }

        /* INTELLIGENCE LAYERS GRID */
        .dgai-layers-grid {
            display: grid;
            grid-template-columns: 1fr; /* Mobile default */
            gap: 20px;
            margin-top: 2rem;
        }

        .dgai-layer-card {
            background: var(--dgai-card);
            padding: 1.5rem;
            border-radius: var(--dgai-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .dgai-layer-card:hover {
            border-color: var(--dgai-accent);
            transform: translateY(-5px);
        }

        .dgai-layer-card h3 {
            margin: 0.5rem 0 1rem 0;
            font-size: 1.2rem;
        }

        .dgai-feature-list {
            list-style: none;
            padding: 0;
        }

        .dgai-feature-list li {
            color: var(--dgai-text-lo);
            font-size: 14px!important;
            margin-bottom: 0.6rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .dgai-feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--dgai-accent);
            font-weight: bold;
        }

        /* CTA BUTTON */
        .dgai-footer-cta {
            text-align: center;
            padding: 4rem 0;
        }

        .dgai-btn-primary {
            display: inline-block;
            background: var(--dgai-accent);
            color: #fff;
            text-decoration: none;
            padding: 1.2rem 2.5rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            width: 100%; /* Mobile full width */
            max-width: 350px;
            transition: box-shadow 0.3s ease;
        }

        .dgai-btn-primary:hover {
            box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
            background-color: #fff!important;
            color: #000!important;
        }
:root {
            --dgai-bg: #0f172a;
            --dgai-card: #1e293b;
            --dgai-accent: #38bdf8;
            --dgai-accent-alt: #818cf8;
            --dgai-text-hi: #ffffff;
            --dgai-text-lo: #94a3b8;
            --dgai-success: #10b981;
            --dgai-radius: 12px;
        }

        .dgai-wrapper {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--dgai-text-hi);
            line-height: 1.6;
            margin: 80px 0!important;
            padding: 1rem;
            box-sizing: border-box;
        }

        .dgai-container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* SECTION HEADERS */
        .dgai-section-header {
            text-align: center;
            margin: 4rem 0 2rem;
        }

        .dgai-title-md {
            font-size: 32px!important;
            margin-bottom: 0.5rem;
            color: #29b3fe!important
        }

        /* MULTIPLE DOMAINS BOX */
        .dgai-custom-pricing {
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.1));
            border: 1px solid var(--dgai-accent);
            border-radius: var(--dgai-radius);
            padding: 2rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        /* WHAT YOU RECEIVE SECTION */
        .dgai-delivery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 3rem;
        }

        .dgai-info-card {
            background: var(--dgai-card);
            padding: 1.5rem;
            border-radius: var(--dgai-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .dgai-label {
            color: var(--dgai-accent);
            font-weight: bold;
            font-size: 18px!important;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* TURNAROUND TABLE */
        .dgai-time-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }

        .dgai-time-table td {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dgai-time-table td:last-child {
            text-align: right;
            color: var(--dgai-accent);
            font-weight: 600;
        }

        /* WHO THIS IS FOR */
        .dgai-user-types {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
        }

        .dgai-pill {
            background: rgba(255, 255, 255, 0.05);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px!important;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* NEXT STEPS / ACTION CARDS */
        .dgai-action-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 2rem;
        }

        .dgai-action-card {
            padding: 2rem;
            border-radius: var(--dgai-radius);
            text-decoration: none;
            transition: transform 0.2s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .dgai-card-blue {
            background: #1a1a1a!important;
            color: #000;
            border: 2px solid #29b3fe!important;
        }

        .dgai-card-outline {
            border: 2px solid #29b3fe!important;
            color: var(--dgai-text-hi);
        }

        .dgai-action-card:hover {
            transform: translateY(-5px);
        }

        .dgai-btn-text {
            font-weight: 800;
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            color: #29b3fe!important;
        }
:root {
        --primary-accent: #007bff;
        --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        --glass-bg: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.1);
    }

    .premium-pkg-container {
        padding: 20px;
        display: flex;
        justify-content: center;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        margin: 80px auto;
    }

    .premium-pkg-card {
        background: #1a1a1a!important;
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 30px;
        max-width: 1100px;
        width: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .premium-pkg-card:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 123, 255, 0.5);
    }

    /* Glow Effect */
    .premium-pkg-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .premium-pkg-title {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .premium-pkg-description {
        color: #b0b3b8;
        font-size: 16px;
        line-height: 1.6;
        margin-top: 10px!important;
        padding: 0!important;
    }

    .premium-pkg-subtitle {
        color: #29b3fe!important;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 800;
        margin-bottom: 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 123, 255, 0.2);
        padding: 10px 0!important;
    }

    .premium-pkg-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .premium-pkg-list-item {
        color: #e4e6eb;
        font-size: 15px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Custom Checkmark Icon */
    .premium-pkg-list-item::before {
        content: '→';
        color: var(--primary-accent);
        font-weight: bold;
        margin-right: 12px;
        transition: margin-left 0.3s ease;
        font-size: 16px!important;
    }

    .premium-pkg-card:hover .premium-pkg-list-item::before {
        margin-left: 5px;
    }

.bullets {
  color: #fff!important;
}
.cross {
  height: 15px;
  width: 15px;
  color: #1a1a1a;
}
.custom-modal {
        border: none !important;
        border-radius: 24px !important;
        /* overflow: hidden; */
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    .modal-body-custom {
        padding: 40px 30px !important;
    }
    .input-group-custom {
        margin-bottom: 18px;
        text-align: left;
    }
    .input-group-custom label {
        font-size: 13px;
        font-weight: 600;
        color: #444;
        margin-bottom: 5px;
        display: block;
        margin-left: 5px;
    }
    .form-input {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid #e1e1e1;
        border-radius: 12px;
        font-size: 15px;
        transition: 0.3s;
        color: #333 !important;
    }
    .form-input:focus {
        border-color: #29b3fe;
        outline: none;
        box-shadow: 0 0 0 4px rgba(41, 179, 254, 0.1);
    }
    .submit-btn {
        width: 100%;
        padding: 14px;
        background: #29b3fe;
        color: white;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 16px;
        margin-top: 10px;
        transition: 0.3s;
        cursor: pointer;
    }
    .submit-btn:hover {
        background: #1a94d6;
        transform: translateY(-2px);
    }
    .ack-container {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-top: 5px;
        cursor: pointer;
    }
    .ack-container input {
        margin-top: 4px;
    }
    .ack-text {
        font-size: 12px;
        color: #777;
        line-height: 1.4;
    }
    /* Custom CSS Block */
.swal-custom-popup {
    width: 550px !important;    /* Desktop ke liye width */
    max-width: 95% !important; /* Mobile ke liye safe margin */
    border-radius: 20px !important;
    padding: 25px !important;
}

/* Chote mobile screens (iPhone SE etc.) ke liye */
@media (max-width: 480px) {
    .swal-custom-popup {
        width: 92% !important; /* Screen ka 92% cover karega */
        padding: 15px !important;
    }
}

/* Header ko flex banayein taaki icon side mein dikhe */
.dg-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
}

/* Pseudo-element se icon create karna */
.dg-icon-toggle::before {
    font-family: "Font Awesome 5 Free"; /* FontAwesome use ho raha hai */
    font-weight: 900;
    content: "\f067"; /* Ye '+' ka code hai */
    color: #fff;
    font-size: 18px;
}

/* Jab accordion open ho (active class) */
.dg-accordion-header.active .dg-icon-toggle::before {
    content: "\f068"; /* Ye '-' ka code hai */
}