/*=================================
||			Index 
==================================*/
/*
|	1. font import [60]
|	2. Global [66]

		2.1 Button [89]
		2.2 Navbar [153]
		2.3 Header [250]
		2.4 Form [310]
		2.5 Pagination [350]
		2.6 Typography [384]
		2.7 Common properties [420]
		2.8 Footer [508]
		2.9 Section Spacing [646]

|	3. Home page [656]

		3.1 Header [660]
		3.2 Intro [711]
		3.3 Feature [748]
		3.4 Portfolio [786]
		3.5 Twitter feed [848]
		3.6 Pricing [922]
		3.8 Testimonial [991]

|	4. About Page [1045]
		
		4.1 Our Story [1049]
		4.2 Our Designation [1059]
		4.3 Skill [1107]
		4.4 Sponsor [1138]

|	5. Service Page [1152]

|	6. Portfolio Page [786]

|	7. Gallery Page [1187]

|	8. 404 Page [1277]

|	9. Coming Soon Page [1342]

|	10. Blog
	
		10.1 Multiple Blog [1423]
		10.2 Single Blog [1471]
		10.3 Sidebar [1633]

|	11. Contact [1798]

		11.1 Google map [1806]
		11.2 Quick Contact [1817]
		11.3 Contact Form [1857]

*/

/*================================= 1. font import  ===========================================*/

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);



/*==================================  2. Global  ========================================*/

body {
	background-color: black;
	font-family: 'Open Sans', sans-serif;;
	font-weight: 400;
	line-height: 1.45;
	color: #ad8107;
}

*:hover {
	-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;
}

html {
	font-size: 0.813em;
}


/* =-=--=-=-=-=-=-==-=-=-=-  2.1 Button   =-=-=-=-==-=-==-====-==-=- */

.btn {
	border: 1px solid #ad8107;
	background-color: #ad8107;
	border-radius: 0px;
	padding: 10px 25px;
	text-transform: uppercase;
}

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

.btn-slategray {
	background-color: #313131;
	color: #fff;
}

.btn-white {
	background-color: #ad8107;
	color: #000;
}

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

.btn-slategray:hover {
	background-color: #000000;
	color: #a8aaaf;
}

.btn-white:hover {
	background-color: #dadada;
	border: 1px solid #cdcdcd;
	color: #000;
}

.blog-btn {
    width: 100%;
    border: 1px solid #dadada;
    color: #000000;
}

.blog-btn span {
    margin: 0px 15px;
}

.blog-btn:hover {
	background-color: #000000;
	border: 1px solid #000000;
	color: #ffffff;
}

.pricing-btn {
    background-color: #000000;
    border: 1px solid #ffffff;
    color: #fff;
    margin-top: 25px;
}


/* =-=--=-=-=-=-=-==-=-=-=-  2.2 Navbar   =-=-=-=-==-=-==-====-==-=- */

#mainNavigation {
    margin-bottom: 0px;
    background-color: #000000;
}

#mainNavigation .navbar-nav li a {
	color: #ad8107;
	padding: 25px 15px;
}

#mainNavigation .navbar-nav li a:hover {
	color: #bababa;
}

#mainNavigation .navbar-nav li ul.dropdown-menu {
	padding: 0px;
}

#mainNavigation .navbar-nav li ul.dropdown-menu li a {
    padding: 10px 2px;
    display: block;
}

#mainNavigation .navbar-nav li ul.dropdown-submenu {
    right: 100%;
    position: absolute;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.35);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.35);
    top: 10px;
    min-width: 200px;
    padding: 0px;
    margin: 2px 0 0;
    text-align: left;
}

#mainNavigation .navbar-nav li ul.dropdown-submenu li {
    position: relative;
}

#mainNavigation .navbar-nav li ul.dropdown-submenu li a {
    padding: 10px 25px;
    display: block;
}

#mainNavigation .navbar-nav li ul.dropdown-submenu li a:hover {
	background-color: #f5f5f5;
	color: #262626;
}

.navbar-toggle {
	border-color: #CECECE;
}

.navbar-toggle {
	border-radius: 0px;
	margin-top: 15px;
	margin-bottom: 20px;
}

.navbar .navbar-toggle .icon-bar {
	background-color: #B9B9B9;
}

.nav-tabs {
	margin-right: 2px;
}

.nav-tabs>li>a {
    border-radius: 0px;
    margin: 0px;
    padding: 10px 24px;
}

.tab-content {
    border: 1px solid #dadada;
    border-top-color: transparent;
    margin-right: 3px;
    padding: 20px;
}

@media (min-width: 768px) {
	.navbar-nav>li.dropdown:hover .dropdown-menu {
		display:block;
	}

	.navbar-nav>li.dropdown:hover .dropdown-submenu {
	    display: none;
	}

	.navbar-nav>li>.dropdown-menu>.dropdown:hover .dropdown-submenu {
	    display: block;
	}
}

/* =-=--=-=-=-=-=-==-=-=-=-  2.3 Header   =-=-=-=-==-=-==-====-==-=- */

