/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
/*     background-color: #fdf8f2; */
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADER */
.site-header {
    background-color: #159B5A;
    padding: 10px 0;
    color: #fff;
/* 	overflow:hidden!important; */
	
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header .logo a {
    color: #feb640;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}
.logo img {
    max-width: 120px;
    height: auto;
}

.main-nav {
    float:left; 
}

.nav-menu {
    list-style: none;
    display: flex;

	gap:5px!important;
}



.nav-menu li a {
    color: #fff;
	font-size:11px!important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
	
	
}

.nav-menu li a:hover {
    color: #feb640;
}

/* HERO SECTION */
.hero {
	 background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://fintrackonline.com/wp-content/uploads/2025/10/the-only-reliable-trend-in-the-stock-market-right-now-is-wilder-swings.webp?_t=1763357027')
                no-repeat center center/cover;
/*     background-image: url('https://image.cnbcfm.com/api/v1/image/106963872-1634825109007-gettyimages-1347891665-_e6w4500_2021102133201285.jpeg?v=1641228119&w=1920&h=1080');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    background-color: #000;
    color: #fff;
    min-height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
	text-align:left/* stronger text shadow for readability */
}

.hero p {
    font-size: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.content {
    max-width: 60%;
	width:100%;
}

/* SECTION */
section.currency-rates {
    padding-top: 60px !important;
	padding-bottom:60px !important;
	padding-left:20px !important;
	padding-right:20px !important;
}

section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #000; /* headings */
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.card{ 
	background: #ededed;
	border-radius: 12px;
	box-shadow: 0px 6px 12px rgba(0,0,0,0.15); 
	padding: 30px 20px; 
	text-align:center; 
	min-width: 220px; 
	flex: 1 1 calc(33.333% - 40px);
	transition: transform 0.3s, box-shadow 0.3s;
} 
.card:hover { 
	transform: translateY(-5px);
	box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
} 
.card-icon { 
	font-size: 40px;
	margin-bottom: 15px;
	display: block;
	color: #159B5A!important;
	/* Green icons */
} 
.card h3 { 
	font-size: 20px; 
	font-weight: 600;
	margin-bottom: 10px;
	color: #000; 
} 
.card p, .card a {
	font-size: 18px; 
	font-weight: 500;
	color: #000; 
	text-decoration: none;
} 
.card a:hover { 
	color: #159B5A;
	}
/* Metals Section */
section.metals-prices{
	padding-top:60px;
	padding-bottom:60px;
	padding-left:20px;
	padding-right:20px;
}
section.crypto-prices{
	padding-bottom:60px;
	padding-top:60px;
	padding-left:20px;
	padding-right:20px;
}
section.quick-links{
	padding-bottom:60px;
	padding-top:60px;
	padding-left:20px;
	padding-right:20px;
}
.metals-prices p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}
.credit-banner{
	margin:0px !important;
}
/* FOOTER */
.site-footer {
    background-color: #159B5A;
    color: #fff;
    padding: 50px 0;
/*     text-align: center; */
}

.site-footer p {
    margin-top: 20px;
    font-size: 14px;
}

.footer-widgets {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-widget h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #feb640;
}

.footer-widget {
    max-width: 220px;
}
.footer-logo img {
  max-width: 150px !important;
  height: auto !important;
  display: block !important;
}

/* SINGLE POST */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
	
    background-color: #fff;
	margin-bottom:30px;
}

/* Post Header */
.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.entry-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
	text-align:center;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.entry-meta a {
    color: #159B5A;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-meta a:hover {
    color: #feb640;
}

.posted-on,
.byline,
.cat-links,
.tags-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.posted-on::before {
    content: "📅";
    margin-right: 3px;
}

.byline::before {
    content: "✍️";
    margin-right: 3px;
}

.cat-links::before {
    content: "📁";
    margin-right: 3px;
}

.tags-links::before {
    content: "🏷️";
    margin-right: 3px;
}

/* Featured Image */
.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: 500px!important;
	background-size:cover;
    display: block;
    transition: transform 0.3s;
}

