@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Space+Grotesk:wght@500;600;700;800&display=swap');

/* --- BRAND VARIABLES --- */
:root {
    /* Colors */
    --ap-blue: #00AEEF;
    --deep-navy: #0A1A3A;
    --white: #FFFFFF;
    --possi-orange: #FF8A00;
    --golden-yellow: #FFC233;
    
    /* Backgrounds */
    --bg-light: #F4F8FB;
    --bg-card: #EEF7FF;
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-number: 'Space Grotesk', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, 
.trialHeadding, .loginTT, .prd-tt, .colgTitle, 
.clg-tt, .elementorBlogTT h6, .hadding-title, 
.h3-title, .order-item h5, .about-sec h1, 
.form-tt h4, .title h2, .hot-srv-head h4, 
.hot-srv-head h3, .accordion-title-head {
    font-family: var(--font-heading);
}

.rsmm { width: 100%; }
.rsmm > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.rsmm a {
    display: block;
    color: var(--deep-navy);
    text-decoration: none;
    padding: 10px 10px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.rsmm a:hover {
    background: transparent;
    color: var(--ap-blue);
}

.rsmm a.hover {
    background: var(--bg-light);
}

.rsmm li.has-sub {
    position: relative;
}

.rsmm li.has-sub > a > span {
    display: inline-block;
    background: url('img/caret-down.svg') center no-repeat;
    width: 10px;
    height: 16px;
    margin-left: 10px;
    vertical-align: middle;
}

.rsmm li.has-sub > ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-light);
    list-style: none;
    padding-left: 0;
    min-width: 140px;
    width: 180px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(10, 26, 58, 0.1);
}
.rsmm li.has-sub > ul li a {
    padding: 10px;
    font-family: var(--font-body);
    font-weight: 500;
}
.rsmm li.has-sub a:not(.hover):hover {
    background: #E2E8F0;
}

.rsmm-mobile-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100111111;
    width: 300px;
    height: 100%;
    background: var(--white);
    -webkit-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0);
    transition: transform .14s;
}

.rsmm-mobile-wrapper.show {
    transform: translate3d(0, 0, 0);
}

.rsmm-mobile {
    padding-top: 55px;
    overflow-y: auto;
    max-height: 100%;
}

.rsmm-mobile li.has-sub > a > span {
    display: inline-block;
    background: url('img/caret-down.svg') center no-repeat;
    width: 6px;
    height: 12px;
    margin-left: 10px;
    vertical-align: middle;
}

.rsmm-mobile__close {
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 1rem;
    top: 1rem;
    overflow: hidden;
    text-indent: 1rem;
    font-size: .75rem;
    border: none;
    background: 0 0;
    color: transparent;
    cursor: pointer;
}

.rsmm-mobile__close::after,
.rsmm-mobile__close::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: var(--deep-navy);
}

.rsmm-mobile__close::before {
    transform: rotate(45deg);
}

.rsmm-mobile__close::after {
    transform: rotate(-45deg);
}

.rsmm-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rsmm-mobile > ul > li {
    border-bottom: 1px solid var(--bg-light);
}

.rsmm-mobile a {
    padding: 10px 20px;
    display: block;
    font-size: .9rem;
    color: var(--deep-navy);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
}

.rsmm-mobile > ul > li > a:hover {
    background: var(--bg-light);
    color: var(--ap-blue);
}

.rsmm-mobile li.has-sub > ul {
    background: var(--bg-light);
}

.rsmm-mobile li.has-sub > ul > li {
    border-top: 1px solid var(--white);
}

.rsmm-mobile li.has-sub > ul > li > a {
    padding-left: 35px;
    font-family: var(--font-body);
    font-weight: 500;
}

.rsmm-mobile li.has-sub > ul > li > a:hover {
    background: #E2E8F0;
}

.rsmm-mobile li.has-sub.hover > a {
    color: var(--ap-blue);
}

.rsmm-open-button {
    position: absolute;
    top: 68px;
    left: 0;
    z-index: 1000;
    border: none;
    font-size: 1.5rem;
    color: transparent;
    background: 0 0;
    cursor: pointer;
    padding: 0;
    display: none;
}

.rsmm-open-button__icon {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-left: 15px;
}