#about-page .page-head {
	background: url(../img/about-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#service-page .page-head {
	background: url(../img/services-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#portfolio-page .page-head {
	background: url(../img/portfolio-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#gallery-page .page-head {
	background: url(../img/gallery-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#multiple-blog-page .page-head,
#multiple-blog-left-sidebar .page-head {
	background: url(../img/multiple_blog-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#single-blog-page .page-head,
#single-blog-left-sidebar .page-head,
#single-blog-full-width .page-head {
	background: url(../img/single_blog-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#contact-page .page-head {
	background: url(../img/contact-bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-head .header-wrapper {
	background-color: rgba(0,0,0,0.45);
	position: relative;
	padding: 65px 0px;
}

/* =-=--=-=-=-=-=-==-=-=-=-  2.4 Form   =-=-=-=-==-=-==-====-==-=- */

.form-group {
	margin-bottom: 20px;
}

.form-control {
	background-color: #f9f9f9;
	border: 1px solid #E0E0E0;
	border-radius: 0px;
	box-shadow: none;
	height: auto;
	padding: 14px 28px;
}

.form-control:focus {
    border-color: #000000;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(150, 144, 144, 0.5);
       -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(150, 144, 144, 0.5);
    	-ms-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(150, 144, 144, 0.5);
    	 -o-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(150, 144, 144, 0.5);
    		box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(150, 144, 144, 0.5);
}

::-webkit-input-placeholder {
   color: #000000;
}

:-moz-placeholder { /* Firefox 18- */
   color: #000000;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #000000;  
}

:-ms-input-placeholder {  
   color: #000000;  
}

/*====================================== 2.5 pagination  ====================================*/

.pagination>.active>a, 
.pagination>.active>a:focus, 
.pagination>.active>a:hover, 
.pagination>.active>span, 
.pagination>.active>span:focus, 
.pagination>.active>span:hover,
.pagination>li>a:focus, 
.pagination>li>a:hover, 
.pagination>li>span:focus, 
.pagination>li>span:hover {
    color: #fff;    
    background-color: #000;    
    border-color: #000;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.pagination>li>a, .pagination>li>span {
    margin-left: 5px;
    border-radius: 0px;
    color: #111c6d;
    border: 2px solid #ffffff;
}

/* =-=--=-=-=-=-=-==-=-=-=-  2.6 Typography   =-=-=-=-==-=-==-====-==-=- */

h0, h1, h2, h3, h4 {
	margin: 1.414em 0 0.5em;
	font-weight: inherit;
	line-height: 1.2;
}

h0 {
	margin-top: 0;
	font-size: 4.157em;
	
}
h1 {
	margin-top: 0;
	font-size: 3.157em;
}

h2 {
	font-size: 2.369em;
	font-weight: 300;
}
twit-feed
h3 {
	font-size: 1.777em;
}

h4 {
	font-size: 1.333em;
}

p {
	color: #ad8107;
	line-height: 1.99em;
	margin-bottom: 1.3em;
}

small, .font_small {
	font-size: 0.75em;
}

/* =-=-=-=--=-=-==-=-=-=-=-  2.7 Other common properties    =-=-=-=-=-=-=-=-==-=-=-=-=-=-=*/

a {
	color: #000;
}

a:hover {
	text-decoration: none;
}

.bg-light-gray {
	background-color: #f9f9f9;
}
.bg-black {
	background-color: #000000;
}

.bg-white {
	background-image: #000000;
}

blockquote {
	border: 1px solid #f1f1f1;
	font-size: 15px;
	margin: 40px 0px;
	padding: 20px 50px;
}

blockquote p {
    margin: 0px 20px;
}

blockquote h4:before {
    content: "\f10d";
    font-family: 'FontAwesome';
    font-size: 28px;
    color: #ad8107;
    position: absolute;
    top: 22px;
    left: 30%;
    transform: translateX(-50%);
    opacity: 0.85;

    text-shadow:
        0 0 6px rgba(173,129,7,0.6),
        0 0 14px rgba(173,129,7,0.45),
        0 0 30px rgba(173,129,7,0.25);
}

blockquote {
    position: relative;
    border: 1px solid rgba(173, 129, 7, 0.6);
    padding: 60px 70px;
    margin: 80px auto;
    max-width: 900px;
    text-align: center;
    background: radial-gradient(
        circle at center,
        rgba(173,129,7,0.06) 0%,
        rgba(0,0,0,0.85) 65%
    );
    box-shadow:
        0 0 25px rgba(173,129,7,0.12),
        inset 0 0 40px rgba(173,129,7,0.08);
}

blockquote h4:after {
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 28px;
    color: #ad8107;
    position: absolute;
    bottom: 22px;
    right: 24%;
    transform: translateX(50%);
    opacity: 0.85;

    text-shadow:
        0 0 6px rgba(173,129,7,0.6),
        0 0 14px rgba(173,129,7,0.45),
        0 0 30px rgba(173,129,7,0.25);
}
@keyframes goldPulse {
    0% { text-shadow: 0 0 6px rgba(173,129,7,0.5); }
    50% { text-shadow: 0 0 16px rgba(173,129,7,0.9); }
    100% { text-shadow: 0 0 6px rgba(173,129,7,0.5); }
}

blockquote.wow.animated p:before,
blockquote.wow.animated p:after {
    animation: goldPulse 6s ease-in-out infinite;
}





blockquote footer {
	background-color: transparent;
	color: #000000;
	font-size: 14px;
    padding: 10px 0px;
    margin: 10px 20px 0;
}

.breadcrumb {
	background-color: transparent;
	font-size: 15px;
	float: right;
  	text-transform: uppercase;
}

.breadcrumb a {
    color: #C7C4C0;
}

.breadcrumb a:hover {
	color: #ffffff;
}

.breadcrumb>.active {
	color: #fff;
}

.breadcrumb>li+li:before {
	padding: 0 10px;
	color: #C7C4C0;
	font-family: 'FontAwesome';
	content: "\f101";
}

li {
	list-style: none;
}

.section-title {
	margin-bottom: 5px;
	text-transform: uppercase;
}

.section-sub-title {
	color: #111c6d;
	margin-bottom: 0px;
	text-transform: capitalize;
	word-spacing: 1px;
}

/* =-=--=-=-=-=-=-==-=-=-=- 2.8  Footer   =-=-=-=-==-=-==-====-==-=- */

footer {
	background-color: #000000;
	color: #ad8107;
	font-size: 12px;
	padding: 30px 0px;
}

footer h4 {
	margin-top: 0px;
	margin-bottom: 30px;
}

footer p {
	color: #ad8107;}

footer .footer-links {
	padding: 0px;
}

footer .input-group {
	margin-right: 40px;
}

footer .input-group .form-control {
	font-size: 12px;
	padding: 5px 10px;
}

footer .input-group span.input-group-addon {
    border-radius: 0px;
    color: #fff;
    background-color: #000;
    padding: 5px 10px;
    border: 0px;
}

.footer-links li {
	margin-bottom: 10px;
	color: #ad8107;
}

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

.footer-links li:hover a {
	color: #ffffff;
}

.footer-links li a:before {
	color: #ad8107;
	font-family: 'FontAwesome';
	content: "\f101";
	margin-right: 10px;
}

.footer-news {
	margin-bottom: 35px;
}

.footer-news p {
	margin-bottom: 5px;
	margin-top: -4px;
	line-height: 1.45em;
	color: #ffffff;
}

.footer-news p a {
	color: #ffffff;
}

.footer-news p.news-date {
	color: #ffffff;
	font-size: 10px;
	margin-top: -2px;
}

.footer-address p {
    color: #fff;
    font-size: 12px;
}

.footer-share-button {
    padding: 0px;
}

.footer-share-button li {
    display: inline-block;
}

.footer-share-button li a i {
	background-color: #4a4a4a;
	border-radius: 0px;
	color: #6b6b6b;
	font-size: 12px;
	font-weight: 600;
	height: 30px;
	line-height: 28px;
	text-align: center;
	width: 30px;
}

.footer-share-button li a i:hover {
	background-color: #ffffff;
	color: #000000;
}

.footer-nav {
	background-color: #2d2d2d;
	border-radius: 0px;
	margin-bottom: 0px;
}

.footer-nav li a {
    color: #ad8107;
    font-size: 12px;
}

.footer-nav li a:hover {
    background-color: transparent;
    color: #fff;
}

.footer-nav .navbar-brand a {
    font-size: 12px;
    color: #ad8107;
}

@media (max-width: 991px) {
	footer h4 {
		margin-bottom: 20px;
	}
}

@media (max-width: 550px) {
	.footer-widget {
		width: 100%;
	}
}


/* =-=--=-=-=-=-=-==-=-=-=-  2.9 Section-spacing   =-=-=-=-==-=-==-====-==-=- */

section {
	padding: 1.7129em 0;
}

.headline {
	margin-bottom: 50px;
}

/*================================================================
							Home
==================================================================*/

/*------------------------------  header -----------------------------------*/

#header {
    background: url(../img/slider1.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    display: table;
    height: calc(100vh - 72px);
    width: 100%;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.header-wrapper .header-overlay {
    min-height: 100vh;
    /*min-width: 100vw;*/
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
}   

.header-wrapper .header-wrapper-inner {
    display: table-cell;
    text-align: center;
    vertical-align: bottom;
}

.header-wrapper .header-wrapper-inner .welcome-speech {
	margin-top: 7em;
}

.header-wrapper .header-wrapper-inner .welcome-speech h1 {
	color: #232c35;
    font-size: 35px;
    font-weight: 100;
    letter-spacing: 6px;
    margin-bottom: 12px;
    margin-top: 0;
    text-transform: uppercase;
}

.header-wrapper .header-wrapper-inner .welcome-speech p {
	color: #232c35;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 4.2em;
}

/*--------------------------- intro  ------------------------------------*/

.intro {
	padding: 5.6285em 0;
}

.intro .intro-description {
	padding-left: 40px;
}

.intro .intro-description h2 {
	font-size: 30px;
	margin-top: -10px;
	text-transform: uppercase;
}

.intro .intro-description p {
	font-size: 14px;
	padding: 2px 60px 5px 0px;
}

.intro .intro-description .points {
	padding: 0px;
}

.intro .intro-description .points li {
	margin-bottom: 10px;
}

.intro .intro-description .points li span {
	margin-right: 10px;
}

.intro .intro-description .btn {
	margin-top: 20px;
}

/*--------------------------  feature  ----------------------------------*/

.feature {
	padding: 5.6285em 0 2.9145em;
}

.feature-content {
    margin-bottom: 2.714em;
}

.feature-icon {
	background-color: #000000;
	border: 1px solid #000000;
	border-radius: 50%;
    color: #ffffff;
    font-size: 45px;
    height: 90px;
    padding: 10px 0px 15px 3px;
    width: 90px;
}

.feature-content:hover .feature-icon {
	background-color: #ffffff;
	border: 1px solid #313131;
	color: #313131;
}

.feature-heading {
	font-size: 18px;
    margin-bottom: 0px;
    margin-top: 20px;
}

.feature-description {
    padding: 10px;
    margin-bottom: 0px;
}

/*---------------------------  portfolio  ----------------------------------*/

.portfolio-item {
	margin-bottom: 3.1269em;
}

.portfolio-item .item-image {
	position: relative;
}

.portfolio-item .item-image a,
.portfolio-item .item-image a img {
	display: block;
	position: relative;
}

.portfolio-item .item-image a {
	overflow: hidden;
}

.portfolio-item .item-image a div {
	position: absolute;
	background: rgba(75,75,75,0.7);
	width: 100%;
	height: 100%;
}

.portfolio-item .item-image a div span {
	color: #ffffff;
	display: block;
	font-size: 50px;
	position: absolute;
	left: 45%;
	top: 35%;
}

.portfolio-item .item-description {
    padding: 15px 0px;
}

.portfolio-item .item-description span {
    display: block;
    color: #111c6d;
}

.portfolio-item .item-description span.item-name {
    margin-bottom: 2px;
    font-size: 16px;
    color: #474747;
}

.portfolio-item .item-description span.like {
    float: right;
    margin-top: 12px;
}

@media (max-width: 767px) {
	.portfolio-item .item-description {
	    padding: 12px 50px;
	}
}

/*---------------------------  twitter-feed -------------------------------*/

.twit-feed {
    background-image: url('assets/img/twit-bg-1.webp');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}


.twit-feed-wrapper {
	/*background-color: rgba(0,0,0,0.75);*/
	padding: 20px 0px;
}

#twit {
	color: #fff;
}

#twit .item .twit-content {
    margin: 0px 75px;
}

#twit .item .twit-content p {
    color: #fff;
    font-size: 12px;
    font-weight: 100;
}


#twit .item .twit-content h3 {
    margin-bottom: 1.414em;
    font-weight: 100;
}

#twit .item .twit-content .twit-icon i {
    font-size: 2.5em;
}

.owl-theme .owl-controls .owl-buttons div
{
	position: absolute;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 15px;
	opacity: 1;
	margin: 0px;
	transition: all .4s;
	background-color: transparent;
	color: #fff;
	top: 40%;
	line-height: 40px;
}

.owl-prev {
    left: 0;
}

.owl-prev:before {
	content: "\f053";
    font-family: 'FontAwesome';
}

.owl-next {
    right: 0;
}

.owl-next:before {
	content: "\f054";
	font-family: "FontAwesome";
}

/*---------------------------  pricing  ----------------------------------*/

.price-box {
    background-color: #ffffff;
    color: #000;
    text-align: center;
    padding: 20px 15px 25px 15px;
    margin-bottom: 25px;
}

.price-box h3 {
	border-bottom: 1px solid #dadada;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 20px 0px;
}

.price-box .price-info {
    position: relative;
    padding: 0px 15px;
}

.price-box .price-info .price {
	border-bottom: 1px solid #dadada;
	border-top: 1px solid #dadada;
    color: #313131;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    padding: 34px 0px 20px 0px;
}

.price-box .price-info .price sup {
	color: #313131;
	font-size: 35px;
    font-weight: 400;
    top: -.62em;
}

.price-box .price-info .price span {
    display: inline;
    font-size: 60px;
    font-weight: 400;
    color: #000;
}

.price-box .price-info span {
	color: #000000;
    display: block;
    margin-bottom: 25px;
}

.price-box:hover {
    background-color: #313131;
}

.price-box:hover h3,
.price-box:hover p,
.price-box:hover .price-info,
.price-box:hover .price-info span,
.price-box:hover .price,
.price-box:hover .price sup,
.price-box:hover .price span {
    color: #fff;
}

.price-box:hover .pricing-btn {
    background-color: #fff;
    color: #910508;
    border: 1px solid #313131;
}

/*---------------------------  testimonial ------------------------------*/

#client-speech .client-box {
	background-color: #fff;
    box-shadow: 1px 3px 7px #eee;
    margin-bottom: 2.714em;
    padding: 40px;
}

#client-speech .client-box .about-client {
    width: 32%;
    float: left;
}

#client-speech .client-box .about-client p {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-top: 8px;
	text-align: center;
	text-transform: uppercase;
}

#client-speech .client-box .main-speech {
    padding-left: 40%;
}

