/*Main Css */

:root {
--primary: #1B6CF9;
--secondary: #333333;
--white: #fff;

--font-heading: 'Spectral', serif;
--font-accent: 'Spectral', serif;
--font-body: 'Spectral', serif;
--icon: "Font Awesome 6 Pro", serif;
}

::selection {
background: var(--primary);
color: #fff;
text-shadow: none;
}

::-webkit-scrollbar {
width: 5px;
background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: none;
}

::-webkit-scrollbar-track-piece {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
border-radius: 10px;
background-color: var(--primary);
}

/* Tabbing CSS */

[class^="box-"] {
display: none;
}

[class^="box-"].showfirst {
display: block;
}

body {
font-family: var(--font-body);
overflow-x: hidden;
font-size: 16px;
color: var(--white) !important;
font-weight: 400;
line-height: 30px;
letter-spacing: 0em;
background-color: #000000;
background-image: url(../images/star-bg2.png);
background-size: cover;
background-repeat: no-repeat;
}

body.inner-header {
padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-heading);
display: block;
color: var(--secondary);
text-transform: capitalize;
}

h1 {
font-size: 60px;
font-weight: 700;
line-height: 73px;
letter-spacing: 0em;
text-align: left;

}

h2 {
font-size: 50px;
font-weight: 700;
line-height: 61px;
letter-spacing: 0em;
}

h2 span.text-bold {
font-weight: bold;
}

h4 {
font-size: 26px;
line-height: 1.12;
}

h6 {
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

.text-primary {
color: var(--primary) !important;
}

.text-secondary {
color: var(--secondary) !important;
}

.btn {
padding: 18px 58px;
text-transform: capitalize;
font-family: var(--font-heading) !important;

}

.btn:focus,
.btn:active:focus {
box-shadow: none;
}

.btn i {
font-size: 14px;
font-weight: 600;
}

.btn-primary {
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary) !important;
}

.btn-primary-border {
background-color: transparent;
border: 1px solid var(--primary);
color: var(--primary) !important;
}

.btn-primary-border:hover,
.btn-primary-border:active,
.btn-primary-border:focus {
background-color: var(--primary);
border: 1px solid var(--primary);
color: var(--white) !important;
}

.btn-secondary {
background-color: var(--secondary);
border: 1px solid var(--secondary);
color: var(--white) !important;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
background-color: transparent;
border: 1px solid var(--secondary);
color: var(--secondary) !important;
}

.btn-dark {
background-color: var(--dark);
border: 1px solid var(--dark);
color: var(--white) !important;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
background-color: transparent;
border: 1px solid var(--dark);
color: var(--dark) !important;
}

*:hover,
*:focus,
* {
outline: none !important;
}

img {
max-width: 100%;
height: auto;
}

a,
input[type="submit"] {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
display: inline-block;
cursor: pointer;
text-decoration: none;
}

span {
display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
font-family: var(--font-body);
font-weight: 400;
}

::-webkit-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-ms-input-placeholder {
color: #a3a3a3;
font-weight: 400;
}

:-moz-placeholder {
color: #a3a3a3;
font-weight: 400;
}

::-moz-placeholder {
opacity: 1;
}

/* Padding Classes */
.pad-zero {
padding: 0px;
}

.pad-l-zero {
padding-left: 0px;
}

.pad-r-zero {
padding-right: 0px;
}

.ovr-hiddn {
overflow: hidden;
}

.overlay:after {
content: "";
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 1;
}

.overlay {
display: none;
}

.overlay.active {
display: block;
}

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}

.slick-slide {
margin: 0 15px;
}

.slick-dots {
padding: 50px 0 0;
text-align: center;
}

.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}

.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}

.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}

/*header css*/

/* header {
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
position: fixed;
background: transparent;
z-index: 1;
left: 0;
right: 0;
top: 0;
}
header.sticky{
background: white;
box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
top: 0;
} */

.main-header {
width: 100%;
padding-top: 22px;
padding-bottom: 18px;
}

/* .menuWrap {
display: flex;
align-items: center;
justify-content: center;
} */

.desktop-header .menuWrap {
display: flex;
align-items: center;
justify-content: end;
}

.logo {
display: inline-block;
}

.logo img {
display: block;
}

/* Hamburger Menu */
.menu-Bar {
width: 30px;
height: 20px;
cursor: pointer;
position: absolute;
right: 15px;
top: 0;
bottom: 0px;
margin: auto;
z-index: 22;
display: none;
}