.rsmm-open-button:hover {
    opacity: .8;
    color: var(--ap-blue);
}

.rsmm-mask {
    background: rgba(10, 26, 58, 0.7); /* Deep Navy Mask */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    transition: opacity .14s, transform 0s .14s;
    transition-timing-function: cubic-bezier(.7, 0, .3, 1);
}

.rsmm-mask.show {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.close {
    border: none;
    background-color: transparent;
    color: var(--white);
    font-size: 20px;
    line-height: 1;
}

.trialHeadding {
    text-align: center;
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin: 40px 0;
}

.refer {
  width: 150px;
  float: left;
}

.textt {
    color: var(--ap-blue);
    border-right: 2px solid var(--ap-blue);
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.navMenu {
    background-color: var(--deep-navy);
} 

/*----------*/
.loginelementor {
    background-image: url(../img/dots-shape.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 16% auto;
    padding: 70px 0 70px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(10, 26, 58, 0.9) 100%);
}

.authincation-content {
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(10, 26, 58, 0.95) 100%);
    box-shadow: 0 0 2.1875rem 0 rgba(10, 26, 58, 0.25);
    border-radius: 16px !important;
    padding: 3.125rem 3.125rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.authincation-content h5, 
.authincation-content label, 
.authincation-content p {
    color: var(--white) !important;
}

.loginTT {
    font-weight: 800;
    margin: 20px 0;
    color: var(--ap-blue);
}

.loginelementorLogo { width: 20%; }

#msform .form-control, #msform .form-select {
    box-shadow: none !important;
    height: 44px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    border-radius: 8px;
    font-family: var(--font-body);
}

#msform .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  line-height: 17px;
  color: var(--white);
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background: transparent;
  border: solid 2px var(--ap-blue);
  border-radius: 4px;
}
.styled-checkbox:hover + label:before,
.styled-checkbox:checked + label:before {
  background: var(--ap-blue);
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.2);
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: var(--white);
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.checkbox label { padding-left: 30px !important; }

.sideBtn {
    width: 50px;
    background-color: var(--possi-orange);
    transform: rotate(-90deg) translate(150px,-100%);
    transform-origin: top right;
    position: fixed;
    right: 0;
    top: 80%;
    z-index: 999;
    padding: 7px 4px 10px;
    border-radius: 8px 8px 0px 0px;
    cursor: pointer;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: -4px 0 15px rgba(255, 138, 0, 0.3);
}

/*------*/
.neetCP {
    padding: 70px 0 70px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, rgba(10, 26, 58, 0.95) 100%);
    color: var(--white);
    display: flex;
    position: relative;
}

.neetCPCard {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(10, 26, 58, 0.16);
    border-radius: 16px;
    padding: 0;
    color: var(--deep-navy);
    position: relative;
}
/*------*/
.prd-itm {
  width: 100%;
  padding: 0;
  border-bottom: solid 1px var(--border-color);
  margin-top: 10px;
  margin-bottom: 5px;
  padding-bottom: 15px;
  position: relative;
  float: left;
  border-radius: 0px;
  display: flex;
}
.prd-img {
  width: 15%;
  float: left;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
}
.prd-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-height: 100%;
  max-width: 100%;
  padding: 20px;
}
.prd-cnt {
  float: left;
  width: 80%;
  margin-right: 20px;
  height: auto;
  overflow: hidden;
}
.prd-cnt p { font-size: 14px; margin-top: 10px; margin-bottom: 0; }
.prd-cnt .prd-tt {
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
  margin-top: 5px;
  margin-bottom: 10px;
  color: var(--deep-navy);
}
.cate-ttt {
    width: 100%;
    margin-bottom: 0;
}
.cate-ttt li {
    display: block;
    font-size: 15px;
    padding: 2px 0;
    color: #475569;
}
.prd-last { width: 25%; }