#client-speech .client-box .main-speech p {
	font-size: 13px;
	margin-top: 5px;
}

@media (max-width: 991px) {
	.intro .intro-description h2 {
		margin-top: 1.414em;
	}
}

@media (max-width: 991px) and (min-width: 700px) {
	.intro .intro-description {
		padding-left: 60px;
	}
}

@media (max-width: 600px) {
	#client-speech .client-box .main-speech {
		padding-left: 50%;
	}

	#client-speech .client-box .main-speech p {
		margin-top: -5px;
	}
}

/*=============================================================================
						4. About page
=============================================================================*/

/*-----------------------------  4.1 story   ------------------------------------*/

.story .headline {
	margin-bottom: 25px;
}

.story .story-description {
	padding: 0px 20px;
}

/*------------------------------ 4.2 designation  -------------------------------------*/

.designation .section-title {
	margin-top: 0px;
}

.team-member-box {
	border: 1px solid #dadada;
	margin-bottom: 3.1269em;
}

.team-member-description {
    padding: 20px 30px;
}

.team-member-about {
    border-bottom: 1px solid #dadada;
}

.team-member-about h4 {
    margin-top: 0;
}

.team-member-social {
    padding-top: 12px;
}

.team-member-social a {
	margin: 0px 3px;
}

.team-member-social a i {
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 50%;
	color: #dadada;
	font-size: 12px;
	font-weight: 600;
	height: 30px;
	line-height: 28px;
	width: 30px;
}

.team-member-social a i:hover {
    background-color: #000;
    color: #fff;
}

/*----------------------------------------- 4.3 skill  ------------------------------------*/

.skill {
    padding: 5.6285em 0;
}

.skill h2 {
    font-size: 30px;    
    margin-top: 0px;    
    text-transform: uppercase;
}

.skill-level p {
    margin-bottom: 3px;
}

.progress {
    border-radius: 0px;
    background-color: #fff;
    box-shadow: none;
    height: 25px;
    margin-bottom: 15px;
    border: 1px solid #dadada;
}

.progress-bar {
    background-color: #000;
    text-align: right;
    padding-right: 15px;
}

/*---------------------------- 4.4 sponsor  -----------------------------*/

.sponsor {
    padding: 3.1269em 0;
}

#sponsor-list img {
    opacity: 0.5;
}

#sponsor-list img:hover {
    opacity: 1.0;
}

/*================================================================
						5. Services page
==================================================================*/

.service-content {
    margin-bottom: 2.714em;
}

.service-icon {
	background-color: #fff;
	border: 1px solid #111c6d;
	border-radius: 50%;
    color: #111c6d;
    font-size: 45px;
    height: 90px;
    padding: 10px 0px 15px 3px;
    width: 90px;
}

.service-content:hover .service-icon {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
}

.service-heading {
	font-size: 21px;
    margin-bottom: 0px;
    margin-top: 20px;
}

.service-description {
    padding: 10px 27px;
}

/*===========================================================================
					7. Gallery page
===========================================================================---*/

#galleryContent {
	-moz-column-count: 4;
	-moz-column-gap: 0px;
	-webkit-column-count: 4;
	-webkit-column-gap: 0px;
	column-count: 4;
	column-gap: 0px;
}

#galleryContent img{
	display: inline-block;
	margin-bottom: 0px;
	padding: 2px;
	width: 100%;
}

.gallery-item {
    position: relative;
}

.gallery-item-zoom {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: rgba(0,0,0,0.75);
    display: none;
}

.item-zoom {
    position: absolute;
    top: 40%;
    text-align: center;
    width: 100%;
}

.gallery-item-zoom .item-zoom i {
    font-size: 40px;
    color: #fff;
}

.gallery-item:hover .gallery-item-zoom {
    display: block;
}

a#loadGallery {
    margin-top: 30px;
}

@media only screen and (max-width : 1200px),
only screen and (max-device-width : 1200px){
	#galleryContent {
		-moz-column-count: 3;
		-moz-column-gap: 0px;
		-webkit-column-count: 3;
		-webkit-column-gap: 0px;
		column-count: 3;
		column-gap: 0px;
	}
}

@media only screen and (max-width : 767px),
only screen and (max-device-width : 767px){
	#galleryContent {
		-moz-column-count: 2;
		-moz-column-gap: 0px;
		-webkit-column-count: 2;
		-webkit-column-gap: 0px;
		column-count: 2;
		column-gap: 0px;
		/*width: 600px;*/
	}
}

@media only screen and (max-width : 550px),
only screen and (max-device-width : 550px){
	#galleryContent {
		-moz-column-count: 1;
		-moz-column-gap: 0px;
		-webkit-column-count: 1;
		-webkit-column-gap: 0px;
		column-count: 1;
		column-gap: 0px;
	}
}