.post-thumbnail:hover img {
    transform: scale(1.02);
}

/* Post Content */
.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #000;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}


.entry-content h2 {
    font-size: 28px;
    padding-left: 0px !important;
}

.entry-content h3 {
    font-size: 24px;
}

.entry-content h4 {
    font-size: 20px;
}

.entry-content p {
    margin-bottom: 20px!important;
	display:block !important;
}

.entry-content a {
    color: #159B5A;
    text-decoration: underline;
    transition: color 0.3s;
}

.entry-content a:hover {
    color: #feb640;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content blockquote {
    background: #f9f9f9;
    border-left: 5px solid #159B5A;
    margin: 30px 0;
    padding: 20px 25px;
    font-style: italic;
    color: #555;
    border-radius: 5px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
/*     padding-left: 30px; */
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content code {
    background: #f4f4f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: #c7254e;
}

.entry-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}
.description {
  display: block !important;
  visibility: visible !important;
  color: #333;
  padding: 20px;
  background: #fff;
}

}
.description h1 {
    padding-bottom: 20px;
    font-size: 28px;
    font-style: italic;
    font-weight: 800;
}
h3.content-d {
    font-weight: 400 !important;
    font-style: italic;
}

/* Entry Footer */
.entry-footer {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    margin-bottom: 40px;
}

.entry-footer span {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
/* 	display:none !important; */
}

.entry-footer a {
    color: #159B5A;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-footer a:hover {
    color: #feb640;
}

/* Post Navigation */
.post-navigation {
    margin: 50px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
}

.nav-previous a:hover,
.nav-next a:hover {
    border-color: #159B5A;
    box-shadow: 0 4px 15px rgba(21, 155, 90, 0.1);
    transform: translateY(-2px);
}

.nav-subtitle {
    display: block;
    font-size: 12px;
    color: #159B5A;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.nav-next {
    text-align: right;
}

/* Comments Section */
.comments-area {
    margin-top: 50px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
}

.comments-title {
    font-size: 28px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #159B5A;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-metadata {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: #159B5A;
    text-decoration: none;
}

.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.reply {
    margin-top: 15px;
}

.reply a {
    display: inline-block;
    padding: 8px 20px;
    background: #159B5A;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.reply a:hover {
    background: #feb640;
    color: #000;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.comment-reply-title {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #159B5A;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit input[type="submit"] {
    background: #159B5A;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit input[type="submit"]:hover {
    background: #feb640;
    color: #000;
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .site-main {
        padding: 40px 15px;
    }

    .entry-title {
        font-size: 28px;
    }

    .entry-content {
        font-size: 16px;
    }

    .entry-content h2 {
        font-size: 24px;
    }

    .entry-content h3 {
        font-size: 20px;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-next {
        text-align: left;
    }

    .comments-area {
        padding: 25px 20px;
    }

    .comment {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .site-main {
        padding: 30px 15px;
    }

    .entry-title {
        font-size: 24px;
    }

    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }

    .entry-content {
        font-size: 15px;
    }

    .entry-content h2 {
        font-size: 22px;
    }

    .comments-title {
        font-size: 24px;
    }

    .comment-respond {
        padding: 20px 15px;
    }
}
/* SINGLE POST */

.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
/*     background-color: #fff; */
}

/* Post Header */
.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.entry-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.entry-meta a {
    color: #159B5A;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-meta a:hover {
    color: #feb640;
}

.posted-on,
.byline,
.cat-links,
.tags-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.posted-on::before {
    content: "📅";
    margin-right: 3px;
}

.byline::before {
    content: "✍️";
    margin-right: 3px;
}

.cat-links::before {
    content: "📁";
    margin-right: 3px;
}