.topBannerSec {
    width: 100%;
    padding: 40px 0;
    background-color: var(--deep-navy);
    background-image: url(../img/banner-overla_01.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.display-table {
    position: relative;
    padding: 8px 0;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.leftBlk { width: 60px; height: 50px; }
.imgBlk {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    line-height: 40px;
    margin-right: 10px;
}
.colgTitle a {
  color: var(--white);
  font-weight: 600;
}

/*------*/
.clg-list {
    width: 100%;
    padding: 0;
    border: solid 1px #E2E8F0;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 15px;
    position: relative;
    float: left;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    box-shadow: 0 4px 15px rgba(10, 26, 58, 0.05);
    background: var(--white);
    transition: all 0.3s ease;
}
.clg-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 26, 58, 0.1);
    border-color: var(--ap-blue);
}
.clg-img {
    width: 15%;
    float: left;
    margin-right: 10px;
    overflow: hidden;
    padding: 10px;
    position: relative;
}
.clg-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 100%;
    max-width: 100%;
}
.clg-cnt {
    float: left;
    width: 83.7%;
    margin-right: 0px;
    height: auto;
    overflow: hidden;
}
.clg-cnt .clg-tt {
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #003262; 
}
.clg-bnt {
    float: left;
    width: 20%;
    padding-bottom: 15px;
    padding-top: 50px;
    text-align: center;
}
.tbl { width: 100%; }
.tbl>tbody>tr>td, .tbl>tbody>tr>th, .tbl>tfoot>tr>td, .tbl>tfoot>tr>th, .tbl>thead>tr>td, .tbl>thead>tr>th {
  padding: 4px;
  line-height: 1.5;
  vertical-align: top;
  white-space: nowrap;
  color: var(--deep-navy);
}