/*==================================================================================
					8. 404 page
==================================================================================---*/

#error-page section {
	padding: 0px;
}

#error-page .header{
	background-color: #f9f9f9;
	height: 22%;
}

#error-page .header .logo {
	margin-top: 25px;
}

#error-page .header .page-title {
    font-size: 24px;
    font-weight: 400;
    padding: 15px 0px;
    text-transform: capitalize;
}

#error-page .header .page-title p {
	margin-bottom: 0px;
}

#error-page .main-content{
	height: 58%;
}

#error-page .main-content h1.error-nmbr {
	color: #fff;
  	font-size: 180px;
  	font-weight: 600;
  	margin-bottom: 0px;
  	padding: 75px 0px;
  	text-shadow: 10px 7px 0px #dadada;

  	/*color: #4A4A4A;
    font-size: 180px;
    font-weight: 600;
    margin-bottom: 0px;
    padding: 75px 0px;
    text-shadow: 7px 5px 2px rgb(218, 218, 218);*/
}

#error-page .footer{
	background-color: #f9f9f9;
	height: 20%;
}

#error-page .footer .error-page-btn {
	padding: 50px 0px;
}

#error-page .footer .error-page-btn .btn-black {
	float: right;
}

#error-page .footer .error-page-btn .btn-white {
	float: left;
}

/*===========================================================================
				9. Coming Soon page
===========================================================================---*/

#coming-soon-page section {
	padding: 0px;
}

#coming-soon-page .header{
	background-color: #f9f9f9;
	height: 22%;
}

#coming-soon-page .header .logo {
	margin-top: 25px;
}

#coming-soon-page .header .page-title {
    font-size: 24px;
    font-weight: 400;
    padding: 15px 0px;
}

#coming-soon-page .header .page-title p {
	color: #000000;
	margin-bottom: 0px;
}

#coming-soon-page .main-content{
	height: 48%;
}

/*-------------------------   timer  -------------------------*/

#spacer1 {
	padding: 70px 0px;
}

.day, .hr, .min, .sec {
    color: #ffffff;
    display: inline-block;
    font-size: 115px;
    text-shadow: 5px 7px 5px #dadada;
}

#coming-soon-page .footer{
	background-color: #f9f9f9;
	height: 30%;
}

#coming-soon-page .footer form.notify {
    padding: 30px;
}

#coming-soon-page .footer form.notify .form-control {
    padding: 10px 20px;
}

.coming-soon-social a {
    display: inline-block;
    margin: 0px 3px;
}

.coming-soon-social a i {
    color: #e3e3e3;
}

.coming-soon-social a i:hover {
    color: #000;
}

@media (min-width: 420px) and (max-width: 767px) {
	#spacer1 {
		padding: 0px;
	}

	.day, .hr, .min, .sec {
		font-size: 100px;
	}
}

/*================================================================
						10.1 Blog Page (Multiple blog page)
==================================================================*/

.blog-item {
	padding: 1.7129em 0;
}

.blog-heading {
    margin-bottom: 15px;
}

.blog-heading h3 {
    margin-bottom: 5px;
    font-weight: 300;
    margin-top: 20px;
}

.blog-heading span {
    color: #111c6d;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-heading span.date {
    margin-right: 12px;
}

.blog-item p {
    text-align: justify;
}

#multiple-blog-page blockquote {
    background-color: #000;
}

#multiple-blog-page blockquote p {
    color: #fff;
    font-size: 13px;
    line-height: 28px;
    word-spacing: 1px;
}

#multiple-blog-page blockquote footer {
    color: #ffffff;
}

/*===========================================================================
				10.2 Single blog page
===========================================================================*/

.article-summary {
    margin: 40px 0px;
}

.article-summary p span {
    color: #000000;
    font-size: 50px;
    position: absolute;
    margin: 20px 0px 20px -50px;
}

.article-conclusion {
    margin-top: 1.3em;
}

.article-conclusion strong {
    color: #000000;
}

.article-conclusion strong em {
    font-weight: 600;
}

.article-conclusion a {
    color: red;
}

.single-blog-page-button {
	margin: 30px 0px;
}

.about-author {
    border: 1px solid #f1f1f1;
    padding: 12px;
    border-bottom-color: transparent;
}

.about-author p {
    margin: 15px 0px 10px -15px;
}

.about-author p strong {
	color: #000000;
	font-size: 1.333em;
	font-weight: 400;
}

.author-name {
	color: #000000;
    font-size: 12px;
    font-weight: 600;
    margin-left: 7px;
}

.author-contact {
    border: 1px solid #f1f1f1;      
    padding: 10px;
}

.author-contact p {
    margin: 7px;
}

.author-contact p span {
	margin-right: 5px;
}

.author-contact-button {
	margin-bottom: 0px;
    padding: 0px;
}

.author-contact-button li {
    display: inline-block;
}

.author-contact-button li a i {
	background-color: #f1f1f1;
	border-radius: 0px;
	color: #111c6d;
	font-size: 12px;
	font-weight: 600;
	height: 35px;
	line-height: 35px;
	text-align: center;
	width: 35px;
}

.author-contact-button li a i:hover {
	background-color: #000000;
	color: #ffffff;
}

.comments h3 {
    margin-bottom: 20px;
}

.btn-clipboard {
	position:absolute;
	top:0;
	right:0;
	z-index:10;
	display:block;
	padding:5px 8px;
	font-size:12px;
	color:#111c6d;
	cursor:pointer;
	background-color:#fff;
	border:1px solid #f1f1f1;
}

.btn-clipboard:hover {
	color:#111c6d;
	background-color:#f1f1f1;
}

.cmnt-clipboard {
	display: block;
	position: relative;
}

.well {
	background-color: #ffffff;
	border: 1px solid #f1f1f1;
	border-radius: 0px;
	box-shadow: none;
	margin-bottom: 30px;
}

.comment-info {
    margin-top: 5px;
}

.comment-info strong {
	color: #000000;
	font-size: 15px;
}

.comment-info span {
	font-size: 11px;
	margin-left: 5px;
	text-transform: uppercase;
}

.comment-post h3 {
	margin-bottom: 20px;
}

.comment-post button {
    margin-top: 20px;
}

@media (max-width: 991px) {
	.about-author {
		padding: 30px;
	}
}

/*-----------------------------  10.3 sidebar ------------------------------------*/

/*------------------------------
		twitter-feed-widget
--------------------------------*/

.twitter-widget-feed {
	margin-top: 15px;
}

.twitter-widget-feed i {
	background-color: #fff;
	border: 1px solid #dadada;
	border-radius: 50%;
	color: #dadada;
	font-size: 18px;
	font-weight: 600;
	height: 40px;
	line-height: 40px;
	margin-top: 6px;
	width: 40px;
}

.twitter-widget-feed:hover i {
	background-color: #000000;
	border: 1px solid #000000;
	color: #ffffff;
}

.twitter-widget-description p {
    font-size: 13px;
    margin-bottom: 1px;
}

.twitter-widget-description p span {
    color: #000000;
}

.twitter-widget-description p.time {
    font-size: 11px;
}

@media (max-width: 991px) {
	.twitter-widget-description {
		margin: 10px 0px;
	}
}

/*------------------------------
			faq
--------------------------------*/

.topics {
    margin-top: 15px;
}