.menu-Bar span {
display: block;
height: 4px;
width: 100%;
background: var(--primary);
position: absolute;
transition: 0.6s all;
border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
top: 0;
}

.menu-Bar span:nth-child(2) {
top: 8px;
transform-origin: left;
}

.menu-Bar span:nth-child(3) {
top: 16px;
}

.menu-Bar.open span:nth-child(1) {
transform: rotate(45deg);
top: 12px;
transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
width: 0;
opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
transform: rotate(-45deg);
top: 12px;
transform-origin: right-center;
}

/* Menu Css */
.menu {
font-size: 0px;
display: inline-block;
vertical-align: middle;
}

.menu-callnow {
color: var(--primary) !important;
background: transparent;
}

.menu-callnow i {
color: var(--dark) !important;
line-height: 2;
}

.menu>li {
display: inline-block;
vertical-align: middle;
padding: 0 0 0 30px;
}

.menu>li>a {
display: block;
font-family: var(--font-body);
font-size: 16px;
line-height: 19px;
font-weight: 500;
color: #000000;
}

.btn-header {
background: var(--primary);
color: white !important;
padding: 15px 20px;
border-radius: 8px;
font-weight: 400 !important;
}

.btn-header:hover {
transform: scale(1.03);
}

.menu>li :hover>a,
.menu>li.active>a {
color: var(--white);
}

@keyframes scale-display {
0% {
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}

100% {
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}
}

@keyframes scale-display--reversed {
0% {
display: inline-flex;
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
}

99% {
display: inline-flex;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}

100% {
display: none;
opacity: 0;
transform: scale(0);
-webkit-transform: scale(0);
}
}

@keyframes btotreverse {
0% {
top: 75px;
opacity: 1;
}

100% {
top: 115px;
opacity: 0;
}
}

@keyframes btot {
0% {
top: 115px;
opacity: 0;
}

100% {
top: 40px;
opacity: 1;
}
}

/* Main Banner CSS */

/* Custom Slick Css */
.slick-list {
margin: 0 -15px;
}

.slick-slide {
margin: 0 15px;
}

.slick-dots {
padding: 50px 0 0;
text-align: center;
}

.slick-dots li {
margin: 0 10px 0 0px;
width: auto;
display: inline-block;
vertical-align: middle;
overflow: hidden;
padding: 0px;
border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
color: #fff;
opacity: 1;
font-size: 20px;
}

.slick-dots li button {
height: 8px;
width: 30px;
border-radius: 100px;
padding: 0px;
background: #DDDDDD;
border: none;
cursor: pointer;
font-size: 0px;
padding: 0px;
-webkit-transition: all 0.4s ease-In-out;
-moz-transition: all 0.4s ease-In-out;
-o-transition: all 0.4s ease-In-out;
transition: all 0.4s ease-In-out;
box-sizing: border-box;
}

.slick-dots li.slick-active button {
background: #B6B9FC;
width: 55px;
}