/*----*/
.elementorBlog {
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
.elementorBlogImg {
  height: 180px;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}
.elementorBlogImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.elementorBlogTT {
    height: 50px;
}
.elementorBlogTT h6 {
  color: var(--deep-navy);
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}
.blog-post-card-description {
  color: #475569;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  font-size: 14px;
}
.blog-post-card-author {
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 5px;
}
.blog-post-card-date { color: #64748B; font-size: 13px; }
.blogImgs {
  height: 300px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}
.blogImgs img { width: 100%; height: 100%; object-fit: cover; }

/*--------*/
.profile-sec {
  padding: 10px 0 10px;
  background: var(--bg-light);
}
.profile-details {
    width: 100%;
    float: left;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(10, 26, 58, 0.05);
}
.profl-sec {
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    margin-top: 10px;
    background-color: var(--white);
    border-radius: 16px;
}
.side-bar {
  width: 100%;
  float: left;
  min-height: 70vh;
  padding-bottom: 0px;
  margin-top: 10px;
}
.sideBar {
  width: 100%;
  float: left;
  min-height: 70vh;
  padding-bottom: 0px;
  margin-top: 10px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(10, 26, 58, 0.05);
  overflow: hidden;
}
.sideBar li {
    border-bottom: solid 1px #E2E8F0;
}
.sideBar li a {
    display: block;
    padding: 15px 20px;
    position: relative;
    color: var(--deep-navy);
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}
.sideBar li a:hover {
    background: #F8FAFC;
    color: var(--ap-blue);
}
.sideBar li i {
    width: 20px;
    text-align: center;
    margin-right: 12px;
    color: var(--ap-blue);
}
.side-bar-title {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 24px 20px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(10, 26, 58, 0.05);
    border-bottom: 2px solid var(--ap-blue);
}
.side-bar-title .profile-pic {
    display: flex;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 50%;
    border: solid 2px var(--ap-blue);
    overflow: hidden;
}
.side-bar-title .hadding-title {
    text-align: left;
}

/*---------------*/
.dealsSec { width: 100%; padding: 30px 0; background-color: var(--white); }
.college-list { width: 100%; padding: 30px 0; background-color: var(--white); }
.side-menu { width: 100%; height: 100%; }
.side-menu h3 { margin: 10px 0; padding-bottom: 0px; font-weight: 800; font-size: 24px; color: var(--deep-navy); }
.side-itm { width: 100%; padding: 15px 10px; border-top: solid 1px #E2E8F0; }
.elementor1Text p { text-align: center; color: #475569; }

/*-----------*/
.accordion1 {
  width: 100%;
  max-height: 500px;
  overflow-x: scroll;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10, 26, 58, 0.08);
  border-top: solid 4px var(--ap-blue);
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
}
.accordion1 li { border-bottom: solid 1px #E2E8F0; }
.accordion1 a {
  display: block;
  padding: 16px 20px;
  position: relative;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-heading);
}
.accordion1 a:hover { text-decoration: none; color: var(--possi-orange); }
.accordion1 li i { width: 20px; text-align: center; margin-left: 10px; color: var(--ap-blue); }
.active { text-decoration: none; color: var(--ap-blue) !important; }
.accordion1 a:focus { text-decoration: none; color: var(--ap-blue); }
.accordion1 .link {
  cursor: pointer;
  display: flex;
  padding: 18px 20px;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  line-height: 16px;
}
.no-shadow { box-shadow: none; }
.accordion1 li:last-child .link { border-bottom: 0; }
.accordion1 li.open .link { color: var(--possi-orange); }
.accordion1 li.open i { color: var(--possi-orange); }
.accordion1 li.open i.fa-chevron-down { transform: rotate(180deg); }

.submenu { display: none; background: #F8FAFC; padding: 10px 0; margin-bottom: 10px; border-radius: 8px; }
.submenu li { border-bottom: none; }
.submenu a {
  display: block;
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  padding: 8px 20px 8px 45px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.25s ease;
}
.submenu a:hover { color: var(--ap-blue); background: #E2E8F0; }
.filtr-btn { padding: 10px 20px; white-space: nowrap; border-radius: 8px; font-weight: 600; }

/*-------*/
.faqSec { width: 100%; position: relative; text-align: left; }
.accordion-title-head { font-size: 16px; font-weight: 700; color: var(--deep-navy); margin-bottom: 0px; width: 90%; }
.active-title { background-color: var(--bg-card) !important; }
.accordion-title {
  background-color: var(--white);
  padding: 20px 25px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .3s ease;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(10, 26, 58, 0.05);
}
.accordion-title:hover { background-color: var(--bg-card); border-color: var(--ap-blue); }
.accordion-content {
  display: none;
  background-color: var(--white);
  padding: 25px;
  border-radius: 0 0 12px 12px;
  border: 1px solid #E2E8F0;
  border-top: none;
  color: #475569;
  line-height: 1.6;
}
.plus { width: 16px; height: 16px; position: relative; }
.plus::before { content: ''; display: inline-block; width: 2px; height: 100%; background-color: var(--ap-blue); transition: all 0.3s; position: absolute; left: 7px;}
.plus::after { content: ''; width: 100%; height: 2px; background-color: var(--ap-blue); display: inline-block; position: absolute; left: 0; top: 7px; }
.rotate::before { transform: rotate(90deg); }

.simple-pagination ul { margin: 30px 0; padding: 0; list-style: none; text-align: center; }
.simple-pagination li { display: inline-block; margin: 0 4px; }
.simple-pagination li a, .simple-pagination li span {
  color: var(--deep-navy);
  padding: 8px 14px;
  text-decoration: none;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  background-color: var(--white);
  font-weight: 600;
  transition: all 0.2s ease;
}
.simple-pagination li a:hover { border-color: var(--ap-blue); color: var(--ap-blue); }
.simple-pagination .current {
  color: var(--white);
  background-color: var(--ap-blue);
  border-color: var(--ap-blue);
}
.simple-pagination .prev.current, .simple-pagination .next.current { background: #E2E8F0; color: #94A3B8; border-color: #E2E8F0; }

/*----Price ----*/
.price-main { width: 100%; padding: 60px 0 80px; margin: 0 auto; }
.price-table { width: 100%; border-collapse: collapse; border: 0 none; box-shadow: 0 12px 30px rgba(10, 26, 58, 0.1); border-radius: 16px; overflow: hidden; }
.price-table tr:not(:last-child) { border-bottom: 1px solid #E2E8F0; }
.price-table tr td { border-left: 1px solid #E2E8F0; padding: 16px 20px; font-size: 15px; color: var(--deep-navy); }
.price-table tr td:first-child { border-left: 0 none; font-size: 16px; font-weight: 500; }
.price-table tr td:not(:first-child) { text-align: center; }
.price-table tr:nth-child(even) { background-color: var(--white); }
.price-table tr:hover { background-color: var(--bg-card); }
.price-table .fa-check { color: var(--white); background: var(--ap-blue); border-radius: 50%; padding: 5px; font-size: 12px; }
.price-table .fa-times { color: #CBD5E1; font-size: 14px; }

/* Highlighted column */
.price-table tr:nth-child(2n) td:nth-child(3) { background-color: rgba(0, 174, 239, 0.05); }
.price-table tr td:nth-child(3) { background-color: rgba(0, 174, 239, 0.08); padding: 12px 20px; }

.price-table tr.price-table-head td {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-table tr.price-table-head {
    background-color: var(--deep-navy);
    color: var(--white);
}
.price-table td.price {
    color: var(--possi-orange);
    padding: 24px;
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-number);
}
.price-table td.price a {
    background-color: var(--ap-blue);
    color: var(--white);
    padding: 12px 32px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    display: inline-block;
    border-radius: 64px;
    transition: all 0.3s ease;
}
.price-table td.price a:hover { background-color: var(--deep-navy); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(10, 26, 58, 0.2); }
.price-table td.price-table-popular {
    font-family: var(--font-heading);
    border-top: 4px solid var(--possi-orange);
    color: var(--possi-orange);
    text-transform: uppercase;
    font-size: 13px;
    padding: 14px 15px;
    font-weight: 800;
}
.price-table .price-blank { background-color: var(--bg-light); border: 0 none; }
.price-table svg { width: 90px; fill: var(--ap-blue); }

/*-----*/
.dataTables_wrapper { padding-top: 10px; }
.dt-buttons .dt-button {
  background: var(--ap-blue);
  border-radius: 6px;
  color: var(--white);
  margin-right: 5px;
  padding: 8px 16px;
  font-weight: 600;
  border: none;
  font-family: var(--font-heading);
  transition: background 0.3s ease;
}
.dt-buttons .dt-button:hover { background: var(--deep-navy); }
.dataTables_length select {
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 6px 12px;
  background-color: var(--white);
  font-family: var(--font-body);
}
.dataTables_filter input {
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 8px 12px;
  margin-left: 10px;
  font-family: var(--font-body);
}
.dataTables_filter input:focus, .dataTables_length select:focus {
    outline: none;
    border-color: var(--ap-blue);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  color: var(--deep-navy);
  font-weight: 600;
  margin: 0 3px;
  padding: 6px 12px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background-color: var(--ap-blue);
  border-color: var(--ap-blue);
  color: var(--white) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background-color: var(--bg-card);
  border-color: var(--ap-blue);
  color: var(--ap-blue);
}

/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] { position: absolute; left: -200vw; }
.tabset .tab-panel { display: none; }
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3) { display: block; }
.tabset > label {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #64748B;
  transition: color 0.3s ease;
}
.tabset > label:hover, .tabset > input:focus + label { color: var(--ap-blue); }
.tabset > label::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; width: 100%; height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}
.tabset > label:hover::after, .tabset > input:focus + label::after, .tabset > input:checked + label::after {
  background: var(--ap-blue);
}
.tabset > input:checked + label {
  color: var(--deep-navy);
}
.tab-panel { padding: 30px 0; border-top: 1px solid #E2E8F0; }
.tabset { margin-top: 20px; }

/*--------*/
.rank_main { width: 100%; padding: 40px 0 60px; background-color: var(--white); }
.bg-orange { color: var(--white); background-color: var(--possi-orange) !important; }

.hot-srv-hom-pre {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(10, 26, 58, 0.08);
    border: 1px solid #E2E8F0;
}
.hot-srv-hom-pre ul { padding: 0px; margin: 0; }
.hot-srv-hom-pre ul li {
    border-bottom: 1px solid #F1F5F9;
    padding: 12px 0;
    display: flex;
    font-size: 15px;
    color: #475569;
    transition: all 0.3s ease;
}
.hot-srv-hom-pre ul li:hover { padding-left: 5px; color: var(--deep-navy); }
.hot-srv-hom-pre ul li:last-child { border-bottom: 0px; }
.hot-srv-hom-pre ul li i { margin-right: 12px; margin-top: 4px; font-size: 16px; color: var(--ap-blue); }

.hot-srv-head {
    background: var(--ap-blue);
    padding: 16px 0px;
    text-align: center;
    border-radius: 12px 12px 0 0;
    position: relative;
}
.hot-srv-head h4 {
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}
.hot-srv-head h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.hot-srv-head h4 span { font-weight: 600; font-size: 16px; opacity: 0.9; }
.hot-srv-head:after {
    bottom: -16px; left: 50%;
    border: solid transparent;
    content: " ";
    height: 0; width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: var(--ap-blue);
    border-width: 8px;
    margin-left: -8px;
    z-index: 9;
}

/*-----*/
.prof-sec { width: 100%; background-color: var(--bg-light); padding: 40px 0; }
.wallet-amount { width: 100%; padding: 15px; font-family: var(--font-number); font-size: 24px; font-weight: 700; color: var(--possi-orange); }
.wallet-sec { width: 100%; padding: 0 20px 20px; min-height: 80vh; }
.h3-title { font-family: var(--font-heading); color: var(--deep-navy); font-weight: 800; margin-bottom: 20px; }
.transactions-item { border-bottom: solid 1px #E2E8F0; padding: 15px 10px; font-size: 15px; }
.green { color: #10B981; font-weight: 600; }
.red { color: #EF4444; font-weight: 600; }

.order-item { border-bottom: solid 1px #E2E8F0; padding: 15px; border-radius: 8px; background: #F8FAFC; margin-bottom: 10px; }
.order-item h5 { font-family: var(--font-heading); font-weight: 700; color: var(--deep-navy); }
.order-pic { border-radius: 8px; border: 1px solid #E2E8F0; }

.about-sec { width: 100%; padding: 60px 0; }
.about-sec p { line-height: 1.8; color: #475569; font-size: 16px; }
.about-sec h1 { font-size: 42px; color: var(--deep-navy); font-weight: 800; margin-bottom: 24px; }
.contactPage { padding: 60px 0; }
.contactPage i { color: var(--ap-blue); font-size: 24px; }

/*-----------*/
.form-main-sec { padding: 60px 0; background-color: var(--bg-light); }
.form-main {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(10, 26, 58, 0.08);
    border-radius: 16px;
    border: none;
    overflow: hidden;
}
.form-tt { padding: 30px 20px 10px; background: var(--deep-navy); color: var(--white); }
.form-tt h4 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.form-tt p { color: rgba(255,255,255,0.8); }
.form-cnt { padding: 25px; }
.form_area { padding: 30px; }
.form_area label { font-weight: 600; color: var(--deep-navy); margin-bottom: 8px; }
.form_area .form-control { border-radius: 8px; border: 1px solid #CBD5E1; padding: 12px 15px; }
.form_area .form-control:focus { border-color: var(--ap-blue); box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15); }

/*---------------*/
.pkgRow {
    display: flex;
    align-items: center;
    background-color: var(--deep-navy);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(10, 26, 58, 0.2);
}
.pkgItem { width: 100%; padding: 15px; }
.popular .popularspan, .popular .trending {
    background-color: var(--possi-orange);
    color: var(--white);
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.3);
}

.card {
  overflow: hidden;
  padding: 30px 25px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }
.pkgItem .card { background: var(--white); }
.title h2 { color: var(--deep-navy); font-size: 22px; font-weight: 800; margin-bottom: 15px; }
.price h4 { color: var(--possi-orange); font-size: 32px; font-family: var(--font-number); font-weight: 800; }
.option ul li { color: #475569; font-size: 15px; font-weight: 500; border-bottom: 1px dashed #E2E8F0; padding-bottom: 10px; }
.option ul li:last-child { border: none; }
.card .BuyNow {
  background: var(--possi-orange);
  color: var(--white);
  height: 48px;
  line-height: 48px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}
.card .BuyNow:hover { background: #E67A00; box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3); transform: translateY(-2px); }

.popup-footer {
    background: linear-gradient(to right, var(--deep-navy), var(--ap-blue));
    height: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
}
.get-call-btn {
    background: var(--golden-yellow);
    color: var(--deep-navy);
    padding: 6px 16px;
    border-radius: 20px;
    transition: transform 0.2s;
}
.get-call-btn:hover { transform: scale(1.05); }

.direct {
    background-color: var(--ap-blue);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.2);
}
.direct h5 { font-family: var(--font-heading); font-weight: 800; color: var(--white); }
.direct ul li, .direct ul li a { color: var(--white); font-family: var(--font-number); font-weight: 700; }

@media screen and (max-width: 789px){
    .accordion-title-head{font-size: 15px;}
    .accordion-title{padding: 15px;}
    .clg-list{flex-wrap: wrap;align-items: center;}
    .clg-img{display:none;}
    .clg-cnt{width:100%;}
    .clg-cnt .clg-tt{font-size: 16px;margin-top: 0;line-height: 22px;}
    .tbl{margin-top:10px;font-size: 12px;}
    
    .pkgRow{flex-direction: column; padding: 20px;}
    .card{padding: 20px;}
    .pkgItem {width: 100%;padding: 10px;margin-bottom:20px;}
    .title h2{font-size: 20px;}
    .price h4{font-size: 28px;}
    .card .BuyNow{width: 100%;}
    .popup-footer{height: auto;padding: 10px; flex-direction: column; gap: 8px;} 
    .neetCP{padding: 30px 15px;}
    .authincation-content{padding: 2rem 1.5rem;}
}
/* ==========================================
   RESTORED FLOATING SHARE BUTTONS (LEFT)
   ========================================== */
.share-buttons { display: flex; position: fixed; z-index: 99999; bottom: 0; left: 0; }
.share-buttons .share-button-main {
  background-color: var(--deep-navy);
  bottom: 0; cursor: pointer; left: 0; margin: 15px; position: fixed; z-index: 9999999;
  width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: 0.2s ease all; transform: rotate(-90deg); box-shadow: 0 4px 15px rgba(10, 26, 58, 0.2);
}
.share-buttons .share-button-main i { color: var(--white); font-size: 20px; transition-duration: 1s; transform: rotate(-180deg); }
.share-buttons .social { bottom: 0; left: 0; margin: 15px; position: fixed; transition: left 0.3s ease; z-index: 1; }
.share-buttons.open .facebook { left: 65px; }
.share-buttons.open .twitter { left: 120px; }
.share-buttons.open .whatsapp { left: 175px; }
.share-buttons.open .email { left: 230px; }

.ctn-icon-social-media {
  border-radius: 50%; box-sizing: content-box; font-size: 1.2em; height: 40px; width: 40px; line-height: 40px;
  overflow: hidden; position: relative; z-index: 2; text-align: center; color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.ctn-icon-social-media a { color: var(--white); display: block; width: 100%; height: 100%; }
.ctn-icon-social-media:hover { transform: translateY(-3px); }
.bgcolor-facebook { background-color: #3b5998; }
.bgcolor-twitter { background-color: #55acee; }
.bgcolor-whatsapp { background-color: #25d366; }
.bgcolor-email { background-color: #dd4b39; }
.rotate { transition: 0.3s ease all; transform: rotate(182deg); }

/* ==========================================
   RESTORED WHATSAPP/TELEGRAM FLOAT (RIGHT)
   ========================================== */
.telegram-float, .tetegram a, .tetegram { opacity: 1 !important; }
.tetegram {
    position: fixed !important; right: 20px !important; bottom: 20px !important; z-index: 9999 !important;
    background: var(--ap-blue) !important; border-radius: 50% !important; width: 55px !important; height: 55px !important; 
    display: flex !important; align-items: center !important; justify-content: center !important;
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.45) !important; animation: tgBounce 3s ease-in-out infinite !important;
}
@keyframes tgBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.tetegram a { color: var(--white) !important; font-size: 28px !important; display: flex !important; align-items: center !important; justify-content: center !important; text-decoration: none;}
.tetegram a i { background: transparent !important; margin: 0 !important; }
.tetegram:hover { animation-play-state: paused !important; transform: scale(1.1) !important; box-shadow: 0 8px 24px rgba(0, 174, 239, 0.6) !important; }

/* ==========================================
   FIXED FAQ PLUS SIGN ALIGNMENT
   ========================================== */
.plus { width: 16px; height: 16px; position: relative; }
.plus::before { content: ''; display: inline-block; width: 2px; height: 100%; background-color: var(--ap-blue); transition: all 0.4s; position: absolute; left: 7px; top: 0; }
.plus::after { content: ''; width: 100%; height: 2px; background-color: var(--ap-blue); display: inline-block; position: absolute; left: 0; top: 7px; }
.rotate::before { transform: rotate(90deg); }