.faq-t {
	line-height: 1.5em;
	color: gray;  
	float: right; 
	font-weight: 700; 
	padding-right: 0.62em; 
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

.faq-o {
	color: #000;
	margin-top: -5px;
	transform: rotate(-45deg);
	transform-origin: 50% 50%;
	-ms-transform: rotate(-45deg);
	-ms-transform-origin: 50% 50%;
	-webkit-transform: rotate(-45deg);
	-webkit-transform-origin: 50% 50%;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

.faq-q {
	background-color: #f9f9f9;
	border: 1px solid transparent;
	color: #111c6d;
    cursor: pointer;
    font-size: 14px;
    padding: 12px;
    
}

.faq-q:hover {
	background-color: #ffffff;
    border: 1px solid #dadada;
    color: #000000;
}

.faq-a {
	background-color: #ffffff;
  	clear: both;
  	color: #111c6d;
  	display: none;
  	padding: 12px;
}

/*----------------------------------
		popular tags
-----------------------------------*/

aside .tag-widget .tags a {
    border: 1px solid #dadada;
  	border-radius: 25px;
  	color: #111c6d;
  	display: inline-block;
  	font-size: 11px;
  	margin: 5px 0px;
  	padding: 3px 9px;
  	text-transform: uppercase;
}

aside .tag-widget .tags a:hover {
	background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
}

/*--------------------------------------------
			archives
--------------------------------------------*/

.archive-widget .archives 
{
    padding-left: 0;
    list-style: none;
}
.archive-widget .archives li 
{
    border-bottom: 1px solid #f3f3f3;
    list-style: none;
    display: block;
    padding: 10px 20px 10px 0;
    position: relative;
}

.archive-widget .archives li a {
    margin-left: 25px;
    font-size: 12px;
    color: #111c6d;
}

.archive-widget .archives li:before 
{
    color: #111c6d;
    content: "\f0da";
    font-family: 'FontAwesome';
    position: absolute;
    left: 5px;
    top: 35%;
    font-size: 11px;
}

.archive-widget .archives li:hover a {
	color: #000000;
}

/*================================================================
						11. Contact page
==================================================================*/

#contact-page section {
	padding: 0px;
}

/*---------------------------  11.1 google map --------------------------*/
.g-map {
    margin: 50px 0px;
}

#map-canvas 
{
    width: 100%;
    height: 400px;
}

/*----------------------------  11.2  quick contact  ------------------------*/
.contact-address {
	margin: 0px;
}

.contact-address .address-info {
	border: 1px solid #f1f1f1;
	margin-bottom: 20px;
	padding: 0px;
}

.contact-address .address-info .address-info-icon {
    background-color: #f9f9f9;
    border-right: 1px solid #f1f1f1;
}

.contact-address .address-info:hover .address-info-icon {
    background-color: #000;
    border-right: 1px solid #000;
}

.contact-address .address-info:hover .address-info-icon i{
    color: #fff;
}

.contact-address .address-info .address-info-icon i {
    position: relative;
    padding: 62px 0px;
    font-size: 30px;
    color: #dadada;
}

.contact-address .address-info .address-info-desc {
    padding: 0px 0px 16px 20px;
}

.contact-address .address-info .address-info-desc p {
    font-size: 13px;
}

/*-------------------------------  11.3 contact form ---------------------------*/

.contact-form {
	margin: 25px 0px 90px 0px;
}

.contact-form .headline .section-title, 
.contact-form .headline .section-sub-title {
	text-transform: none;
}

.contact-form .btn-black {
	float: right;
	margin-top: 20px;
}

/*------------------------------ youtube addin ----------------------------*/

.table{
width:90%;
table-layout:auto;
}
.YouTubePopUp-Wrap{
    position:fixed;
    width:100%;
    height:100%;
    background-color:#000;
    background-color:rgba(0,0,0,0.8);
    top:0;
    left:0;
    z-index:9999999999999;
}
.YouTubePopUp-animation{
    opacity: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUp;
    animation-name: YouTubePopUp;
}

@-webkit-keyframes YouTubePopUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes YouTubePopUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body.logged-in .YouTubePopUp-Wrap{ /* For WordPress */
    top:32px;
    z-index:99998;
}

.YouTubePopUp-Content{
    max-width:680px;
    display:block;
    margin:0 auto;
    height:100%;
    position:relative;
}

.YouTubePopUp-Content iframe{
    max-width:100% !important;
    width:100% !important;
    display:block !important;
    height:480px !important;
    border:none !important;
    position:absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.YouTubePopUp-Hide{
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUpHide;
    animation-name: YouTubePopUpHide;
}

@-webkit-keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.YouTubePopUp-Close{
    position:absolute;
    top:0;
    cursor:pointer;
    bottom:528px;
    right:0px;
    margin:auto 0;
    width:24px;
    height:24px;
    background:url(../images/close.png) no-repeat;
    background-size:24px 24px;
    -webkit-background-size:24px 24px;
    -moz-background-size:24px 24px;
    -o-background-size:24px 24px;
}

.YouTubePopUp-Close:hover{
    opacity:0.5;
}

@media all and (max-width: 768px) and (min-width: 10px){
    .YouTubePopUp-Content{
        max-width:90%;
    }
}

@media all and (max-width: 600px) and (min-width: 10px){
    .YouTubePopUp-Content iframe{
        height:320px !important;
    }

    .YouTubePopUp-Close{
        bottom:362px;
    }
}

@media all and (max-width: 480px) and (min-width: 10px){
    .YouTubePopUp-Content iframe{
        height:220px !important;
    }

    .YouTubePopUp-Close{
        bottom:262px;
    }
}
.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #000000;
  background-clip: border-box;
  border-bottom: 4px solid #ad8107;
    border-left:3px solid #ad8107;
    border-right:3px solid #ad8107;
	border-top: 1px solid #ad8107;
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  height: 300px;
  border-top-left-radius: calc(0rem - 3px);
  border-top-right-radius: calc(0rem - 3px);
  border-bottom-right-radius: calc(0rem - 3px);
  border-bottom-left-radius: calc(0rem - 3px);
  
    padding: 2px;
    box-shadow: 1px 2px 1px 2px #898989;
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
/* =========================================
   Hover Glow Card (used by Codex cards)
   ========================================= */

.hover-glow-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(173,129,7,0.6);
    box-shadow:
        0 0 25px rgba(173,129,7,0.12),
        inset 0 0 40px rgba(173,129,7,0.08);
}

.hover-glow-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: #ad8107;
    box-shadow:
        0 0 35px rgba(173,129,7,0.55),
        0 0 60px rgba(173,129,7,0.35),
        inset 0 0 50px rgba(173,129,7,0.15);
}
.hover-glow-card:hover p {
    text-shadow: 0 0 12px rgba(173,129,7,0.35);
}

/* =======================
   Home Banner Section
   ======================= */

.home-banner {
    background-color: #000;          /* Matches your dark theme */
    padding: 0;                      /* Full-bleed banner */
    margin-bottom: 30px;
}

.banner-wrapper {
    padding: 0;                      /* Remove padding from container-fluid */
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid #ad8107; /* Gold accent that matches theme */
}
.full-width-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #000;
}

.banner-full-img {
    width: 100%;
    height: auto;
    display: block;
}
/* ====== FADE CAROUSEL EFFECT ====== */

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition: opacity 2.2s ease-in-out;
    -webkit-transition: opacity 2.2s ease-in-out;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

/* Remove sliding animation */
.carousel-fade .carousel-inner .item {
    transition-property: opacity;
}

/* ====== CAPTION OVERLAY (Centered) ====== */

.custom-caption {
    bottom: 40px;
}

.custom-caption .buy-btn {
    background-color: #ad8107;
    border: 1px solid #ad8107;
    padding: 12px 28px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
}

.custom-caption .buy-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Ensure captions are visible on large banners */
.carousel-caption {
    text-shadow: none;
}
.intro-description ul li {
    position: relative;
    padding-left: 40px; /* space to move text right */
    list-style: none;
    margin-bottom: 15px;
}

.intro-description ul li span {
    position: absolute;
    left: 0;
    top: 0;
}

.intro-description ul li i.fa-star {
    color: #ad8107; /* your gold color */
    font-size: 0.9em;
}
/* ===========================================
   FIX DROPDOWN BACKGROUND TO BLACK
   =========================================== */

#mainNavigation .navbar-nav li .dropdown-menu {
    background-color: #000 !important;   /* black background */
    border: none !important;
}

#mainNavigation .navbar-nav li .dropdown-menu li a {
    color: #ad8107 !important;           /* gold text */
    padding: 12px 20px;
}

/* Hover inside dropdown */
#mainNavigation .navbar-nav li .dropdown-menu li a:hover {
    background-color: #000 !important;   /* black hover */
    color: #fff !important;              /* optional: white text on hover */
}

/* ===========================================
   FIX TOP MENU HOVER TO BLACK
   =========================================== */

#mainNavigation .navbar-nav > li > a:hover,
#mainNavigation .navbar-nav > li > a:focus {
    background-color: #000 !important;
    color: #fff !important;              /* optional highlight */
}