span.count {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.counter span.text-white {
font-family: var(--font-heading);
font-size: 64px;
line-height: 0.92;
letter-spacing: normal;
text-align: center;
color: var(--white);
font-weight: 500;
}

.form-select,
.form-select:focus {
background: transparent;
border: 1px solid #626262;
border-radius: 24px;
padding: 8px 34px 8px 29px;
color: #ddd;
font-size: 13px;
margin-bottom: 18px;
color: var(--bg-light);
box-shadow: none;
}

.slick-center button.slick-prev.slick-arrow {
position: absolute;
top: 96%;
left: 50%;
font-size: 0px;
width: 30px;
height: 30px;
border: none;
background-color: transparent;
z-index: 0;
}

.slick-center button.slick-prev.slick-arrow::before {
content: "\f177";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow {
position: absolute;
top: 92%;
right: 4%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 2;
}

.slick-center button.slick-next.slick-arrow {
position: absolute;
top: 96%;
right: 46%;
border: none;
background-color: transparent;
font-size: 0px;
width: 30px;
height: 30px;
z-index: 0;
}

.slick-center button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

.index-slider button.slick-next.slick-arrow::before {
content: "\f178";
font-size: 25px;
font-weight: 100;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
}

/* .slider-for img{
width: 100%;
object-fit: cover;
object-position: center;
height: 454px;
margin-bottom: 16px;
}

.slider-nav img{
height: 174px;
width: 100%;
object-fit: cover;
object-position: center;
} */

.slick-center img {
width: 100%;
height: 500px;
}

.slick-center .slick-list.draggable {
padding: 0 24% 0 !important;
}

.slick-center .slick-slide {
margin: 0 70px;
}

.slick-center .slick-current img {
position: relative;
top: -41px;
}

.sliderDiv {
background-size: cover;
height: 1200px;
width: 100%;
background-repeat: no-repeat;
}

.socail-icons {
display: flex;
}

ul.socail-icons li i {
color: #fff;
font-size: 18px;
font-weight: 300;

}

ul.socail-icons li {
margin-right: 10px;
}

/* inner pages */

.inner-banner {
display: flex;
justify-content: center;
align-items: center;
padding-top: 200px;
padding-bottom: 193px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

.inner-banner .content h1 {}

/* inner pages */

.footer-border {
height: 1px;
margin: 61.5px 83px 29px 177px;
background-color: rgba(255, 255, 255, 0.1);
margin-top: 60px;
}

ul.footer-social-icons {
display: flex;
margin-top: 20px;
}

ul.footer-social li a {
font-size: 16px;
line-height: 1.5;
text-align: left;
color: var(--white);
margin-bottom: 15px;
}

ul.footer-social li a i {
color: var(--primary);
margin-right: 17px !important;
}

ul.footer-social li a:hover {
color: var(--primary);
}

ul.footer-social-icons li {
margin-right: 12px;
}

ul.footer-social-icons li a {
color: var(--white);
background-color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
height: 38px;
width: 38px;
border-radius: 50%;
}

ul.footer-social-icons li a i {
font-size: 22px;
}

.menu-Bar a.logo {
font-size: 45px;
font-weight: 600;
font-stretch: normal;
font-style: normal;
line-height: 1.31;
letter-spacing: normal;
text-align: left;
color: #1dd3b0;
}

.menu>li>a:hover {
color: var(--primary);
}

ul.breadcrumb-menu {
display: block;
text-transform: uppercase;
}

ul.breadcrumb-menu li {
display: inline-block;
vertical-align: middle;
position: relative;
color: var(--primary);
font-size: 14px;
font-weight: 600;
line-height: 1.71;
letter-spacing: 0.84px;
}

ul.breadcrumb-menu li a {
color: var(--dark-light);
}

ul.breadcrumb-menu li+li {
margin-left: 0px;
}

ul#counter {
display: flex;
align-items: center;
gap: 7rem;
/* padding: 24px 36px; */
/* border-radius: 8px; */
/* box-shadow: 0 10px 33px 0 rgba(130, 130, 130, 0.2); */
/* background-color: #222; */
/* margin-top: -112px;*/
}

.counter-wrapper .counter {
display: flex;
align-items: center;
gap: 20px;
}

.counter-wrapper .counter span.count {
font-weight: 700;
font-size: 45px;
color: #000;
}

ul#counter li .counter>div {
font-weight: 600;
line-height: 1;
font-size: 38px;
color: #fff;
/* padding-bottom: 10px; */
flex-shrink: 0;
}

ul#counter li {
background-repeat: no-repeat;
background-position: center;
width: 100%;
text-align: center;
line-height: 28px;
display: flex;
align-items: center;
justify-content: center;
}

ul#counter li .counter span.text {
font-family: var(--font-body);
font-size: 14px;
line-height: 2;
letter-spacing: normal;
text-align: left;
color: var(--white);
font-weight: normal;
}

ul#counter li:nth-child(1) .counter>div {
color: #ec4e52;
}

ul#counter li:nth-child(2) .counter>div {
color: #ebd142;
}

ul#counter li:nth-child(3) .counter>div {
color: #62a488;
}

.counter span.text-dark {
font-weight: 600;
font-size: 30px;
}

/* ------- */

.index-slider-news button.slick-prev.slick-arrow {
position: absolute;
top: 23%;
left: -68px;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
z-index: 2;
line-height: 0;
border-radius: 50%;
}