.tags-links::before {
    content: "🏷️";
    margin-right: 3px;
}

/* Featured Image */
.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.post-thumbnail:hover img {
    transform: scale(1.02);
}

/* Post Content */


.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #000;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* .entry-content h2 {
    font-size: 28px;
    border-left: 4px solid #159B5A;
    padding-left: 15px;
} */

.entry-content h3 {
    font-size: 24px;
}

.entry-content h4 {
    font-size: 20px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content a {
    color: #159B5A;
    text-decoration: underline;
    transition: color 0.3s;
}

.entry-content a:hover {
    color: #feb640;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content blockquote {
    background: #f9f9f9;
    border-left: 5px solid #159B5A;
    margin: 30px 0;
    padding: 20px 25px;
    font-style: italic;
    color: #555;
    border-radius: 5px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
/*     padding-left: 30px; */
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content code {
    background: #f4f4f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: #c7254e;
}

.entry-content pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Entry Footer */
.entry-footer {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    margin-bottom: 40px;
}

.entry-footer span {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.entry-footer a {
    color: #159B5A;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-footer a:hover {
    color: #feb640;
}

/* Post Navigation */
.post-navigation {
    margin: 50px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
}

.nav-previous a:hover,
.nav-next a:hover {
    border-color: #159B5A;
    box-shadow: 0 4px 15px rgba(21, 155, 90, 0.1);
    transform: translateY(-2px);
}

.nav-subtitle {
    display: block;
    font-size: 12px;
    color: #159B5A;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.nav-next {
    text-align: right;
}

/* Comments Section */
.comments-area {
    margin-top: 50px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
}

.comments-title {
    font-size: 28px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #159B5A;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-metadata {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: #159B5A;
    text-decoration: none;
}

.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.reply {
    margin-top: 15px;
}

.reply a {
    display: inline-block;
    padding: 8px 20px;
    background: #159B5A;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.reply a:hover {
    background: #feb640;
    color: #000;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.comment-reply-title {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #159B5A;
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit input[type="submit"] , button.wp-block-search__button.wp-element-button{
    background: #159B5A;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit input[type="submit"]:hover, button.wp-block-search__button.wp-element-button:hover {
    background: #feb640;
    color: #000;
    transform: translateY(-2px);
}
/* SIDEBAR */

.widget-area {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  color: #333;
	max-width:1200px;
	margin:20px auto;
	display:none;
}
/* aside#secondary{
	display:none;
} */
section.standard-page {
    padding: 50px 0px;
}
/* Each Widget Box */
.widget {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Widget Titles */
.widget-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  position: relative;
}

.widget-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #007bff;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

/* Sidebar Links */
.widget a {
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.widget a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Search Widget */
.widget_search input[type="search"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  font-size: 15px;
  transition: 0.3s ease;
}

.widget_search input[type="search"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  outline: none;
}

.widget_search input[type="submit"] {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.widget_search input[type="submit"]:hover {
  background-color: #0056b3;
}

/* List Widgets (Categories, Archives, etc.) */
.widget ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.widget ul li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  font-size: 15px;
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  color: #333;
  transition: 0.3s ease;
}

.widget ul li a:hover {
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .widget-area {
    margin-top: 30px;
    padding: 20px;
  }
}



/* RESPONSIVE */

@media (max-width: 1024px) {
    .content-area-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .content-area-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 15px;
    }

    .widget-area {
        position: static;
        margin-top: 40px;
    }

    .site-main {
        padding: 40px 0;
    }

    .entry-title {
        font-size: 28px;
    }

    .entry-content {
        font-size: 16px;
    }

    .entry-content h2 {
        font-size: 24px;
		
    }

    .entry-content h3 {
        font-size: 20px;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-next {
        text-align: left;
    }

    .comments-area {
        padding: 25px 20px;
    }

    .comment {
        padding: 20px;
    }

    .widget {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .content-area-wrapper {
        padding: 30px 15px;
    }

    .entry-title {
        font-size: 24px;
    }

    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }

    .entry-content {
        font-size: 15px;
    }

    .entry-content h2 {
        font-size: 22px;
    }

    .comments-title {
        font-size: 24px;
    }

    .comment-respond {
        padding: 20px 15px;
    }

    .widget {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .widget-title {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu li {
        margin: 12px 0;
    }

    .card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 600px) {
    .card {
        flex: 1 1 100%;
    }
}
.hero-banner {
  padding: 80px 0;
	 background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('https://wallpapers.com/images/hd/illuminating-digital-crypto-bitcoin-logo-17fdp36kk7ilww2h.jpg') 
                no-repeat center center/cover;
/*   background: url('https://wallpapers.com/images/hd/illuminating-digital-crypto-bitcoin-logo-17fdp36kk7ilww2h.jpg') no-repeat center center / cover; */
  font-family: 'Poppins', sans-serif;
	background-color: #000;
  color: #fff; /* makes text visible on dark image */
  position: relative;
}


.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.hero-text {
  max-width: 550px;
	width:100%;
}

.hero-text h3 {
  font-size: 22px;
  color: #fff;
	font-weight:600;
  margin-bottom: 10px;
}

.hero-text h1 span {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.hero-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 15px 0;
}

.hero-text p {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #ffce00;
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-image img {
    max-width: 350px;
  }
}
.latest-news {
  padding-top:60px;
	padding-bottom:60px;
	padding-left:20px;
	padding-right:60px;
  background: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.latest-news h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 10px;
}

.latest-news h3 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

.news-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.news-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.news-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.news-content h4 a {
  color: #000;
  text-decoration: none;
}

.news-content .meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.news-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.btn {
  background: #ffce00;
  color: #000;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .news-row {
    flex-direction: column;
    align-items: center;
  }
}
/* FOOTER */

.site-footer {
  background-color: #0c0c0c;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-column {
  flex: 1 1 30% ;
  min-width: 280px;
}

.footer-logo h2 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.footer-logo .yellow {
  color: #ffcc00;
}

.footer-about p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
	margin-top:20px;
}

.footer-social a:hover {
  color: #ffcc00;
}

.footer-disclaimer {
  margin-top: 25px;
}

.footer-disclaimer h4 {
  color: #ffcc00;
  margin-bottom: 8px;
}

.footer-posts h3,
.footer-links h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-posts ul li {
  margin-bottom: 12px;
}

.footer-posts ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-posts ul li a i {
  font-size: 6px;
  color: #ffcc00;
  margin-right: 8px;
}

.footer-date {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-left: 15px;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

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

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu li a:hover {
  color: #ffcc00;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding-top: 15px;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
/*     text-align: center; */
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social a {
    margin: 0 8px;
  }
}
@media(max-width:1024px){
.footer-container {
    gap: 30px;
    padding-left: 20px;
}
	
	.footer-about p{
		width:60%;
	}
}
/* Contact Page Styles */
.contact-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 0;
}

.contact-hero {
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 48px;
    color: #000;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 18px;
    color: #333;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 80px 20px 80px;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffcc00 0%, #ff9900 100%);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
    border-color: #ffcc00;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p,
.info-card a {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.info-card a:hover {
    color: #ffcc00;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffcc00;
    color: #000;
    border-color: #ffcc00;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h2 {
    color: #000;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-form-wrapper .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

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

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffcc00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
}

/* Map Section */
.contact-map {
    margin-top: 60px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.2);
}

/* Why Choose Us Section */
.why-choose {
    background: #1a1a1a;
    padding: 60px 0;
    margin-top: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.why-card {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #ffcc00;
    transform: translateY(-5px);
}

.why-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h3 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
	.content {
    max-width: 100%;
    width: 100%;
}
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-wrapper {
        padding: 0 15px 60px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
	.content {
    max-width: 100%;
    width: 100%;
}
    .contact-hero h1 {
        font-size: 28px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 24px;
    }
	.contact-wrapper{
		padding-top:20px !important;
	}
}
@media (max-width: 820px){
	.content {
    max-width: 100%;
    width: 100%;
}
}
/* CONTACT FORM 7 */
.wpcf7 form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.wpcf7 form p {
  margin-bottom: 20px;
}

.wpcf7 label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  outline: none;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  background-color: #ffcc00;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  font-weight: 600;
  width: 100%;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #ffcc00;
  transform: translateY(-2px);
}

/* Validation & Success Messages */
.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 5px;
}

.wpcf7-response-output {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #fce4e4;
  color: #d93025;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: #e6f9ed;
  color: #2e7d32;
}

/* Responsive */
@media (max-width: 600px) {
  .wpcf7 form {
    padding: 20px;
  }
  .wpcf7 input[type="submit"] {
    padding: 12px 20px;
  }
}


/* Social Icons */
.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  border: 1px solid #ffcc00;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #ffcc00;
  color: #000;
}

/* Map Section */
.contact-map iframe {
  display: block;
  width: 100%;
  border: none;
	border-radius:0px !important;
  
}
.contact-map section {
    padding-top: 10px !important;
	padding-bottom:10px !important;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* RESPONSIVE */

/* Large Desktop (max-width: 1200px) */
/* Force mobile viewport */
@viewport {
    width: device-width;
    zoom: 1.0;
}
@media (max-width: 1200px) {
    .card {
        flex: 1 1 calc(25% - 30px);
    }
    
    .news-card {
        width: 320px;
    }
}

/* Tablets & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .card {
        flex: 1 1 calc(33.333% - 30px);
        min-width: 200px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-image img {
		
        max-width: 400px;
    }
    
    .news-card {
        width: 300px;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding: 50px 0;
        min-height: 350px;
    }
    
    .hero h1 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 18px;
        text-align: center;
    }
    
    /* General Sections */
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    /* Cards - 2 per row on tablets */
    .card-row {
        gap: 20px;
	}
    
    .card {
        flex: 1 1 calc(50% - 20px);
        min-width: auto;
        max-width: calc(50% - 10px);
    }
    
    /* Hero Banner Section */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    /* News Section */
    .news-row {
        gap: 25px;
    }
    
    .news-card {
        width: 100%;
      max-width: 450px; 
    }
    
    /* Footer */
    .footer-container {
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 100%;
        min-width: 100%;
    }
}
/* IPAD PRO RESPONSIVE */
@media (max-width: 1024px),(min-width:auto) {
    /* Hero Section */
    .hero {
        padding: 50px 0;
/*         min-height: 350px; */
    }
    
    .hero h1 {
        font-size: 32px;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 18px;
        text-align: center;
    }
    
    /* General Sections */
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    /* Cards - 2 per row on tablets */
    .card-row {
        gap: 20px;
		display:flex;
		flex-direction:column;
		}
    
    .card {
        flex: 1 1 calc(50% - 20px) !important;
        min-width: auto;
/*         max-width: calc(50% - 10px); */
		padding:60px;
		
		
    }
    
    /* Hero Banner Section */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    /* News Section */
    .news-row {
        gap: 10px;
    }
    
    .news-card {
        width: 100%;
        max-width: 450px;
    }
    
    /* Footer */
    .footer-container {
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* MOBILE DEVICES (max-width: 576px) - CRITICAL SECTION */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* General Sections */
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Cards - 1 per row on mobile - FULL WIDTH */
    .card-row {
        gap: 15px;
        flex-direction: column;
    }
    
    .card {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 25px 20px;
        margin: 0;
    }
    
    .card-icon {
        font-size: 35px;
    }
    
    .card h3 {
        font-size: 18px;
    }
    
    .card p, .card a {
        font-size: 16px;
    }
    
    /* Hero Banner Section */
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .hero-text h3 {
        font-size: 18px;
    }
    
    .hero-text h1 span {
        font-size: 28px;
    }
    
    .hero-text h4 {
        font-size: 16px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    /* Latest News Section */
    .latest-news {
        padding: 40px 0;
    }
    
    .latest-news h2 {
        font-size: 32px;
    }
    
    .latest-news h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .news-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .news-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .news-image img {
        height: 200px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-content h4 {
        font-size: 18px;
    }
    
    .news-content p {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-logo h2 {
        font-size: 24px;
    }
    
    .footer-about p,
    .footer-disclaimer p {
        font-size: 13px;
    }
    
    .footer-posts h3,
    .footer-links h3 {
        font-size: 18px;
    }
    
    .footer-social a {
        margin: 0 5px 10px 5px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding: 15px;
    }
}

/* Extra Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    section {
        padding: 30px 0;
    }
    
    section h2 {
        font-size: 20px;
    }
    
    .card {
        padding: 20px 15px;
    }
    
    .card-icon {
        font-size: 30px;
    }
    
    .card h3 {
        font-size: 16px;
    }
    
    .card p, .card a {
        font-size: 14px;
    }
    
    .hero-text h1 span {
        font-size: 24px;
    }
    
    .latest-news h2 {
        font-size: 20px;
    }
    
    .latest-news h3 {
        font-size: 24px;
    }
    
    .news-content h4 {
        font-size: 16px;
    }
    
    .footer-logo h2 {
        font-size: 22px;
    }
}

/* ========================
   TESTIMONIAL SLIDER
   ======================== */
.testimonial-section {
  padding: 80px 0;
  background-color: #fdf8f2;
  text-align: center;
}

.testimonial-section .section-title {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #159B5A;
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  margin: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #159B5A;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

/* Slick Dots */
.slick-dots li button:before {
  color: #159B5A;
  font-size: 12px;
}

.slick-dots li.slick-active button:before {
  color: #ffce00;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author h4 {
    font-size: 16px;
  }

  .testimonial-author span {
    font-size: 13px;
  }
}
.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-text {
    color: #000;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #000;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #fff;
}

/* Main Header Styles */
.site-header {
    background-color: #000;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
/*     margin: 0 40px; */
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current-menu-ancestor > a,
.nav-menu li.current-page-ancestor > a {
    color: #f5a623;
}

/* Dropdown Menu Styles */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 220px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 1000;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    display: block;
    width: 100%;
}

.nav-menu .sub-menu a {
    padding: 12px 20px;
    font-size: 13px;
    text-transform: capitalize;
}

.nav-menu .sub-menu a:hover {
    background-color: #2a2a2a;
    color: #f5a623;
}

/* Third level dropdown */
.nav-menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
    margin-left: 0;
}

/* Menu item with children indicator */
.nav-menu .menu-item-has-children > a::after,
.nav-menu li:has(.sub-menu) > a::after {
    content: '\25BC';
    font-size: 8px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s;
}

.nav-menu .sub-menu .menu-item-has-children > a::after {
    content: '\25B6';
    float: right;
    margin-left: 10px;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-widgets {
    background-color: #f5a623;
    color: #000;
}

.btn-widgets:hover {
    background-color: #e09515;
}

.btn-earn {
    background-color: #2c2c2c;
    color: #fff;
    border: 1px solid #444;
}

.btn-earn:hover {
    background-color: #3c3c3c;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex; 
    flex-direction: column;
    background: transparent;
    border: none;
	color:white;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Styles */
/* @media (max-width: 1024px) {
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .main-nav {
        margin: 20px 0 0 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
} */
	

@media (max-width: 820px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
         display: none;
        order: 4;
        flex-basis: 100%;
        margin: 20px 0 0 0;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        text-align: left;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #333;
    }
    
    .nav-menu a {
        padding: 15px 10px;
    }
    
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #0a0a0a;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .nav-menu li:hover > .sub-menu {
        display: block;
    }
    
    .header-buttons {
        order: 3;
        flex-direction: row;
        width: auto;
        margin-top: 10px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
	.top-bar-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-link {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.top-link:hover {
    color: #fff;
}

.top-link i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .top-bar-links {
        display: none;
    }
	
}
	/* Responsive Styles for iPad Air (max-width: 820px) */
@media (max-width: 820px) {
    /* Adjust container padding */
    .site-header .container {
        padding: 0 20px;
    }

    /* Header layout */
    .header-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* Logo adjustments */
    .logo img {
        max-height: 45px;
        width: auto;
    }

    /* Navigation menu adjustments */
    .main-nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
        background-color: #111;
        border-radius: 8px;
        padding: 10px 0;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid #222;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        color: #fff;
        display: block;
        padding: 15px 20px;
        text-align: left;
        font-size: 14px;
    }

    .nav-menu a:hover {
        background-color: #1a1a1a;
    }

    /* Dropdown fix */
    .nav-menu .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        background: #0f0f0f;
        padding-left: 15px;
        border-left: 3px solid #f5a623;
    }

    .nav-menu li:hover > .sub-menu {
        display: block;
    }

    /* Buttons alignment */
    .header-buttons {
        order: 3;
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* Mobile toggle icon */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        background-color: #fff;
        margin: 4px 0;
        transition: 0.3s;
    }

    /* Top bar adjustments */
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar .social-icons {
        gap: 10px;
    }

    .top-bar-links {
        display: none;
    }
	
}
.card-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    padding: 20px !important;
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) and (min-width: 768px) {
    .card-row {
        flex-wrap: wrap;
        justify-content: left;
    }
    
    .card-row > * {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

/* Mobile view - 1 column (optional) */
@media (max-width: 767px) {
    .card-row {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .card-row > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.page-id-73 p.has-text-align-left {
    padding-bottom: 20px;

}
.page-id-73 h3.wp-block-heading {
/*     padding-top: 0px; */
	font-size:24px;
/* 	padding-bottom:px; */
}
.page-id-73 ul.wp-block-list {
/*     padding-left: 20px; */
	padding-bottom:10px;
}
.page-id-73 p {
    padding: 10px 0px;
}

/* === Remove Screen Reader Blog Title === */
/* h1.page-title.screen-reader-text {
    display: none !important;
} */

/* === Blog / Archive Grid Layout === */
.blog .site-main,
.archive .site-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 40px;
  background: #f9f9f9;
}

/* Page title remove */
.blog .page-title,
.blog h1.entry-title:first-of-type {
  display: none !important;
}

/* === Blog Card === */
.blog .post,
.archive .post {
  background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
	display:flex;
	flex-direction:column;
}

.blog .post:hover,
.archive .post:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* === Force Thumbnail On Top === */
.archive .post-thumbnail,
.blog .post-thumbnail {
  order: -1;
}

/* === Post Thumbnail Image === */
.blog .post .post-thumbnail img,
.archive .post .post-thumbnail img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

/* === Post Title === */
.blog .post .entry-title,
.archive .post .entry-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-left: 15px;
	text-align:left;
}

.blog .post .entry-title a,
.archive .post .entry-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog .post .entry-title a:hover,
.archive .post .entry-title a:hover {
  color: #0073aa;
}

/* === Post Meta === */
.blog .post .entry-meta,
.archive .post .entry-meta {
  font-size: 14px;
  color: #666;
  margin-left: 15px;
}

/* === Hide Excerpt + Footer === */
.blog .post .entry-content,
.archive .post .entry-content,
.blog .post .entry-footer,
.archive .post .entry-footer,
.blog .post .byline,
.archive .post .byline {
  display: none !important;
}

/* === Limit to 6 Posts (optional) === */
.blog .post:nth-of-type(n+7),
.archive .post:nth-of-type(n+7) {
  display: none;
}

/* === Fix Grid Extra Elements === */
body.archive .site-main > *:not(article),
body.blog .site-main > *:not(article) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .blog .site-main,
  .archive .site-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog .site-main,
  .archive .site-main {
    grid-template-columns: 1fr;
  }
}
/* BLOG TITLE ABOVE GRID */
.blog .site-main::before,
.archive .site-main::before {
  content: "BLOGS";
  font-size: 38px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
  
  /* ✅ KEY: make it full row */
  grid-column: 1 / -1;
  display: block;
}
.blog-button-wrapper {
    text-align: center;
    margin: 40px 0;
}

.blog-view-btn{
	
    display: inline-block;
    background: #ffce00;
    color: #000;
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
/* === CSS-Only Read More Button === */
.blog .post::after,
.archive .post::before {
  content: "Read More";
  display: inline-block;
  background: #ffce00;
  color: #000;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
	/*   margin: 20px auto 30px auto; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog .post:hover::after,
.archive .post:hover::after {
  background: #fff;
  color: #ffce00;
  border: 1px solid #ffce00;
}


.blog-view-btn:hover {
    background: #fff;
    color:#ffce00 ;
	border: 1px solid #ffce00;
	border-radius:5px;
}
.page-id-158 .entry-footer {
  display: none;
}
.page-id-153 .entry-footer {
  display: none;
}
/* FinTrack Online - About Us Page Styles */

/* Root Variables */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Page Container */
.post-158 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Entry Header */
.entry-header {
  text-align: center;
/*   margin-bottom: 60px; */
  position: relative;
/*   padding-bottom: 30px; */
}

.entry-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
/*   background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); */
  border-radius: 2px;
}

.entry-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -1px;
}

/* Entry Content */
.entry-content {
  background: var(--white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

/* Headings */
.wp-block-heading {
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}

.wp-block-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
}

.wp-block-heading:first-child {
  margin-top: 0;
  font-size: 32px;
  color: ;
  padding-left: 0;
}

.wp-block-heading:first-child::before {
  display: none;
}

h3.wp-block-heading {
  font-size: 1.75rem;
  margin-top: 50px;
}

/* Paragraphs */
.entry-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.entry-content p strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Lists */
.wp-block-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
}

.wp-block-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: transform 0.2s ease;
}

.wp-block-list li:hover {
  transform: translateX(5px);
}

.wp-block-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.wp-block-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Special Sections Styling */
.entry-content > p:first-of-type {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 25px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  margin-bottom: 40px;
}

/* Mission & Vision Section Enhancement */
h3.wp-block-heading:nth-of-type(3) + p {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid var(--accent-color);
}

/* Footer */
.entry-footer {
  text-align: center;
  padding: 20px;
  border-top: 2px solid var(--border-color);
  margin-top: 40px;
}

.entry-footer .edit-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.entry-footer .edit-link a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .entry-title {
    font-size: 2.5rem;
  }
  
  .entry-content {
    padding: 30px 20px;
  }
  
  h3.wp-block-heading {
    font-size: 1.5rem;
  }
  
  .entry-content p,
  .wp-block-list li {
    font-size: 1rem;
  }
  
  .wp-block-list li {
    padding-left: 35px;
  }
}

@media (max-width: 480px) {
  .post-158 {
    padding: 20px 15px;
  }
  
  .entry-title {
    font-size: 2rem;
  }
  
  .entry-content {
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .wp-block-heading {
    padding-left: 15px;
  }
}


	/* Mobile Menu Toggle */
@media (max-width: 820px){
.mobile-menu-toggle {
     display: visible!important; 
    flex-direction: column;
    background: transparent;
    border: none;
	color:white;
    cursor: pointer;
    padding: 5px;
}
}	

	
	
	
	