/* When dropdown is open */
#mainNavigation .navbar-nav > li.open > a,
#mainNavigation .navbar-nav > li.open > a:hover,
#mainNavigation .navbar-nav > li.open > a:focus {
    background-color: #000 !important;
    color: #fff !important;
}
/* ===========================================
   SMOOTH FADE-IN / SLIDE-DOWN FOR DROPDOWNS
   (REPLACE the earlier fade CSS with this)
   =========================================== */

#mainNavigation .dropdown-menu {
    display: block !important;          /* always block – no more display:none */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.75s ease-in-out,
                transform 0.95s ease-in-out,
                visibility 0.95s ease-in-out;
}

/* When dropdown is opened (click on mobile / hover on desktop) */
#mainNavigation li.open > .dropdown-menu,
#mainNavigation .navbar-nav > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===========================================
   GOLD BORDER ON HOVER (DROPDOWN ITEMS)
   =========================================== */

#mainNavigation .dropdown-menu li a {
    border-left: 3px solid transparent;
    transition: all 0.2s ease-in-out;
}

#mainNavigation .dropdown-menu li a:hover {
    background-color: #000 !important;
    color: #ad8107 !important;     /* gold text */
    border-left: 3px solid #ad8107 !important; /* gold border */
}
/* ===========================================
   GOLD BORDER ON HOVER (TOP NAV ITEMS)
   =========================================== */

#mainNavigation .navbar-nav > li > a {
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease-in-out;
}

#mainNavigation .navbar-nav > li > a:hover {
    background-color: #000 !important;
    color: #ad8107 !important;
    border-bottom: 3px solid #ad8107;
}
/* ===========================================
   MAKE TOP NAVIGATION MENU FONT BIGGER
   =========================================== */

#mainNavigation .navbar-nav > li > a {
    font-size: 18px !important;   /* increase size */
    font-weight: 600;             /* optional: adds clarity */
}

/* If dropdown font also needs to match */
#mainNavigation .dropdown-menu > li > a {
    font-size: 16px !important;
}
footer {
    
    box-shadow: 0 -4px 12px rgba(173, 129, 7, 0.45); /* gold glow */
}
/* ===========================================
   FOOTER READABILITY IMPROVEMENTS
   =========================================== */

footer {
    color: #e6c367; /* softer, brighter gold for text */
    font-size: 15px;
    line-height: 1.7em;
}

/* Footer column titles */
footer h4,
footer h5 {
    color: #ad8107;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Footer paragraph text */
footer p {
    color: #d9b96e !important;
}

/* Links */
footer a {
    color: #e6c367;
}

footer a:hover {
    color: #fff;
}

/* Icons inside footer */
footer i {
    color: #ad8107;
    margin-right: 8px;
    font-size: 17px;
}

/* Spacing for list items */
footer ul li {
    margin-bottom: 8px;
}
.about-title {
    color: #ad8107;
    font-size: 3.2em;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.gold-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, #ad8107, transparent);
    margin: 20px auto;
}

.about-row {
    margin-top: 60px;
    margin-bottom: 60px;
}

.about-text {
    color: #ad8107;
    line-height: 1.7em;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(173,129,7,0.3);
}

.about-quote {
    font-size: 1.8em;
    color: #ad8107;
    font-style: italic;
    margin: 40px 0;
}

.features-row {
    margin-top: 40px;
    text-align: center;
}

.feature-box {
    margin-bottom: 40px;
}

.feature-icon {
    font-size: 40px;
    color: #ad8107;
    margin-bottom: 15px;
}

.signature-logo {
    width: 110px;
    opacity: 0.9;
    margin-top: 30px;
}

.signature-text {
    color: #ad8107;
    font-size: 1.4em;
    margin-top: 15px;
}
/* FOOTER REDESIGN */

.footer-section {
    background: #000;
    padding: 6px 0 30px 0;
    color: #e0c27a;
    position: relative;
    
}

/* Glowing divider */
.footer-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #ad8107, transparent);
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(173,129,7,0.8);
}

/* Titles */
.footer-title {
    font-size: 1.4em;
    color: #ad8107;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-title i {
    margin-right: 6px;
}

/* Lists */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list li i {
    color: #ad8107;
    margin-right: 6px;
}

.footer-list a {
    color: #e0c27a;
    text-decoration: none;
}

.footer-list a:hover {
    color: white;
}

/* Contact items */
.footer-contact i {
    color: #ad8107;
    margin-right: 8px;
}

.footer-contact a {
    color: #e0c27a;
}

.footer-contact a:hover {
    color: #fff;
}

/* Call-to-action button */
.footer-btn {
    background: #ad8107;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all .3s ease;
}

.footer-btn:hover {
    background: white;
    color: black;
}

/* Privacy text */
.footer-privacy {
    font-size: 0.9em;
    margin-top: 12px;
    opacity: 0.7;
}

/* About Aura Portrait */
.footer-author-img {
    width: 100%;
    max-width: 130px;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(173,129,7,0.5);
}

/* Social Icons */
.footer-social {
    display: inline-block;
    margin: 0 8px;
    font-size: 32px;
    color: #ad8107;
    transition: all .3s ease;
}

.footer-social:hover {
    transform: scale(1.15);
    color: white;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9em;
    opacity: 0.8;
}
/* ===== HOME HERO SPLIT ===== */
.hero-split {
    padding: 80px 0 60px;
    background-color: #000;
}

.hero-row {
    display: flex;
    align-items: center;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(173,129,7,0.4);
}

.hero-title {
    color: #f8d77b;
    font-size: 2.7em;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: #d9b96e;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    color: #ddd;
}

.hero-list li {
    margin-bottom: 8px;
}

.hero-list i {
    color: #ad8107;
    margin-right: 8px;
}

.hero-cta .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Filled gold button */
.hero-btn {
    background-color: #ad8107;
    color: #000;
    border: none;
    padding: 10px 24px;
    font-weight: bold;
    text-transform: uppercase;
}

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

/* Outline gold button */
.hero-btn-outline {
    background: transparent;
    border: 2px solid #ad8107;
    color: #ad8107;
    padding: 8px 22px;
    text-transform: uppercase;
    font-weight: bold;
}

.hero-btn-outline:hover {
    background-color: #ad8107;
    color: #000;
}

/* Stack hero nicely on mobile */
@media (max-width: 767px) {
    .hero-row {
        display: block;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2em;
        margin-top: 25px;
    }
}


/* ===== INTRO / CODEX / INVITATION ===== */
.intro-soul {
    padding: 60px 0 40px;
}

.codex-section {
    padding: 40px 0 0;
}

.codex-carousel {
    margin-top: 20px;
}

.invitation-section {
    padding: 50px 0 40px;
    text-align: center;
}

.invitation-title {
    color: #f8d77b;
    font-size: 2.1em;
}

.invitation-subtitle {
    color: #d9b96e;
    font-size: 1.2em;
    margin-top: 10px;
}


/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 60px 0 80px;
    background: radial-gradient(circle at top, rgba(173,129,7,0.25), #000 60%);
}

.services-row .card {
    background-color: #050505;
    border: 1px solid #2d2510;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0,0,0,0.6);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.services-row .card-img-top {
    width: 100%;
}

.services-row .card-body {
    padding: 18px;
}

.services-row .card-title {
    color: #f0cf7a;
    margin-bottom: 10px;
}

.services-row .card-text {
    color: #ddd;
    font-size: 0.98em;
}

.services-row .card-footer {
    background: transparent;
    border-top: none;
    padding-bottom: 18px;
}

.services-row .card:hover {
    transform: translateY(-6px);
    border-color: #ad8107;
    box-shadow: 0 0 25px rgba(173,129,7,0.6);
}


/* ===== TESTIMONIALS ===== */
.twit-feed {
    background-color: #020202;
    padding: 30px 0;
}

.twit-content h3 {
    color: #f0cf7a;
}

.twit-content p {
    color: #d9b96e;
    margin-top: 10px;
}
/* ============================
   CODEX LANDING PAGE
   ============================ */

/* HERO SECTION */
.codex-hero {
    position: relative;
    padding: 90px 0 80px;
    background-color: #000;
    background-image: url('assets/img/codex-hero-bg.jpg'); /* add your golden energy image here */
    background-size: cover;
    background-position: center;
}

.codex-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(173,129,7,0.45), rgba(0,0,0,0.92));
}