.index-slider-news button.slick-prev.slick-arrow::before {
content: "\f104";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.index-slider-news button.slick-next.slick-arrow {
position: absolute;
top: 23%;
right: -70px;
border: none;
background-color: transparent;
font-size: 0px;
width: 40px;
height: 40px;
border: 2px solid var(--primary);
background-color: transparent;
background-color: transparent;
line-height: 0;
border-radius: 50%;
z-index: 2;
}

.index-slider-news button.slick-next.slick-arrow::before {
content: "\f105";
font-size: 24px;
font-weight: 500;
color: var(--primary);
font-family: "Font Awesome 5 Pro";
display: flex;
align-items: center;
justify-content: center;
}

.form-control {
border: 1px solid #D2D2D2;
margin-bottom: 20px;
border-radius: 0;
height: 35px;
}

/* Accordian */

.accordion-list {
position: relative;
}

.accordion-list li {
padding: 0px 0px 22px 2px;
cursor: pointer;
width: 100%;
margin: 0 auto;
border-bottom: 0;
background: white;
box-shadow: none;
border-radius: 0px;
margin-bottom: 0rem;
}

ul.accordion-list li span {
display: flex;
position: relative;
}

.accordion-list li h3 {
color: var(--secondary);
display: flex;
align-items: center;
font-size: 16px;
font-weight: 700;
line-height: 30px;
margin-right: 14px;
}

.accordion-list li.active h3 {
color: var(--primary);
font-size: 20px;

}

ul.accordion-list li h3:after {
content: "\f078";
font-family: "Font Awesome 5 Pro";
position: absolute;
right: 0;
right: 0;
color: var(--secondary);
transition: all 0.3s ease-in-out;
font-size: 14px;
font-weight: 900;
top: 0;
}

.accordion-list li.active h4::after {
color: #9CA3AF;
content: "\f077";
}

ul.accordion-list li.active h3:after {
content: "\f077";
color: var(--primary);
}

.answer p {
margin-top: 16px;
color: #555555;
font-size: 16px;
font-weight: 400;
line-height: 30px;
}

/* Accordian */

/* Subscription */

.subscribe {
border: solid 1px #c9cbd6;
height: 60px;
margin-top: 18px;
border-radius: 5px;
position: relative;
overflow: hidden;
}

.subscribe button.btn-subscribe {
text-transform: uppercase;
display: inline-block;
height: 58px;
border-radius: 0;
border: none;
background: var(--primary);
position: absolute;
right: 0;
top: 0;
bottom: 0;
padding: 0 35px;
font-size: 13px;
font-weight: 600;
line-height: 1.23;
text-align: center;
color: var(--white);
}

.subscribe input.form-control {
border: none;
/* width: 100%; */
padding: 8px 13px;
height: 100%;
margin: 0;
display: inline-block;
color: var(--secondary);
background-color: transparent;
padding-right: 9.5rem;
}

/* Subscription */

.sec-pad {
padding-top: 100px;
padding-bottom: 100px;
}

/* topbar */

.top-bar {
padding: 15px 0;
background: var(--primary);
}

.top-social-icons {
display: flex;
justify-content: end;
gap: 20px;
}

.top-contact-info {
display: flex;
gap: 22px;
}

.top-contact-info li {
display: flex;
gap: 10px;
align-items: baseline;
}

.top-contact-info li a {
color: var(--white);
}

.top-social-icons li a i {
color: var(--white);
}

/* topbar */

/* contact page */

.contactIconBg li {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.contactIconBg .icon {
width: 50px;
height: 50px;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--white);
background-color: var(--primary);
}

/* contact page */

.related-slider span.arr-left {
top: 35%;
position: absolute;
left: -2%;
font-size: 26px;
color: var(--secondary);
cursor: pointer;
}

.related-slider span.arr-right {
top: 35%;
position: absolute;
right: -2%;
font-size: 26px;
color: var(--secondary);
cursor: pointer;
}

footer {
background-color: #222222;
}

footer .border-top {
border-top: 1px solid #808080 !important;
}

.f-logo {
font-size: 30px;
text-align: left;
color: var(--white);
font-family: var(--font-heading);
line-height: normal;
}

.f-logo:hover {
color: var(--white);
}

.f-logo-content {
margin-top: 7px;
font-size: 16px;
font-weight: 400;
line-height: 33px;
letter-spacing: 0.5px;
color: var(--white);
}

.f-menu {
margin-top: 30px;
}

.f-menu .f-icon-box {
display: flex;
align-items: baseline;
gap: 20px;
margin-bottom: 10px;
}

.f-menu .f-icon-box a,
.f-menu .f-icon-box p {
color: var(--white);
}

.f-menu .f-icon-box i {
color: var(--white);
}

ul.f-menu li a {
color: var(--white);
font-size: 14px;
font-weight: 400;
line-height: 19px;
letter-spacing: 0.5px;
margin-bottom: 14px;
}

ul.f-menu li a:hover {
color: var(--primary);
}

.footer-content {
padding-top: 35px;
padding-bottom: 70px;
}

footer h6 {
font-family: var(--font-heading);
color: var(--white);
position: relative;
font-size: 22px;
font-weight: 700;
line-height: 24px;
}

.copyright p {
font-family: var(--font-body);
font-size: 16px;
line-height: 28px;
letter-spacing: normal;
font-weight: 400;
}

.mainBanner {
height: 800px;
width: 100%;
display: flex;
align-items: center;
background-size: cover !important;
background-repeat: no-repeat !important;
background-position: center !important;
position: relative;
z-index: 1;
}

/* =========================
LEFT SIDE NAVIGATION
========================= */

.main-header {
position: fixed;
left: 55px;
top: 50%;
transform: translateY(-50%);
width: 165px;
/* height: 790px; */
z-index: 9999;
border: 1px solid #0a2634;
border-radius: 25px;
overflow: hidden;

}

.main-header::before {
content: "";
position: absolute;
inset: 0;
background-image: url(../images/header-bg.png);
pointer-events: none;
    z-index: -1;
}

.main-header .row {
justify-content: center;
}

a.logo {
font-size: 72px;
color: var(--white);
font-family: var(--font-heading);
display: block;
/* text-align: center; */
font-weight: bold;
margin-top: 70px;
line-height: 1;
position: relative;
padding-left: 20rem;
}

a.logo::after {
position: absolute;
content: '';
border-bottom: 1px solid hsl(198deg 93% 60% / 30%);
width: 41%;
left: 20rem;
right: 0;
bottom: -20px;
z-index: 9;
}

.menuWrap {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.menu {
width: 100%;
height: 100%;
margin: 0;
padding: 25px 0;
list-style: none;

display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
position: relative;
z-index: 2;
}

.menu li {
margin: 0;
padding: 0;
position: relative;
}

.menu li a {

width: 125px;

height: 125px;

border-radius: 50%;

display: flex;

align-items: center;

justify-content: center;

text-align: center;

text-decoration: none;

color: #fff;

/* border: 2px solid rgba(120, 220, 255, 0.55);

background:
radial-gradient(
circle at 35% 30%,
rgba(130, 220, 255, 0.8),
rgba(37, 133, 177, 0.7) 45%,
rgba(7, 54, 76, 0.95) 100%
);

box-shadow:
0 0 18px rgba(45, 174, 226, 0.3),
inset 0 0 20px rgba(150, 230, 255, 0.25); */

transition: all 0.3s ease;

position: relative;
}

.menu li a::after {
position: absolute;
content: '';
left: 0;
top: 0;
margin: auto;
right: 0;
bottom: 0;
height: 100%;
width: 100%;
background-image: url(../images/menu-bg.png);
z-index: -1;
background-size: contain;
}

.menu li a span {
max-width: 80px;
display: block;
width: 100%;
font-size: 13px;
text-transform: uppercase;
line-height: 1.2;
margin-top: 7px;
text-shadow: 1px 1px #000;
}

.menu li a:hover {
color: #fff;
box-shadow: 0px 1px 5px #0000003b;
}

/* Contact button should look like other menu circles */
.menu li a.btn-primary {
border-radius: 50%;
border: 2px solid rgba(120, 220, 255, 0.55);
background:
radial-gradient(circle at 35% 30%,
rgba(130, 220, 255, 0.8),
rgba(37, 133, 177, 0.7) 45%,
rgba(7, 54, 76, 0.95) 100%);
box-shadow:
0 0 18px rgba(45, 174, 226, 0.3),
inset 0 0 20px rgba(150, 230, 255, 0.25);
}

/* Mobile menu icon */
.menu-Bar {
display: none;
}

/* about section */
section.about .content p {
font-size: 18px;
color: #E2E8F0;
padding-bottom: 20px;
max-width: 600px;
}

section.about .content p b {
font-size: 20px;
color: var(--white);
font-weight: 800;
}

section.about .abt-img {
margin-right: 3rem;
box-shadow: 0px 12px 32px 0px #38BDF81A;
}

section.about .abt-img img {
display: block;
}

section.about .contentBottom {
margin-top: 2.5rem;
}

section.about .contentBottom p span {
color: #38BDF8;
}

/* about section */

/* =========================
FOOTER
========================= */

.site-footer {
background: #000;
padding: 35px 0 25px;
}

.order-bar {
min-height: 60px;
border: 1px solid #0b3142;
border-radius: 6px;

display: flex;
align-items: center;
justify-content: center;

background:
linear-gradient(90deg,
#02070a 0%,
#07384d 50%,
#02070a 100%);

box-shadow: inset 0 0 25px rgba(0, 125, 170, 0.15);
}

.order-bar a {
color: #fff;
text-decoration: none;
letter-spacing: 0.3px;
}

.order-bar a:hover {
color: #b8eaff;
}

.copyright {
text-align: center;
margin-top: 20px;
}

.copyright p {
margin: 0;
color: #78818b;
}

/* biography section */

section.biography .content .top {
margin-bottom: 1rem;
}

section.biography .content .top .p1 {
color: #38BDF8;
font-size: 20px;
padding-bottom: 5px;
text-transform: uppercase;
}

section.biography .content .top span {
color: #94A3B8;
font-size: 16px;
font-style: italic;
}

section.biography .content .top h3 {
font-size: 36px;
color: #fff;
font-weight: bold;
margin-block: 28px 22px;
}

section.biography .content p {
font-size: 18px;
padding-bottom: 18px;
}

section.biography .content p i {
font-size: 20px;
font-style: italic;
padding-inline: 22px;
display: block;
}

section.biography .abt-img {
padding-right: 3rem;
margin-bottom: 2rem;
}

section.biography .content h3 {
font-size: 24px;
color: #fff;
font-weight: bold;
}

section.biography hr {
margin-bottom: 3rem;
background: #38BDF8;
}

section.biography .contentBottom p {
padding-top: 22px;
}

/* biography section */

/* =========================
AUDIO SECTION
========================= */

.audio {
position: relative;
background: #000;
}

.audio .row {
position: relative;
}

/* Main audiobook card */
section.audio .wrapTop {
background: #0F172A;
border: 1px solid #38BDF8;
border-radius: 20px;
padding: 50px 10px;
}

.audio .abt-img {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.audio .abt-img img {
width: 265px !important;
height: 265px;
object-fit: cover;
border-radius: 50%;
border: 1px solid #147da9;
box-shadow:
0 0 25px rgba(0, 150, 210, 0.18),
inset 0 0 25px rgba(0, 150, 210, 0.2);
}

/* Content */
.audio .content {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}

.audio-label {
display: inline-flex;
align-items: center;
justify-content: center;
width: fit-content;
padding: 3px 12px;
color: #38BDF8;
border: 1px solid #1ca9df;
border-radius: 20px;
margin-bottom: 20px;
background: hsl(199deg 89% 48% / 12%);
font-weight: bold;
}

.audio .content h2 {
margin: 0 0 10px;
color: #fff;
font-size: 32px;
}

.audio .content p {
color: #d0d5df;
margin: 0 0 20px;
line-height: 1.6;
font-size: 18px;
}

.audio-meta {
display: flex;
align-items: center;
gap: 25px;
color: #8793a6;
}

.audio-meta strong {
color: #d7dce4;
}

/* =========================
CHAPTERS
========================= */

.audio-heading {
margin-top: 35px;
margin-bottom: 30px;
}

.audio-heading h3 {
color: #fff;
margin: 0;
font-size: 24px;
margin-top: 3rem;
}

.listenWrap {
min-height: 60px;
margin-bottom: 10px;
padding: 16px 20px;
display: flex;
align-items: center;
background: #080f1e;
border: 1px solid #142f48;
border-radius: 10px;
transition: all 0.3s ease;
}

.listenWrap:hover {
border-color: #1a79a5;
background: #0a1426;
}

/* Play button */
.play-btn {
width: 33px;
height: 33px;
flex: 0 0 33px;

display: flex;
align-items: center;
justify-content: center;

border: 1px solid #16aeea;
border-radius: 50%;

color: #16b8f5;
text-decoration: none;
}

.play-btn span {
margin-left: 2px;
line-height: 10px;
font-size: 14px;
margin-bottom: -1px;
}

/* Chapter number */
.chapter-no {
margin-left: 20px;
margin-right: 20px;
color: #38BDF8;
}

/* Chapter title */
.listenWrap h4 {
margin: 0;
color: #fff;
font-size: 18px;
line-height: 1;
}

/* Duration */
.duration {
margin-left: auto;
color: #8c99ad;
}

/* =========================
CONTACT SECTION
========================= */

.contact {
background: #000;
}

.contact .row {
row-gap: 30px;
}

/* Contact Content */

.contact-content {
padding: 5px 0;
}

.contact-content h2 {
color: #38BDF8;
margin: 0 0 25px;
font-size: 32px;
}

.contact-content p {
color: #d2d6df;
line-height: 1.65;
max-width: 520px;
margin-bottom: 25px;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-item {
display: flex;
align-items: center;
gap: 12px;
}

.contact-item a {
color: #e1e3e8;
text-decoration: none;
}

.contact-item a:hover {
color: #27b9f4;
}

.contact-icon {
width: 18px;
color: #19b9f4;
display: inline-flex;
align-items: center;
justify-content: center;
}

/* =========================
CONTACT FORM
========================= */

.contact-form {
background: #0F172A;
border: 1px solid #153b59;
border-radius: 20px;
padding: 30px;
}

.contact-form h3 {
color: #fff;
margin: 0 0 15px;
font-size: 22px;
}

.contact-form .form-group {
margin-bottom: 20px;
}

.contact-form label {
display: block;
color: #91a0b5;
margin-bottom: 0px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
display: block;

background: #020719;
border: 1px solid #020719;
border-radius: 6px;

color: #fff;
outline: none;

padding: 12px 10px;
}

.contact-form input {
height: 45px;
}

.contact-form textarea {
resize: none;
min-height: 88px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: #8b95a8;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: #159dd3;
}

.contact-form .btn-primary {
width: 100%;
height: 52px;
border: 0;
border-radius: 6px;
background: #38b7ed;
color: #00101a !important;
margin-top: -2px;
font-weight: 600;
font-size: 18px;
line-height: 1;
}

.contact-form .btn-primary:hover {
background: #1ba8df;
}


/* =========================
   VIEW BOOK SECTION
========================= */

.view-book {
    background: #000;
}

/* =========================
   TOP CONTENT
========================= */

.view-book .wrapTop {
    margin-bottom: 55px;
}

.view-book .wrapTop .row {
    align-items: center;
}

.view-book .abt-img {
    padding-right: 15px;
}

.view-book .abt-img img {
    width: 100%;
    display: block;
    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(0, 105, 150, 0.25),
        0 0 25px rgba(0, 140, 200, 0.12);
}

.view-book .content {
    padding-left: 15px;
}

.view-book .content h2 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 32px;
}

.view-book .author {
    color: #fff;
    margin-bottom: 25px;
}

.view-book .author {
    color: #18b8f3;
}

.view-book .content p {
    color: #d2d6df;
    line-height: 1.65;
    margin-bottom: 22px;
}


/* =========================
   BOOK INFORMATION
========================= */

.view-book .book-info {
    background: #0B0F19;
    border: 1px solid #38BDF820;
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.view-book .info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 0;
}

.view-book .info-row strong {
    color: #91a0b5;
}

.view-book .info-row span {
    color: #d7dbe3;
    text-align: right;
}


/* =========================
   ORDER BUTTON
========================= */

.view-book .order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 285px;
    min-height: 52px;

    padding: 10px 25px;

    color: #fff;
    text-decoration: none;

    background: #19b8ed;
    border-radius: 35px;

    box-shadow:
        0 8px 20px rgba(0, 180, 240, 0.3),
        0 0 18px rgba(0, 180, 240, 0.18);

    transition: all 0.3s ease;
}

.view-book .order-btn:hover {
    color: #fff;
    background: #0da5d8;
    transform: translateY(-2px);
}


/* =========================
   INTERIOR PREVIEWS
========================= */

.view-book .wrapBottom {
    margin-top: 15px;
}

.view-book .preview-heading {
    margin-bottom: 25px;
}

.view-book .preview-heading h3 {
    color: #fff;
    margin: 0;
    font-size: 22px;
}

.view-book .preview-item {
    text-align: center;
}

.view-book .preview-item img {
    width: 100%;
    display: block;

    border-radius: 10px;
    border: 1px solid #173850;

    box-shadow:
        0 10px 25px rgba(0, 100, 145, 0.12);
}

.view-book .preview-item h4 {
    color: #22D3EE;
    margin: 12px 0 0;
    font-size: 18px;
}


 
/* =========================
   CHAPTERS SECTION
========================= */

.chapters {
    background: #000;
}

.chapters-head {
    margin-bottom: 30px;
}

.chapters-head h2 {
    color: #20b8f2;
    margin: 0 0 12px;
    font-size: 32px;
}

.chapters-head p {
    color: #d3d7df;
    margin: 0;
}


/* =========================
   CHAPTER BOX
========================= */

.chapter-box {
    background: #070f1d;
    border: 1px solid #12344c;
    border-radius: 16px;

    padding: 22px;
    margin-bottom: 24px;

    box-shadow:
        0 12px 25px rgba(0, 80, 120, 0.08);
}

.chapter-box .row {
    margin: 0 -10px;
}

.chapter-box .row > div {
    padding-left: 10px;
    padding-right: 10px;
}


/* =========================
   CHAPTER IMAGE
========================= */

.chapter-img {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #143b55;
}

.chapter-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.chapter-box:hover .chapter-img img {
    transform: scale(1.03);
}


/* =========================
   CHAPTER CONTENT
========================= */

.chapter-content {
    padding: 10px 15px;
}

.chapter-content h3 {
    color: #19b9f3;
    margin: 0 0 20px;
}

.chapter-content p {
    color: #d3d7df;
    line-height: 1.7;
    margin: 0;
}


 /* =========================
   CHAPTERS SECTION
========================= */

.chapters {
    background: #000;
}

.chapters-head {
    margin-bottom: 30px;
}

.chapters-head h2 {
    color: #20b8f2;
    margin: 0 0 12px;
}

.chapters-head p {
    color: #d3d7df;
    margin: 0;
}


/* =========================
   CHAPTER BOX
========================= */

.chapter-box {
    background: #070E1A;
    border: 1px solid #0EA5E910;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow:
        0 12px 25px rgba(0, 80, 120, 0.08);
}

.chapter-box .row {
    margin: 0 -10px;
}

.chapter-box .row > div {
    padding-left: 10px;
    padding-right: 10px;
}


/* =========================
   CHAPTER IMAGE
========================= */

.chapter-img {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #143b55;
}

.chapter-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.chapter-box:hover .chapter-img img {
    transform: scale(1.03);
}


/* =========================
   CHAPTER CONTENT
========================= */

.chapter-content {
    padding: 10px 15px;
}

.chapter-content h3 {
    color: #19b9f3;
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: bold;
}

.chapter-content p {
    color: #d3d7df;
    line-height: 1.7;
    margin: 0;
    font-size: 18px;
}


 .custom-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.custom-video video {
    display: block;
    width: 100%;
    height: 550px;
    object-fit: contain;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 0;
    border-radius: 50%;
    background: #0F172A;
    color: #ffffff;
    font-size: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn.hide {
    opacity: 0;
    visibility: hidden;
}

.ppt-btn {
    padding: 14px 30px;
    border: 0;
    background: #111;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.ppt-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ppt-modal.active {
    display: flex;
}

.ppt-content {
    position: relative;
    width: 90%;
    height: 90%;
    background: #fff;
}

.ppt-content iframe {
    width: 100%;
    height: 100%;
}

.close-ppt {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 999999;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #000;

    font-size: 30px;
    line-height: 38px;
    text-align: center;

    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close-ppt:hover {
    background: #000;
    color: #fff;
}


.ppt-box {
    position: relative;
    width: 98%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
 
.ppt-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn-sm {
    padding: 10px 40px;
}
/* WordPress theme additions */
.eoe-hp {
position: absolute !important;
left: -9999px !important;
width: 1px;
height: 1px;
overflow: hidden;
}

.eoe-form-notice {
padding: 12px 16px;
margin-bottom: 20px;
border-radius: 6px;
font-size: 15px;
}

.eoe-form-notice.success {
background: rgba(27, 108, 249, 0.12);
border: 1px solid var(--primary);
color: var(--white);
}

.eoe-form-notice.error {
background: rgba(220, 53, 69, 0.12);
border: 1px solid #dc3545;
color: #ffb3ba;
}

.basic-page .content h2 {
margin-bottom: 20px;
}

.basic-page .entry {
margin-bottom: 35px;
}

/* WordPress core alignment / caption classes */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; margin: 8px 0; }
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
word-wrap: normal !important;
}