.codex-hero-content {
    position: relative;
    z-index: 2;
}

.codex-hero-row {
    display: flex;
    align-items: center;
}

.codex-hero-title {
    color: #f8d77b;
    font-size: 3em;
    margin-bottom: 10px;
}

.codex-hero-subtitle {
    color: #e0c27a;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.codex-hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    color: #f0e6c4;
}

.codex-hero-list li {
    margin-bottom: 8px;
}

.codex-hero-list i {
    color: #ad8107;
    margin-right: 8px;
}
/* =========================================
   Codex Hero List – Global Hanging Indent
   Applies to ALL book pages
   ========================================= */

.codex-hero-list {
    padding-left: 0;
}

.codex-hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    line-height: 1.55;
}

.codex-hero-list li i {
    flex-shrink: 0;
    margin-top: 4px;
}

/* Allow emphasis lines (Codex positioning) to wrap cleanly */
.codex-hero-list li em {
    font-style: italic;
    opacity: 0.95;
}


.codex-hero-cta .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.codex-hero-btn {
    background-color: #ad8107;
    color: #000;
    border: none;
    padding: 10px 26px;
    font-weight: bold;
    text-transform: uppercase;
}

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

.codex-hero-btn-outline {
    background: transparent;
    border: 2px solid #ad8107;
    color: #ad8107;
    padding: 8px 22px;
    text-transform: uppercase;
    font-weight: bold;
}

.codex-hero-btn-outline:hover {
    background-color: #ad8107;
    color: #000;
}

.codex-hero-image {
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(173,129,7,0.7);
}

/* mobile hero */
@media (max-width: 767px) {
    .codex-hero-row {
        display: block;
        text-align: center;
    }

    .codex-hero-title {
        font-size: 2.4em;
        margin-top: 25px;
    }
}

/* INTRO */
.codex-intro {
    padding: 60px 0 40px;
}

/* BOOK GRID SECTION */
.codex-books-section {
    padding: 50px 0 70px;
    background: radial-gradient(circle at top, rgba(173,129,7,0.2), #000 70%);
}

.codex-books-row .card.codex-book-card {
    background-color: #050505;
    border: 1px solid #2d2510;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0,0,0,0.6);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.codex-books-row .card-img-top {
    width: 100%;
}

.codex-books-row .card-body {
    padding: 16px 16px 10px;
}

.codex-books-row .card-title {
    color: #f0cf7a;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.codex-books-row .card-text {
    color: #ddd;
    font-size: 0.96em;
}

.codex-books-row .card-footer {
    background: transparent;
    border-top: none;
    padding: 10px 16px 16px;
}

.codex-books-row .btn-block {
    width: 100%;
    margin-bottom: 6px;
}

.codex-books-row .card.codex-book-card:hover {
    transform: translateY(-6px);
    border-color: #ad8107;
    box-shadow: 0 0 24px rgba(173,129,7,0.6);
}

/* DEEPER INVITATION */
.codex-deep-section {
    padding: 40px 0 30px;
}

/* PERFECT FOR READERS */
.codex-perfect-for {
    padding: 60px 0 60px;
}

.codex-perfect-list ul li {
    margin-bottom: 10px;
}

.codex-perfect-list span {
    margin-right: 10px;
}

.codex-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.codex-badge-box {
    background: radial-gradient(circle at top, rgba(173,129,7,0.35), #050505);
    border: 1px solid #ad8107;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 0 20px rgba(173,129,7,0.6);
}

.codex-badge-box p {
    color: #f0e6c4;
    margin-bottom: 8px;
}

.codex-badge-box h3 {
    color: #f8d77b;
    margin-bottom: 15px;
}

/* FINAL CTA */
.codex-final-cta {
    padding: 50px 0 60px;
    background: linear-gradient(to right, #000, #2b200d, #000);
    text-align: center;
}

.codex-final-cta h2 {
    color: #f8d77b;
    margin-bottom: 10px;
}

.codex-final-cta p {
    color: #e0c27a;
    margin-bottom: 20px;
}

.codex-final-btn {
    margin-top: 10px;
}
/* ============================
   CONTACT PAGE THEME UPGRADE
   ============================ */

/* HERO */
.contact-hero {
    position: relative;
    padding: 120px 0 110px;
    background-image: url('assets/img/codex-hero-bg.jpg'); /* use your gold energy background */
    background-size: cover;
    background-position: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(173,129,7,0.35), rgba(0,0,0,0.92));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    color: #f8d77b;
    font-size: 3em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-hero-subtitle {
    color: #e0c27a;
    font-size: 1.3em;
}

/* CONTACT CARD */
.contact-section {
    padding: 60px 0 20px;
}

.contact-card {
    background: #0a0a0a;
    border: 1px solid #3b2a12;
    border-radius: 14px;
    padding: 40px 35px;
    box-shadow: 0 0 25px rgba(173,129,7,0.35);
    text-align: center;
}

.contact-icon i {
    color: #ad8107;
    font-size: 4em;
    margin-bottom: 10px;
}

.contact-title {
    color: #f8d77b;
    font-size: 2em;
    margin-bottom: 10px;
}

.contact-description {
    color: #ddd;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.contact-divider {
    border-color: #ad8107;
    opacity: 0.3;
    margin: 25px 0;
}

.contact-subtitle {
    color: #e8c273;
    margin-bottom: 8px;
}

.contact-description-small {
    color: #ccc;
    margin-bottom: 16px;
}

/* BUTTONS */
.contact-btn,
.contact-btn-alt,
.contact-btn-large {
    background-color: #ad8107;
    color: #000;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.25s;
}

.contact-btn:hover,
.contact-btn-alt:hover,
.contact-btn-large:hover {
    background-color: #fff;
    color: #000;
}

.contact-btn-alt {
    border: 1px solid #ad8107;
    background: transparent;
    color: #ad8107;
}

.contact-btn-alt:hover {
    background: #ad8107;
    color: #000;
}

.contact-btn-large {
    padding: 14px 36px;
}

/* BENEFITS LIST */
.contact-benefits {
    padding: 40px 0 60px;
}

.contact-benefits-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.3em;
    color: #eee;
}

.contact-benefits-list li {
    margin-bottom: 12px;
}

.contact-benefits-list i {
    color: #ad8107;
    margin-right: 8px;
}

/* FINAL CTA */
.contact-final-cta {
    padding: 60px 0;
    background: linear-gradient(to right, #000, #2b200d, #000);
}

.contact-final-cta h2 {
    color: #f8d77b;
    margin-bottom: 10px;
}

.contact-final-cta p {
    color: #e0c27a;
    margin-bottom: 20px;
}
.contact-section .row {
    display: flex;
    justify-content: center;
}
/* ============================================
   SUBTLE GLOWING ANIMATED BORDER (BLACK CARD)
   ============================================ */

.contact-card {
    position: relative;
    z-index: 1;
    background: #000; /* ensure interior stays black */
    border-radius: 14px;
    padding: 40px 35px;
    overflow: hidden;
}

/* Thin animated glowing ring */
.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px; /* thin border */
    background: linear-gradient(
        140deg,
        rgba(173,129,7,0.4),
        rgba(255,230,150,0.7),
        rgba(173,129,7,0.4)
    );
    background-size: 300% 300%;
    animation: softGlow 6s ease-in-out infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Smooth subtle movement */
@keyframes softGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.35;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.75;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.35;
    }
}
/* ============================================
   SOFT PULSING HALO BEHIND CONTACT CARD
   ============================================ */

.contact-card {
    position: relative;
    z-index: 2;
    background: #000;
    border-radius: 14px;
    padding: 40px 35px;
    overflow: hidden;
}

/* HALO GLOW BEHIND THE CARD */
.contact-card::after {
    content: "";
    position: absolute;
    inset: -25px; /* expands beyond the card */
    border-radius: inherit;
    background: radial-gradient(
        circle,
        rgba(173,129,7,0.22),
        rgba(173,129,7,0) 60%
    );
    z-index: -1;
    opacity: 0.45;
    animation: haloPulse 5.5s ease-in-out infinite;
}

@keyframes haloPulse {
    0% {
        transform: scale(0.96);
        opacity: 0.20;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.45;
    }
    100% {
        transform: scale(0.96);
        opacity: 0.20;
    }
}
/* SPARKLE TRAIL WRAPPER */
.spark-trails {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

/* INDIVIDUAL SPARK */
.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,215,115,0.85);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: fall 4s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) translateX(0);
        opacity: 0.7;
    }
    80% {
        opacity: 0.0;
    }
    100% {
        transform: translateY(140px) translateX(8px);
        opacity: 0;
    }
}
.contact-form-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,200,60,0.15);
    border: 1px solid rgba(255,200,60,0.4);
}

.contact-form-container h2 {
    text-align: center;
    color: #ffcc55;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,200,60,0.4);
    background: #111;
    color: #fff;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffdd77;
    box-shadow: 0 0 8px rgba(255,200,60,0.4);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    background: #d4a017;
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #ffcc55;
    box-shadow: 0 0 15px rgba(255,220,120,0.6);
}

/* Fix buttons not clickable inside contact card */
.contact-card {
    position: relative;
}

.mouse-glow,
.spark-trails {
    pointer-events: none !important; /* Prevent blocking button clicks */
}
.contact-btn,
.contact-btn-alt {
    position: relative;
    z-index: 5; /* Ensures buttons stay above decorative layers */
}

/* ------------------------------------------
   HERO SECTION
-------------------------------------------*/
.akashic-hero {
    
    height: 380px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(30,10,0,0.9));
}

.hero-title {
    font-size: 3.2rem;
    color: #ffcc55;
    z-index: 2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-top: 15px;
    color: #ffeebf;
    z-index: 2;
}



/* ------------------------------------------
   CONTENT SECTION
-------------------------------------------*/
.akashic-section {
    padding: 60px 0 60px;
    background: #000;
}

.section-title {
    color: #ffcc55;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.section-text {
    color: #e4e4e4;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Gold Divider */
.gold-divider {
    height: 2px;
    width: 100%;
    margin: 45px 0;
    background: linear-gradient(to right, transparent, #ffcc55, transparent);
}

/* ------------------------------------------
   BENEFIT GRID — ANIMATED CARDS
-------------------------------------------*/
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 25px;
}

.benefit-card {
    padding: 20px;
    border: 1px solid rgba(255,200,60,0.5);
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.75);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
    box-shadow: 0 0 10px rgba(255,200,60,0.10);
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    animation: cardFadeIn 0.8s forwards;
}

.benefit-card:nth-child(1) { animation-delay: .1s; }
.benefit-card:nth-child(2) { animation-delay: .2s; }
.benefit-card:nth-child(3) { animation-delay: .3s; }
.benefit-card:nth-child(4) { animation-delay: .4s; }
.benefit-card:nth-child(5) { animation-delay: .5s; }
.benefit-card:nth-child(6) { animation-delay: .6s; }
.benefit-card:nth-child(7) { animation-delay: .7s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover effect */
.benefit-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 25px rgba(255,200,60,0.4);
    border-color: #ffdd77;
}

/* Icon color */
.benefit-card i {
    color: #ffcc55;
    font-size: 1.3rem;
}


/* ------------------------------------------
   CTA BUTTON
-------------------------------------------*/
.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    font-size: 1.3rem;
    background: #ffcc55;
    color: #000;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.cta-button:hover {
    background: #ffeeb5;
    box-shadow: 0 0 18px rgba(255,220,160,0.6);
}

/* Section animation */
.section-block {
    margin-bottom: 40px;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.75), 
        rgba(0,0,0,0.85) 60%, 
        rgba(0,0,0,0.95)
    );
}

.hero-title {
    z-index: 2;
    font-size: 3.2rem;
    color: #ffcc55;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(255,200,80,0.5);
}

.hero-subtitle {
    z-index: 2;
    font-size: 1.4rem;
    margin-top: 15px;
    color: #ffeebf;
    text-shadow: 0 0 10px rgba(255,200,80,0.35);
}
/* AKASHIC HERO BANNER FIX */
.akashic-hero {
    position: relative;
    width: 100%;
    height: 480px;
    background-image: url("assets/img/akashiclg.jpg"); /* <-- Make sure the file is here */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px 20px;
}
.hero-base {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.akashic-hero {
    background-image: url('../img/akashiclg.jpg');
}

.energy-hero {
    background-image: url('../img/energy.jpg');
}

.angel-hero {
    background-image: url('../img/angel.jpeg');
}


/* Energy hero reuses akashic hero layout, only changes background image */
.energy-hero {
    position: relative;
    width: 100%;
    height: 480px;
    background-image: url("assets/img/energy.jpg"); /* <-- Make sure the file is here */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px 20px;
}

/* Dark overlay to make text readable */
.akashic-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}

/* Title styling */
.hero-title {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 700;
    color: #f4d57a;
    text-shadow: 0 0 12px rgba(255, 215, 100, 0.8);
    margin-bottom: 10px;
}

/* Subtitle styling */
.hero-subtitle {
    position: relative;
    z-index: 2;
    font-size: 20px;
    color: #fff;
    opacity: 0.9;
}
.akashic-hero {
    background-color: transparent !important;
}


/* OVERRIDE ANY GLOBAL BACKGROUND RULE */
.akashic-hero * {
    background: none !important;
}


/* Title styling */
.hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: #F9D76E; /* gold but slightly darker */
    text-shadow: 0 0 10px rgba(0,0,0,0.7), 
                 0 0 20px rgba(0,0,0,0.4); /* improves contrast */
    margin-bottom: 10px;
}

/* Subtitle styling */
.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff; /* switch to white */
    text-shadow: 0 0 12px rgba(0,0,0,0.7); /* soft shadow for readability */
    max-width: 800px;
    margin: 0 auto;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 2;

    /* Black outline for readability */
    text-shadow:
        -1px -1px 2px #000,
         1px -1px 2px #000,
        -1px  1px 2px #000,
         1px  1px 2px #000;
}
/* SERVICE CARDS */
.services-grid {
    margin-top: 40px;
}

.service-card {
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.2);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.service-title {
    text-align: center;
    padding: 20px 0 5px;
    font-size: 22px;
    color: #f9d67b;
    text-transform: uppercase;
    font-weight: 600;
}

.service-text {
    padding: 0 20px 30px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    opacity: 0.9;
}

.service-button {
    display: block;
    text-align: center;
    background-color: #111;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding: 12px 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f9d67b;
    transition: all .3s ease;
}

.service-button:hover {
    background-color: #333;
    color: white;
}
.codex-reading-order .faq-q {
    background: radial-gradient(
        circle at center,
        rgba(173,129,7,0.08),
        rgba(0,0,0,0.95)
    );
    border: 1px solid rgba(173,129,7,0.6);
    color: #ad8107;
}

.codex-reading-order .faq-a {
    background-color: #000;
    border-left: 2px solid #ad8107;
    border-right: 2px solid #ad8107;
}

/* =========================================
   Amazon Adaptive Badge
   ========================================= */

.amazon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid rgba(173,129,7,0.7);
    color: #ad8107;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    background: radial-gradient(
        circle at center,
        rgba(173,129,7,0.15),
        rgba(0,0,0,0.95)
    );
    transition: all 0.35s ease;
}

.amazon-badge:hover {
    box-shadow: 0 0 25px rgba(173,129,7,0.5);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffd978;
}

.amazon-badge span::after {
    content: " →";
}
/* ================================
   FIX: Enable interaction inside
   newsletter form (CRITICAL)
   ================================ */

/* Kill pointer capture from card overlays */
.contact-card::before,
.contact-card::after,
.contact-section::before,
.contact-section::after {
  pointer-events: none !important;
}

/* Force newsletter form above all layers */
#nlForm {
  position: relative;
  z-index: 50;
}

/* Explicitly re-enable input & button */
#nlForm input,
#nlForm button {
  pointer-events: auto !important;
  position: relative;
  z-index: 60;
}
/* =========================================
   FINAL FIX: Newsletter button click issue
   ========================================= */

/* Divider must never capture clicks */
.contact-divider {
  pointer-events: none !important;
}

/* Ensure newsletter form is fully interactive */
#nlForm {
  pointer-events: auto !important;
}

/* Force button to topmost clickable layer */
#nlForm button {
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}
/* ================================
   Newsletter Input Styling
   ================================ */

#nlForm input[type="email"] {
  width: 260px;              /* match button width */
  height: 39px;              /* match button height */
  padding: 0 14px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  box-sizing: border-box;
}
