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

ul {
list-style-type: none;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}

/* Firefox */
input[type="number"] {
-moz-appearance: textfield;
}

input:focus,
button:focus {
box-shadow: none !important;
}

body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
min-height: 100vh;
}

.nav-container .logo {
display: flex;
}

.nav-container .logo img {
width: 126px;
height: auto;
display: block;
}

/* Search Section Styles */
.search-section {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(15px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
padding: 10px 12px;
position: relative;
z-index: 9;
}

.search-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 30% 65%;
justify-content: space-between;
gap: 2rem;
}

.search-wrapper {
position: relative;
flex: 1;
max-width: 500px;
}

.search-input-container {
position: relative;
background: #f8f9fa;
border-radius: 12px;
border: 1px solid #dee2e6;
transition: all 0.3s ease;
}

.search-input-container:focus-within {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: #6c757d;
z-index: 2;
}

.search-input {
width: 100%;
padding: 12px 15px 12px 50px;
border: none;
background: transparent;
font-size: 16px;
outline: none;
border-radius: 12px;
}

.search-input::placeholder {
color: #6c757d;
}

.search-dropdown {
position: absolute;
top: calc(100% + 10px);
left: 0;
right: 0;
background: white;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
border: 1px solid #e9ecef;
max-height: 500px;
overflow-y: auto;
z-index: 1001;
}

.search-dropdown.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.search-content {
padding: 20px;
}

.mobile-search-wrapper {
position: relative;
}

/* Mobile View: Stack the columns */
@media (max-width: 576px) {
.search-container {
grid-template-columns: 100%;
justify-content: center;
gap: 1rem;
}

.journey-btn {
width: 100%;
text-align: center;
}

.table-header {
padding: 10px !important;
}
}

.close-btn {
position: absolute;
top: 5px;
right: 5px;
font-size: 24px;
background: none;
border: none;
color: #333;
}

.trending-section {
margin-bottom: 15px;
}

.trending-header {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 15px;
color: #495057;
font-weight: 600;
font-size: 14px;
}

.trending-header svg {
color: #ffc107;
}

.category-tabs {
display: flex;
gap: 8px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.category-tab {
padding: 8px 16px;
border: 1px solid #dee2e6;
background: white;
border-radius: 20px;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
color: #6c757d;
}

.category-tab.active,
.category-tab:hover {
background: #667eea;
color: white;
border-color: #667eea;
}

.trending-items {
display: grid;
gap: 8px;
}

.trending-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 16px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}

.trending-item:hover {
background: #f8f9fa;
transform: translateX(5px);
}

.item-name {
color: #333;
font-weight: 500;
}

.item-tag {
background: #e3f2fd;
color: #1976d2;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
}

.auth-buttons {
display: flex;
gap: 12px;
align-items: center;
justify-content: end;
}

.utility-controls {
display: flex;
gap: 12px;
align-items: center;
margin-right: 8px;
}

.utility-controls:last-child {
margin-right: 0;
}

/* Country Selector */
.country-selector {
position: relative;
}

.country-btn {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #f8f9fa;
border: 1px solid #dee2e6;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 14px;
height: 100%;
}

.country-btn:hover {
border-color: #667eea;
background: #fff;
}

.country-code {
font-weight: 600;
color: #495057;
}

.country-dropdown {
position: absolute;
top: calc(100% + 8px);
right: 0;
background: white;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
min-width: 180px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
border: 1px solid #e9ecef;
z-index: 1001;
}

.country-selector:hover .country-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.country-item {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 14px;
}

.country-item:hover {
background: #f8f9fa;
}

.country-item.active {
background: #e3f2fd;
color: #1976d2;
}


.login-btn,
.signup-btn {
padding: 6px 24px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
border: none;
font-size: 14px;
white-space: nowrap;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.login-btn {
background: transparent;
color: #333;
border: 2px solid #dee2e6;
}

.login-btn:hover {
border-color: #667eea;
color: #667eea;
}

.signup-btn {
background-image: linear-gradient(to right,
#159ad5 0%,
#159ad5 51%,
#159ad5 100%);
color: white;
border: 1px solid #159ad5;
}

.navbar {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
padding: 0 12px;
position: sticky;
top: 0;
z-index: 2;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
}

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

.nav-item {
position: relative;
}

.nav-link,
button.nav-link {
display: block !important;
padding: 20px 15px !important;
text-decoration: none !important;
color: #333;
font-weight: 500 !important;
transition: all 0.3s ease !important;
position: relative !important;
}

button.nav-link {
border: unset;
background-color: unset;
font-size: 16px;
line-height: unset;
font-weight: 500 !important;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
cursor: pointer;
width: 100%;
text-align: left;
}

.nav-link:hover {
color: #667eea;
transform: translateY(-2px);
}

.nav-link::after {
content: "";
position: absolute;
bottom: 15px;
left: 20px;
right: 20px;
height: 2px;
background: linear-gradient(45deg, #667eea, #764ba2);
transform: scaleX(0);
transition: transform 0.3s ease;
transform-origin: left;
}

.nav-link:hover::after {
transform: scaleX(1);
}

.dropdown-arrow {
margin-left: 2px;
font-size: 0.8rem;
transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
transform: rotate(180deg);
}

.h-300.dropdown {
height: 300px;
overflow-y: auto;
overflow-x: hidden;
min-width: 300px;
}

.w-300.dropdown {
min-width: 250px;
}

/* Target full scrollbar */
.h-300.dropdown::-webkit-scrollbar {
width: 8px;
height: 5px;
}

/* Background of scrollbar track */
.h-300.dropdown::-webkit-scrollbar-track {
background: #f0f0f0;
/* light grey track */
}

/* Scrollbar thumb (the part you drag) */
.h-300.dropdown::-webkit-scrollbar-thumb {
background-color: #3498db;
border-radius: 10px;
border: 2px solid transparent;
background-clip: content-box;
}

.dropdown {
position: absolute;
top: 100%;
right: 0;
background: white;
min-width: 220px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
border-radius: 8px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
border-top: 3px solid #667eea;
}

.nav-item:hover .dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-item {
position: relative;
}

.dropdown-link,
button.dropdown-link {
display: block;
padding: 12px 20px;
color: #333;
text-decoration: none;
transition: all 0.3s ease;
border-radius: 4px;
margin: 4px;
}

button.dropdown-link {
border: unset;
background-color: unset;
display: flex;
justify-content: space-between;
width: -webkit-fill-available;
text-align: left;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 16px;
cursor: pointer;
}

.dropdown-link:hover {
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
transform: translateX(5px);
}

.sub-dropdown {
position: absolute;
top: 0;
right: 100%;
background: white;
min-width: 200px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
border-radius: 8px;
opacity: 0;
visibility: hidden;
transform: translateX(-10px);
transition: all 0.3s ease;
border-left: 3px solid #764ba2;
}

.dropdown-item:hover .sub-dropdown {
opacity: 1;
visibility: visible;
transform: translateX(0);
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
/* padding: 10px; */
}

.hamburger span {
width: 25px;
height: 3px;
background: #333;
margin: 3px 0;
transition: 0.3s;
border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}

.content {
padding: 40px 20px;
max-width: 1200px;
margin: 0 auto;
color: white;
text-align: center;
}

.content h1 {
font-size: 3rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content p {
font-size: 1.2rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
}

@media screen and (max-width: 991px) {
body.dark-theme :where(.nav-menu) {
background: #2a2a3a !important;
color: #fff;
}

.nav-link::after,
.floating-element {
display: none !important;
}

.search-wrapper,
.commentary-box {
max-width: 100% !important;
}

.container {
padding: 15px;
}

.auth-buttons {
width: 100%;
gap: 5px;
/* justify-content: center; */
}

button.nav-link {
border-bottom: 1px solid #f0f0f0;
display: flex !important;
align-items: center;
justify-content: space-between;
}

.search-dropdown {
left: 0px;
right: 0px;
}

.hamburger {
display: flex;
}

.nav-menu {
position: fixed;
left: -100%;
top: 60px;
flex-direction: column;
background: white;
width: 100%;
/* text-align: center; */
transition: 0.3s;
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
height: calc(100vh - 70px);
overflow-y: auto;
}

.nav-menu.active {
left: 0;
}

.nav-item {
margin: 0;
}

.nav-link {
padding: 15px 20px;
border-bottom: 1px solid #f0f0f0;
}

.dropdown {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background: #f8f9fa;
border-radius: 0;
border-top: none;
border-left: 3px solid #667eea;
display: none;
}

.dropdown.active {
display: block;
}

.sub-dropdown {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background: #e9ecef;
border-left: 3px solid #764ba2;
margin-left: 20px;
display: none;
}

.sub-dropdown.active {
display: block;
}

.dropdown-link {
padding: 10px 30px;
margin: 0;
border-radius: 0;
}

.content h1 {
font-size: 2rem;
}

.content p {
font-size: 1rem;
}
}

@media (max-width: 767px) {
.search-content {
padding: 10px;
}

.category-tabs {
flex-wrap: nowrap;
overflow-x: auto;
}

.item-name {
font-size: 13px;
}

.trending-item {
padding: 8px;
gap: 5px;
}

.search-dropdown {
max-height: 250px;
}

.trending-section {
margin-bottom: 0;
}

.category-section,
.upComing-Sec,
.product-review,
.dailyNesw-sec,
.googleReview,
.faq,
.footer {
padding: 20px 12px !important;
}
}

.marquee-sec {
background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
}

.marquee-container {
border-radius: 8px;
padding: 5px 12px;
overflow: hidden;
position: relative;
max-width: 1200px;
margin: 0 auto;
}

.marquee-wrapper {
display: flex;
align-items: center;
gap: 15px;
}

.trading-icon {
display: flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.2);
padding: 8px 12px;
border-radius: 6px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
flex-shrink: 0;
}

.icon-flash {
width: 20px;
height: 20px;
animation: flash 1.5s infinite;
fill: #fff;
}

@keyframes flash {

0%,
50% {
opacity: 1;
}

25%,
75% {
opacity: 0.3;
}
}

.icon-text {
color: white;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.marquee-content {
flex: 1;
overflow: hidden;
position: relative;
}

.marquee-track {
display: flex;
animation: scroll 130s linear infinite;
gap: 40px;
align-items: center;
width: fit-content;
}

@keyframes scroll {
0% {
transform: translateX(0%);
}

100% {
transform: translateX(-100%);
}
}

.news-item {
display: flex;
align-items: center;
gap: 12px;
white-space: nowrap;
flex-shrink: 0;
}

.news-bullet {
width: 10px;
height: 10px;
background: #fff;
border-radius: 50%;
flex-shrink: 0;
}

.news-bullet.red {
background: #f44336;
}

.news-text {
color: white;
font-size: 14px;
font-weight: 500;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.news-highlight {
color: #ffd700;
font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
.search-input {
font-size: 13px;
}

.trading-icon {
padding: 6px 8px;
}

.icon-text {
font-size: 12px;
}

.news-text {
font-size: 13px;
}
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
animation-play-state: paused;
}


.main-content {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 500px;
}

/* Left Section */
.left-section {
padding: 20px;
background: #f8f9fa;
}

.main-title {
font-size: 40px;
font-weight: bold;
color: #333;
margin-bottom: 15px;
line-height: 1.2;
}

.subtitle {
font-size: 16px;
color: #666;
line-height: 1.5;
margin-bottom: 20px;
}

.trial-info {
background: #e3f2fd;
padding: 15px;
border-radius: 8px;
margin-bottom: 35px;
}

.trial-text {
font-size: 18px;
color: #302e2e;
font-weight: 600;
}

.terms-text {
font-size: 16px;
color: #666;
}

.terms-link {
color: #1976d2;
text-decoration: none;
font-weight: 700;
}

.journey-buttons {
display: flex;
gap: 15px 10px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.journey-btn {
padding: 10px 30px;
background: #1976d2;
color: white;
text-decoration: none;
border-radius: 20px;
font-size: 14px;
transition: background 0.3s;
}

.journey-btn:hover {
background: #1565c0;
}

/* Right Section */
.right-section {
padding: 20px;
background: white;
display: flex;
flex-direction: column;
}

.video-container {
width: 100%;
background: #000;
border-radius: 8px;
overflow: hidden;
margin-bottom: 20px;
}

.video-wrapper {
position: relative;
padding-bottom: 56.25%;
/* 16:9 aspect ratio */
height: 0;
}

.video-player {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}

/* Form Section */
.form-section {
background: #1976d2;
padding: 20px;
border-radius: 8px;
color: white;
/* margin-top: 20px; */
}

.form-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 10px;
margin-bottom: 15px;
}

.form-input {
padding: 12px;
border: none;
border-radius: 4px;
font-size: 14px;
}

.form-input::placeholder {
color: #999;
}

.math-section {
display: flex;
align-items: center;
gap: 10px;
/* margin-bottom: 15px; */
font-size: 16px;
font-weight: bold;
}

.math-input {
width: 60px;
text-align: center;
padding: 8px;
border: none;
border-radius: 4px;
font-size: 16px;
font-weight: bold;
}

.submit-btn {
width: 100%;
padding: 12px;
background: #26c6da;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
margin-top: 15px;
}

.submit-btn:hover {
background: #00bcd4;
}

.inputError {
color: rgb(247 0 46);
font-weight: 600;
}

@media (max-width: 1024px) {
.main-content {
grid-template-columns: 1fr;
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
.left-section {
padding: 20px;
}

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

.brand-name {
font-size: 24px;
}

.form-row {
grid-template-columns: 1fr;
gap: 10px;
}

.journey-btn {
display: inline-block;
}

.contact-item {
font-size: 18px;
}

.phone {
font-size: 20px;
}
}

@media (max-width: 480px) {
.container {
margin: 0 10px;
}

.left-section {
padding: 15px;
}

.right-section {
padding: 15px;
}

.main-title {
font-size: 20px;
}

.brand-name {
font-size: 20px;
}
}

.homeBanner {
background-color: #f8f9fa;
padding: 30px 12px;
}

.homeBanner .container {
box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
background: rgb(255, 255, 255);
padding: 0;
}

/* product-review-section */

/* .product-review{
background-image: linear-gradient(to right, #159ad5 0%, #4c9bbfba 51%, #159ad5 100%);
} */

.product-review .container {
max-width: 1200px;
margin: 0 auto;
padding: 0px;
box-shadow: none !important;
background: none !important;
}

.product-review .header {
text-align: center;
margin-bottom: 20px;
color: white;
border-bottom: 1px solid #fff;
padding-bottom: 20px;
}

.product-review .header .pr-do-not-use-ffba-a-8wanz6 {
width: 350px;
margin-bottom: 10px;
}

.product-review .header h1 {
font-size: clamp(2rem, 4vw, 3.5rem);
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-review .rating-summary {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 10px;
flex-wrap: wrap;
}

.product-review .stars {
display: flex;
gap: 5px;
}

.product-review a {
text-decoration: none;
}

.product-review .star {
color: #ffd700;
font-size: 28px;
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.product-review .rating-text {
font-size: 1.2rem;
font-weight: 600;
}

.product-review .review-count {
background: rgba(255, 255, 255, 0.2);
padding: 8px 16px;
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-review .testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-top: 40px;
}

.product-review .testimonial-card {
background: rgba(255, 255, 255, 0.98);
border-radius: 5px;
overflow: hidden;
/* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
position: relative;
}

.product-review .testimonial-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.075);
}

.product-review .video-container {
position: relative;
width: 100%;
height: 220px;
overflow: hidden;
border-radius: 8px 8px 0 0;
margin-bottom: 0;
}

.product-review .video-thumbnail {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
cursor: pointer;
transition: all 0.3s ease;
}

.product-review .video-thumbnail .thumbnail-img {
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
}

.product-review .video-thumbnail:hover {
transform: scale(1.02);
}

.product-review .video-thumbnail::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.4);
z-index: 1;
}

.product-review .play-button {
width: 55px;
height: 55px;
background: rgba(255, 255, 255, 0.95);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #667eea;
font-size: 20px;
cursor: pointer;
transition: all 0.3s ease;
z-index: 2;
position: relative;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-review .play-button:hover {
transform: scale(1.1);
background: rgba(255, 255, 255, 1);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.product-review .video-player {
display: none;
width: 100%;
height: 100%;
object-fit: cover;
}

.product-review .video-player.active {
display: block;
}

.product-review .video-thumbnail.hidden {
display: none;
}

.product-review .card-content {
padding: 20px;
}

.product-review .reviewer-info {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 2px solid #f0f0f0;
}

.product-review .reviewer-name {
font-size: 1.4rem;
font-weight: 800;
color: #1565c0;
background: linear-gradient(135deg, #667eea, #1565c0);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: none;
}

.product-review .review-meta {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 5px;
}

.product-review .review-stars {
display: flex;
gap: 2px;
}

.product-review .review-stars .star {
font-size: 18px;
color: #ffd700;
filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
}

.product-review .rating-summary .star.star-half {
position: relative;
display: inline-block;
color: lightgray;
}

.product-review .rating-summary .star.star-half::before {
content: "★";
color: gold;
position: absolute;
width: 50%;
overflow: hidden;
}

.product-review .review-date {
color: #666;
font-size: 0.85rem;
font-weight: 500;
background: #f8f9fa;
padding: 4px 8px;
border-radius: 12px;
border: 1px solid #e9ecef;
}

.product-review .review-text {
color: #444;
line-height: 1.7;
font-size: 1rem;
position: relative;
padding-left: 20px;
}

.product-review .review-text::before {
content: '"';
position: absolute;
left: -6px;
top: -18px;
font-size: 3rem;
color: #667eea;
opacity: 0.3;
font-family: serif;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
.product-review .testimonials-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.product-review .video-container {
height: 200px;
}

.product-review .play-button {
width: 60px;
height: 60px;
font-size: 24px;
}

.product-review .reviewer-info {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.product-review .review-meta {
align-items: flex-start;
flex-direction: row;
gap: 15px;
}
}

@media (max-width: 480px) {
.product-review .testimonials-grid {
grid-template-columns: 1fr;
gap: 15px;
}

.product-review .video-container {
height: 180px;
}

.product-review .card-content {
padding: 20px;
}

.product-review .play-button {
width: 50px;
height: 50px;
font-size: 20px;
}
}

/* Animation for cards */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

.product-review .testimonial-card {
animation: fadeInUp 0.6s ease forwards;
}

.product-review .testimonial-card:nth-child(1) {
animation-delay: 0.1s;
}

.product-review .testimonial-card:nth-child(2) {
animation-delay: 0.2s;
}

.product-review .testimonial-card:nth-child(3) {
animation-delay: 0.3s;
}

/* Enhanced hover effects */
.product-review .testimonial-card:hover .play-button {
transform: scale(1.1);
}

.product-review .testimonial-card:hover .reviewer-name {
background: linear-gradient(135deg, #764ba2, #667eea);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Daily dose and article section  */
.dailyNesw-sec {
background-color: #f8f9fa;
padding: 20px 12px 50px;
}

.dailyDose-container {
max-width: 1200px;
margin: 0 auto;
overflow: hidden;
/* padding: 5px 12px; */
}

.dailyDose-container .main-header,
.category-title,
.section-title {
padding: 16px 20px;
background-color: #ffffff;
border-bottom: 0px solid #e1e4e8;
border: 1px solid #e1e4e8;
display: flex;
justify-content: space-between;
align-items: center;
border-left: 5px solid #146fb0;
padding-left: 10px;
}

.dailyDose-container .sidebar-header {
border-left: 5px solid #146fb0;
padding-left: 10px;
}

.dailyDose-container .main-header h2 {
font-size: 18px;
font-weight: 600;
color: #24292e;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.dailyDose-container .see-all {
background-color: #0366d6;
color: #fff;
text-decoration: none;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
border: 1px solid #e1e4e8;
padding: 4px 8px;
border-radius: 3px;
transition: all 0.2s;
font-weight: 700;
}

.dailyDose-container .see-all:hover {
background-color: transparent;
color: #24292e;
}

.dailyDose-container .content-grid {
display: grid;
grid-template-columns: 1fr 400px;
min-height: 600px;
gap: 20px;
}

.dailyDose-container .main-section {
display: flex;
flex-direction: column;
}

.dailyDose-container .main-content {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 20px;
flex: 1;
margin-top: 20px;
}

.dailyDose-container .news-card {
position: relative;
border: 1px solid #e1e4e8;
/*            border-bottom: 1px solid #e1e4e8;*/
overflow: hidden;
transition: all 0.2s;
display: flex;
flex-direction: column;
}

.dailyDose-container .news-card:hover {
background-color: #f6f8fa;
}

.dailyDose-container .main-content a {
text-decoration: none;
background-color: #fff;
}

.dailyDose-container .news-card-img {
overflow: hidden;
position: relative;
/* height: 200px; */
}

.dailyDose-container .news-card-img::before {
content: "";
position: absolute;
inset: 0;
background: #00000017;
width: 100%;
height: 100%;
}

.dailyDose-container .main-content a:hover img {
transform: scale(1.2);
}

.dailyDose-container .news-image {
width: 100%;
height: 100%;
/* object-fit: cover; */
display: block;
transition: all 0.5s ease;
}

.dailyDose-container .news-info {
padding: 15px;
}

.dailyDose-container .news-title {
font-size: 1rem;
font-weight: 600;
color: #24292e;
line-height: 1.3;
margin-bottom: 8px;
}

.dailyDose-container .news-date {
font-size: 12px;
font-weight: 600;
color: #0366d6;
text-transform: uppercase;
letter-spacing: 0.5px;
/* text-align: right; */
}

.dailyDose-container .news-badge {
position: absolute;
top: 8px;
left: 8px;
background-color: #0366d6;
color: white;
padding: 2px 6px;
font-size: 10px;
border-radius: 2px;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 0.5px;
}

.dailyDose-container .sidebar {
background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
border: 1px solid #e1e4e8;
}

.dailyDose-container .sidebar-header {
padding: 16px 20px;
/*            background-color: #fff;*/
border-bottom: 1px solid #e1e4e8;
display: flex;
justify-content: space-between;
align-items: center;
}

.dailyDose-container .sidebar-title {
font-size: 18px;
font-weight: 600;
color: #24292e;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.dailyDose-container .sidebar-item:hover .sidebar-headline {
text-decoration: underline;
}

.dailyDose-container .sidebar-item {
padding: 12px 20px;
border-bottom: 1px solid;
transition: background-color 0.2s;
text-decoration: none;
display: block;
}

.dailyDose-container .sidebar-item:hover {
background-color: #fff;
}

.dailyDose-container .sidebar-item:last-child {
border-bottom: none;
}

.dailyDose-container .sidebar-date {
font-size: 12px;
color: #0366d6;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 10px;
}

.dailyDose-container .sidebar-headline {
font-size: 1rem;
font-weight: 500;
color: #24292e;
line-height: 1.3;
}

.articleTitle-sec {
display: flex;
gap: 10px;
width: 100%;
}

.articleImg {
max-width: 50px;
height: 50px;
overflow: hidden;
width: 100%;
}

.articleImg img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: right;
}

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

.dailyDose-container .main-content {
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
}

/*  .news-card {
border-right: none;
}*/

/* .sidebar {
border-left: none;
border-top: 1px solid #e1e4e8;
}*/
}

@media (max-width: 480px) {
.dailyDose-container .main-content {
grid-template-columns: 1fr;
}

.dailyDose-container .header,
.dailyDose-container .sidebar-header {
padding: 12px 16px;
}

.dailyDose-container .news-info {
padding: 12px;
}

.dailyDose-container .sidebar-item {
padding: 10px 16px;
}
}

/* dividend-table-style========================= */

.container {
max-width: 1200px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
overflow: hidden;
}

.table-container {
padding: 30px;
}

.table-wrapper {
background: white;
border-radius: 15px;
overflow: hidden;
}

.table-scroll {
max-height: 350px;
overflow-y: auto;
overflow-x: auto;
}

.table-scroll::-webkit-scrollbar {
width: 8px;
height: 8px;
}

.table-scroll::-webkit-scrollbar-track {
background: #f1f5f9;
border-radius: 4px;
}

.table-scroll::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}

.table-header {
background: #1565c0;

padding: 20px 30px;
}

.table-header h5 {
color: white;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 10px;
}

.table-header p {
color: white;
font-size: 1rem;
font-weight: 400;
line-height: 22px;
}

table {
width: 100%;
border-collapse: collapse;
font-size: 0.95rem;
}

th,
td {
padding: 16px 20px;
text-align: left;
border: 1px solid #e2e8f0;
}

th {
background: #f8fafc;
font-weight: 700;
color: #475569;
text-transform: uppercase;
font-size: 0.8rem;
letter-spacing: 0.5px;
position: sticky;
top: 0;
z-index: 10;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

tr:hover {
background: #f8fafc;
}

.upComing-Sec tr td a:hover .stock-code {
color: #334155;
}

.stock-code {
font-weight: 700;
color: #667eea;
font-size: 1rem;
}

.company-name {
font-weight: 500;
color: #334155;
}

.yield-badge {
background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
color: white;
padding: 6px 12px;
border-radius: 20px;
font-weight: 600;
font-size: 0.85rem;
display: inline-block;
min-width: 60px;
text-align: center;
}

.type-badge {
padding: 4px 8px;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.type-interim {
background: #dbeafe;
color: #1e40af;
}

.type-final {
background: #dcfce7;
color: #166534;
}

.franking-bar {
background: #e2e8f0;
border-radius: 10px;
height: 8px;
position: relative;
margin: 5px 0;
}

.franking-fill {
background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
height: 100%;
border-radius: 10px;
transition: width 0.5s ease;
}

.franking-text {
font-size: 0.8rem;
color: #64748b;
margin-top: 2px;
}

.category-section {
padding: 50px 12px;
max-width: 1200px;
margin: auto;
}

.category-title,
.section-title h2 {
font-size: 18px;
font-weight: 600;
color: #24292e;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 30px;
}

.section-title h2 {
margin-bottom: 0;
}

.section-title {
margin-bottom: 30px;
}

.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.category-card {
background: white;
border-radius: 5px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
text-decoration: none;
}

.category-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
height: 200px;
background-size: cover;
background-position: center;
overflow: hidden;
}

.category-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.category-content {
padding: 20px;
}

.category-content h3 {
font-size: 1.2rem;
font-weight: 700;
color: #1565c0;
margin-bottom: 8px;
}

.category-content p {
color: #58677d;
font-size: 0.9rem;
line-height: 1.5;
}

.category-con {
margin-top: 30px;
}

.category-con p {
margin-bottom: 10px;
}

.Divifooter {
background: #333;
color: #94a3b8;
padding: 10px 20px;
text-align: left;
}

.Divifooter p {
font-size: 0.9rem;
line-height: 1.6;
}

.Divifooter strong {
color: #e2e8f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {

.stats-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
padding: 20px;
}

.stat-card {
padding: 20px;
}

.table-container {
padding: 20px;
}

th,
td {
padding: 12px 15px;
font-size: 0.85rem;
}
}

@media (max-width: 480px) {
.stats-grid {
grid-template-columns: 1fr;
padding: 15px;
}

th,
td {
padding: 10px 12px;
font-size: 0.8rem;
}

.table-container {
padding: 10px 0px;
}
}

.upComing-Sec,
.product-review {
background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
padding: 50px 12px;
position: relative;
z-index: 0;
}

.scroll-to-top {
position: fixed;
bottom: 30px;
right: 30px;
background-color: #007bff;
color: white;
border: none;
font-size: 24px;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
opacity: 0;
transition: opacity 0.3s ease-in-out;
box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
z-index: 999;
}

.scroll-to-top:hover {
background-color: #0056b3;
}

.scroll-to-top.visible {
opacity: 1;
}

/*--------------------------------------------------------------

# Faq Section

--------------------------------------------------------------*/

.faq {
width: 100%;
padding: 50px 12px;
background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
}


.faq .container-fluid {
max-width: 1200px;
margin: 0 auto;
}

.faq .content-subtitle {
font-size: 15px;

margin-bottom: 10px;

display: block;

color: var(--default-color);
}

.faq .content-title {
color: var(--heading-color);

font-size: 22px;

margin-bottom: 30px;
}

.faq p {
line-height: 1.7;

color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
background-color: var(--surface-color);

margin-bottom: 20px;

position: relative;

border-radius: 10px;

overflow: hidden;

border: 1px solid #159ad5;
}

.btn-link.collapsed {
border-bottom: 0 !important;
}

.btn-link {
border-bottom: 1px solid #159ad5 !important;
cursor: pointer;
}

.faq .custom-accordion .accordion-item:last-child {
margin-bottom: 0;
}

.faq .custom-accordion .accordion-item .btn-link {
display: block;

width: 100%;

white-space: wrap !important;

padding: 15px 50px 15px 10px;

text-decoration: none;

text-align: left;

color: var(--default-color);

border: none;

border-radius: 0;

display: flex;

gap: 10px;

align-items: center;

position: relative;

/*background-color: color-mix(in srgb, var(--default-color), transparent 94%);*/
font-size: 16px;
}

.faq .custom-accordion .accordion-item .collapse.show {
border-top: 1px solid #159ad5;
}

.faq .custom-accordion .accordion-item p {
font-size: 15px;

font-weight: normal;

line-height: 1.7;
}

.faq .custom-accordion .accordion-item .btn-link span {
background-color: #159ad5;

color: #fff;

font-weight: 500;

min-width: 30px;

height: 30px;

display: flex;

justify-content: center;

align-items: center;

border-radius: 50%;

font-size: 12px;
}

.faq .custom-accordion .accordion-item .btn-link:before {
content: "\f282";

display: inline-block;

color: #159ad5;

font-family: "bootstrap-icons" !important;

font-style: normal;

font-weight: normal !important;

font-variant: normal;

text-transform: none;

line-height: 1;

vertical-align: -0.125em;

-webkit-font-smoothing: antialiased;

position: absolute;

top: 50%;

transform: translateY(-50%);

right: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded="true"] {
color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
font-family: "bootstrap-icons" !important;

content: "\f286";

color: #159ad5;

position: absolute;

top: 50%;

transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
padding: 20px 20px 20px 10px;
background: #fff;
color: var(--default-color);
}



/*--------------------------------------------------------------

# review Section

--------------------------------------------------------------*/
.googleReview {
/*background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);*/
padding: 50px 12px;
position: relative;
}

.googleReview .container {
max-width: 1200px;
margin: 0 auto;
background-color: unset;
box-shadow: unset;
padding: 0;
}

.googleReview .swiper-slide {
height: auto !important;
}

.review-header {
text-align: center;
margin-bottom: 35px;
animation: fadeInUp 0.8s ease-out;
}

.testi-title {
font-size: clamp(1rem, 2vw, 2rem);
font-weight: 700;
color: #24292e;
margin-bottom: 15px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.rating-badge {
display: inline-flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 15px 25px;
border-radius: 50px;
color: #24292e;
font-weight: 600;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.rating-text {
font-size: 1.1rem;
}

.rating-count {
color: #ffeb3b;
text-decoration: underline;
font-weight: 700;
}

.reviewSlide {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-top: 40px;
}

.reviewCard {
background: rgba(255, 255, 255, 0.95);
border-radius: 5px;
padding: 30px;
border: 1px solid rgba(255, 255, 255, 0.2);
transform: translateY(20px);
opacity: 0;
animation: slideInUp 0.8s ease-out forwards;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
height: 100%;
border: 1px solid #eee;

}

.reviewCard::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #1e88e5, #1976d2, #0d47a1);
transform: scaleX(0);
transition: transform 0.3s ease;
}

.reviewCard:hover {
transform: translateY(-10px);
}

.reviewCard:hover::before {
transform: scaleX(1);
}

.reviewCard:nth-child(1) {
animation-delay: 0.1s;
}

.reviewCard:nth-child(2) {
animation-delay: 0.3s;
}

.reviewCard:nth-child(3) {
animation-delay: 0.5s;
}

.reviewCard:nth-child(4) {
animation-delay: 0.7s;
}

.card-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 40px;
}

.customer-info {
display: flex;
align-items: center;
gap: 15px;
}

.avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, #1e88e5, #1976d2);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
font-weight: 700;
box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.customer-name {
font-size: 1.2rem;
font-weight: 700;
color: #1565c0;
margin-bottom: 5px;
}

.stars {
display: flex;
gap: 2px;
}

.fa-star {
color: #ffc107;
font-size: 1rem;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-logo {
width: 30px;
height: 30px;
opacity: 0.8;
}

.testimonial-text {
font-size: 1rem;
line-height: 1.7;
color: #424242;
font-weight: 400;
position: relative;
overflow-y: auto;
max-height: 100px;
scrollbar-width: auto;
scrollbar-width: thin;
scrollbar-width: none;
}

.quote-icon {
position: absolute;
top: -10px;
left: -20px;
font-size: 20px;
color: #1e88e5;
opacity: 0.2;
}

/* Floating elements for visual interest */
.floating-element {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
animation: float 6s ease-in-out infinite;
}

.floating-1 {
width: 80px;
height: 80px;
top: 10%;
right: 5%;
animation-delay: 0s;
}

.floating-2 {
width: 120px;
height: 120px;
bottom: 15%;
left: 3%;
animation-delay: 2s;
}

.floating-3 {
width: 60px;
height: 60px;
top: 60%;
right: 8%;
animation-delay: 4s;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

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

@keyframes float {

0%,
100% {
transform: translateY(0) rotate(0deg);
}

50% {
transform: translateY(-20px) rotate(180deg);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.reviewSlide {
grid-template-columns: 1fr;
gap: 20px;
}

.reviewCard {
padding: 25px;
margin: 0 10px;
}

.review-header {
margin-bottom: 20px;
/* padding: 0 10px; */
}

.reviewSlide {
margin-top: 20px;
}

.dailyDose-container .main-header h2,
.dailyDose-container .sidebar-title,
.category-title,
.section-title h2 {
font-size: 16px !important;
font-weight: 700;
}

.product-review .header .pr-do-not-use-ffba-a-8wanz6 {
width: 280px;
}

.rating-badge {
/* flex-direction: column; */
gap: 5px;
padding: 12px 20px;
width: 100%;
}
}

@media (max-width: 480px) {
.googleReview {
padding: 40px 10px;
}

.reviewCard {
padding: 20px;
margin: 0 5px;
}

.customer-info {
gap: 10px;
}

.avatar {
width: 45px;
height: 45px;
font-size: 1.1rem;
}

.customer-name {
font-size: 1.1rem;
}
}

/* footer=========================================/= */

.footer {
background: linear-gradient(135deg, #07080c 0%, #131212 100%);
color: #fff;
padding: 0px 12px 20px;
margin-bottom: 0;

}

.footer-column {
  position: relative;
}

.footer-column::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -10px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #00bfff, transparent);
  animation: lineScroll 4s linear infinite;
  opacity: 0.7;
}

/* Keyframes for smooth top-to-bottom movement */
@keyframes lineScroll {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

.footer-column:nth-child(1)::before {
  animation-delay: 0s;
}
.footer-column:nth-child(2)::before {
  animation-delay: 1s;
}
.footer-column:nth-child(3)::before {
  animation-delay: 2s;
}
.footer-column:nth-child(4)::before {
  animation-delay: 3s;
}

/* Hide animation on smaller screens */
@media (max-width: 991px) {
  .footer-column::before {
    display: none;
  }
}


.footer-container {
max-width: 1200px;
margin: 0 auto;
}

.footer-content {
display: grid;
grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
gap: 50px;
padding: 50px 0;
overflow: hidden;
}

.footer .newsletter-column {
display: contents;
}

.footer .newsletter-section-wrapper {
grid-column: 4;
grid-row: 1;
}

.footer-column h3 {
font-size: 20px;
margin-bottom: 25px;
font-weight: 600;
position: relative;
padding-bottom: 12px;
}


.footer-column h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background: linear-gradient(90deg, #00d4ff, #0099ff);
border-radius: 2px;
}

.footer .logo-section {
display: flex;
flex-direction: column;
gap: 25px;
}

.footer .logo img {
width: 180px;
height: auto;
display: block;
}

.footer .contact-info {
display: flex;
flex-direction: column;
gap: 18px;
font-size: 14px;
line-height: 1.8;
}

.footer .contact-item {
display: flex;
gap: 12px;
align-items: baseline;
}

.footer .contact-item i {
color: #00d4ff;
font-size: 16px;
}

.footer .contact-item a {
color: #fff;
text-decoration: none;
}

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

.footer .social-links a {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
text-decoration: none;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

.footer .social-links a:hover {
background: linear-gradient(135deg, #00d4ff, #0099ff);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.footer-links {
list-style: none;
display: flex;
flex-direction: column;
gap: 14px;
}

.footer-links li {
position: relative;
padding-left: 18px;
}

.footer-links li::before {
content: '▪';
position: absolute;
left: 0;
color: #00d4ff;
font-size: 18px;
line-height: normal;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
color: #00d4ff;
padding-left: 2px;
}

.footer .newsletter-section {
background: rgba(255, 255, 255, 0.05);
padding: 15px;
border-radius: 5px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .newsletter-form {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 20px;
}

.footer .newsletter-form input {
padding: 14px 20px;
border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(255, 255, 255, 0.1);
color: #fff;
border-radius: 8px;
font-size: 14px;
outline: none;
transition: all 0.3s ease;
}

.footer .newsletter-form input::placeholder {
color: rgba(255, 255, 255, 0.5);
}

.footer .newsletter-form input:focus {
border-color: #00d4ff;
background: rgba(255, 255, 255, 0.15);
}

.footer .subscribe-btn {
padding: 14px 30px;
background: linear-gradient(135deg, #00d4ff, #0099ff);
color: #fff;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}

.footer .subscribe-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.footer-bottom {
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
font-size: 13px;
line-height: 1.8;
color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1200px) {
.footer-content {
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
}

.footer .newsletter-section-wrapper {
grid-column: 1 / -1;
}
}

@media (max-width: 768px) {
.footer {
padding: 40px 20px 20px;
}

.footer-content {
grid-template-columns: 1fr;
gap: 0;
}

.footer-column {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column:first-child {
border-bottom: none;
margin-bottom: 20px;
}

.footer-column:last-child {
border-bottom: none;
}

.footer-column:not(:first-child) h3 {
font-size: 18px;
margin-bottom: 0;
padding: 20px 0;
cursor: pointer;
position: relative;
user-select: none;
}

.footer-column:not(:first-child) h3::after {
display: none;
}

.footer-column:not(:first-child) h3::before {
content: '\f078';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
font-size: 14px;
}

.footer-column:not(:first-child) h3.active::before {
transform: translateY(-50%) rotate(180deg);
}

.footer-column:not(:first-child) .footer-links {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}

.footer-column:not(:first-child) h3.active+.footer-links {
max-height: 1000px;
padding-bottom: 20px;
}

.footer .newsletter-section-wrapper {
grid-column: 1;
max-height: none;
overflow: visible;
margin-top: 0px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
}

.footer .newsletter-section-wrapper .newsletter-section {
margin-top: 0 !important;
}

.footer .newsletter-section-wrapper h3 {
padding: 0 !important;
margin-bottom: 15px !important;
cursor: default !important;
}

.footer .newsletter-section-wrapper h3::before {
display: none !important;
}

.footer .newsletter-section {
padding: 25px 20px;
}

.footer .contact-info {
font-size: 13px;
}

.footer-bottom {
font-size: 12px;
}
.footer-content{
padding: 30px 0;
}
.footer-bottom{
padding-top: 20px;
}
}

@media (max-width: 480px) {
.footer {
padding: 0px 15px 15px;
}

.footer .social-links a {
width: 36px;
height: 36px;
}

.footer .newsletter-form input,
.footer .subscribe-btn {
padding: 12px 18px;
font-size: 13px;
}
}

.az-list form button.alphabet-btn {
  background: #333;
  padding: 8px 12px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
  border: none;
}

.az-list form button.alphabet-btn:hover {
  background: #00b4ff;
}

.az-list a:hover {
    background: #00b4ff;
}





/* footer=========================================/= */

.footer {
background: linear-gradient(135deg, #07080c 0%, #131212 100%);
color: #fff;
padding: 0px 12px 20px;
margin-bottom: 0;

}

.footer-column {
  position: relative;
}

.footer-column::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -10px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #00bfff, transparent);
  animation: lineScroll 4s linear infinite;
  opacity: 0.7;
}

/* Keyframes for smooth top-to-bottom movement */
@keyframes lineScroll {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

.footer-column:nth-child(1)::before {
  animation-delay: 0s;
}
.footer-column:nth-child(2)::before {
  animation-delay: 1s;
}
.footer-column:nth-child(3)::before {
  animation-delay: 2s;
}
.footer-column:nth-child(4)::before {
  animation-delay: 3s;
}

/* Hide animation on smaller screens */
@media (max-width: 991px) {
  .footer-column::before {
    display: none;
  }
}


.footer-container {
max-width: 1200px;
margin: 0 auto;
}

.footer-content {
display: grid;
grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
gap: 50px;
padding: 50px 0;
overflow: hidden;
}

.footer .newsletter-column {
display: contents;
}

.footer .newsletter-section-wrapper {
grid-column: 4;
grid-row: 1;
}


.az-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.az-content h3 {
  margin-bottom: 20px;
}

.footer-column h3,
.az-content h3 {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after,
.az-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0099ff);
  border-radius: 2px;
}

.footer-column h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background: linear-gradient(90deg, #00d4ff, #0099ff);
border-radius: 2px;
}

.footer .logo-section {
display: flex;
flex-direction: column;
gap: 25px;
}

.footer .logo img {
width: 180px;
height: auto;
display: block;
}

.footer .contact-info {
display: flex;
flex-direction: column;
gap: 18px;
font-size: 14px;
line-height: 1.8;
}

.footer .contact-item {
display: flex;
gap: 12px;
}



/*====================welcome page================================*/

.welcome-section {
background: white;
border-radius: 12px;
padding: 40px 20px;
}

.welcome-text {
font-size: 32px;
font-weight: 700;
color: #333;
margin-bottom: 30px;
border-bottom: 2px solid #333;
padding-bottom: 10px;
}

.welcome-text span {
color: #667eea;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}

.product-card {
background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
border-radius: 8px;
padding: 20px;
transition: all 0.3s ease;
cursor: pointer;
}

.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.product-card a {
text-decoration: none;
color: white;
font-size: 16px;
font-weight: 500;
display: block;
transition: all 0.2s ease;
}

.product-card:hover a {
color: #fffacd;
}

@media (max-width: 768px) {
.welcome-text {
font-size: 24px;
margin-bottom: 20px;
}

.products-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 15px;
}

.product-card {
padding: 15px;
}

.product-card a {
font-size: 14px;
}
}

@media (max-width: 480px) {
.welcome-section {
padding: 20px 15px;
}

.welcome-text {
font-size: 20px;
}

.products-grid {
grid-template-columns: 1fr;
gap: 12px;
}

.product-card {
padding: 12px;
}

.product-card a {
font-size: 13px;
}
.login-btn, .country-btn{
padding: 6px;
}
}


.account-dropdown {
position: absolute;
top: 100%;
left: 0;
background: white;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
min-width: 200px;
margin-top: 8px;
display: none;
z-index: 1000;
overflow: hidden;
}


.account-dropdown.active {
display: block;
}

.account-dropdown a {
display: block;
padding: 12px 20px;
color: #333;
text-decoration: none;
font-weight: 500;
transition: all 0.2s ease;
border-bottom: 1px solid #eee;
}

.account-dropdown a:last-child {
border-bottom: none;
}

.account-dropdown a:hover {
background: #667eea;
color: white;
padding-left: 25px;
}


.account-section {
position: relative;
display: inline-block;
height: 100%;
}

.account-section a.login-btn span{
margin-left: 6px;
line-height: normal;
}

.account-section a.login-btn, .referFrend{
border: 1px solid #dee2e6;
background: #f8f9fa;
}


/*==================================footer-index-pages============================*/

.indexImg-con img{
width: 100%;
height: 100%;
object-fit: cover;
}

.indexImg-con{
margin-top: 30px;
}

.policy-content-sec.mt-0{
margin-top: 0;
}
.tradingchart{ height: 500px; margin-bottom: 50px; }
.tradingchart .tradingview-widget-container iframe{pointer-events: auto;}
.tradingview-widget-copyright{display:none;}


/*=============kapitales-journey========================*/

.kapitales-journey{
padding: 40px 0;
}

.kapi-journy-con{
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.kapi-journy-img img{
width: 100%;
max-width: 500px;
height: auto;
}

.indexImg-con.mx-600{
max-width: 600px;
}

.report-faq-container {
max-width: 800px;
margin: 0 auto;
}

.report-faq-item {
background: white;
margin-bottom: 12px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
}

.report-faq-question {
padding: 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background-color 0.3s ease;
font-size: 16px;
font-weight: 600;
color: #333;
user-select: none;
}

.report-faq-question:hover {
background-color: #f8f8f8;
}

.report-faq-item.active .faq-question {
background-color: #667eea;
color: white;
}

.report-faq-toggle {
font-size: 24px;
transition: transform 0.3s ease;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.report-faq-item.active .report-faq-toggle {
transform: rotate(180deg);
}

.report-faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.report-faq-item.active .report-faq-answer {
max-height: 500px;
}

.report-faq-answer-content {
padding: 20px;
color: #555;
line-height: 1.8;
background-color: #fafafa;
}

.report-faq-answer ul {
margin-left: 20px;
margin-top: 10px;
}

.report-faq-answer li {
margin-bottom: 8px;
color: #666;
}


.junerySec {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 25px;
	overflow: hidden;
}

.junerySec-title {
	background-color: #0284c7;
	color: white;
	padding: 15px;
	font-weight: bold;
	font-size: 14px;
}

.junery-table-sec .table-wrapper {
	overflow-x: auto;
	border-radius: 0;
}

.junery-table-sec table {
	width: 100%;
	border-collapse: collapse;
}

.junery-table-sec thead tr {
	background-color: #0369a1;
	color: white;
}

.junery-table-sec th {
	padding: 12px 15px;
	text-align: left;
	font-weight: 700;
	font-size: 13px;
	white-space: nowrap;
}

.junery-table-sec td {
	padding: 12px 15px;
	font-size: 13px;
	border-bottom: 1px solid #e5e7eb;
}

.junery-table-sec tbody tr:nth-child(even) {
	background-color: #f9fafb;
}

.junery-table-sec tbody tr:hover {
	background-color: #eff6ff;
}

.junery-table-sec .ticker {
	font-weight: bold;
	color: #0284c7;
}

.junery-table-sec .growth {
	font-weight: bold;
	color: #0284c7;
}
.new-badge {
    display: inline-block;
    background-color: #007bff; 
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    animation: pulse 1.5s infinite;
}
.newAchive{
	display: flex;
	gap: 10px;
	align-items: baseline;
}

.newAchive i{
	color: #007bff;
}

/* Pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


@media (max-width: 768px) {

	.junery-table-sec th,
	td {
		padding: 8px 10px;
		font-size: 12px;
	}

	.junerySec-title {
		padding: 10px;
		font-size: 12px;
	}
  .tradingview-widget-container{
height: 75px !important;
  }
    .tradingview-widget-container iframe{
      height: 100% !important;
    }

    
}

/*===========================profile-section==============================*/

.profile-con{
padding: 30px 0;
}

.profile-con .mxw-800, .profile-con .mxw-1200 {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.profile-con .mxw-1200{
max-width: 1200px;
}

.profile-con .mxw-800.mx-420{
max-width: 420px;
}

.refer-head .logo img{
	width: 150px;
}
.refer-head p{
	font-size: 14px;
}
.refer-head{
	text-align: center;
	margin-bottom: 20px;
}

.profile-con h1 {
font-size: 28px;
color: #333;
margin-bottom: 30px;
}

.profile-con .subscription-header {
background: #90EE90;
padding: 8px 15px;
border-radius: 4px;
display: inline-block;
margin-bottom: 20px;
font-size: 14px;
font-weight: bold;
}

.profile-con .info-row {
display: flex;
justify-content: space-between;
margin-bottom: 25px;
flex-wrap: wrap;
gap: 20px;
}

.profile-con .info-item {
flex: 1;
min-width: 200px;
}

.profile-con .info-label {
font-size: 14px;
color: #333;
margin-bottom: 5px;
}

.profile-con .info-value {
font-size: 14px;
color: #333;
font-weight: 400;
}

.profile-con .input-group {
margin-bottom: 20px;
position: relative;
}

.profile-con .input-field {
width: 100%;
padding: 15px 15px 15px 45px;
border: 1px solid #ddd;
border-radius: 50px;
font-size: 14px;
outline: none;
transition: border-color 0.3s;
}

.profile-con .input-field:focus {
border-color: #17a2b8;
}

.profile-con .input-icon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
color: #666;
font-size: 18px;
}

.profile-con .btn-update {
width: 100%;
max-width: 420px;
padding: 15px;
background: #17a2b8;
color: white;
border: none;
border-radius: 50px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s;
display: block;
margin: 30px auto 0;
}

.profile-con .btn-update:hover {
background: #138496;
}

.subscription-table {
width: 100%;
border-collapse: collapse;
margin-top: 30px;
overflow-x: auto;
display: block;
position: relative;
z-index: 1;
}

.subscription-table table {
width: 100%;
min-width: 600px;
}

.subscription-table th {
background: #3a3a3a;
color: white;
padding: 15px;
text-align: left;
font-weight: 600;
}

.subscription-table td {
padding: 10px;
border-bottom: 1px solid #ddd;
}
.subscription-table th,
.subscription-table td {
font-size: 14px;
}

.btn-unsubscribe {
background: #dc3545;
color: white;
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
}

.btn-unsubscribe:hover {
background: #c82333;
}

@media (max-width: 768px) {
.profile-con .mxw-800 {
padding: 20px;
}

.profile-con h1 {
font-size: 24px;
}

.profile-con .info-row {
flex-direction: column;
}

.subscription-table {
font-size: 14px;
}

.ticker-tab-con{
  flex-wrap: wrap;
}

}

@media (max-width: 480px) {
.profile-con .mxw-800 {
padding: 15px;
}

.profile-con h1 {
font-size: 20px;
}

.profile-con .input-field {
padding: 12px 12px 12px 40px;
}

.profile-con .btn-update {
font-size: 14px;
}

.ticker-tab{
      width: 100%;
    }
}


/*==================company-profile-ticker==========================*/

.profile-ticker-sec{
  padding: 50px 0;
}

.ticker-head{
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
border-bottom: 1px solid #333;
padding-bottom: 20px;
}

.ticker-head a{
background-color: #007bff;
padding: 10px;
color: #fff;
 border:1px solid #007bff;
border-radius: 3px;
transition: all 0.4s ease;
font-weight: 500;
}

.ticker-head a:hover{
background-color: transparent;
border:1px solid #007bff;
color: #007bff;
}

.profile-iframe{
width: 100%;
height: 290px;
overflow: auto;
}

.ticker-tab-con {
display: flex;
gap: 10px;
}

.ticker-tab-sec{
  margin: 15px 0 30px;
} 

.ticker-tab {
padding: 10px 20px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #fff;
color: #333;
cursor: pointer;
font-weight: 500;
transition: all 0.3s ease;
}

.ticker-tab:hover {
background-color: #f5f5f5;
}

.ticker-tab.active {
background-color: #159ad5;
color: #fff;
border-color: #159ad5;
}

.ticker-tab-content {
display: none;
margin-top: 20px;
border: 1px solid #d9d2d2;
padding: 10px;
border-radius: 5px;
}

.tradingview-iframe{
width: 100%;
height: 400px;
overflow: auto;
}

.ticker-tab-content.active {
display: block;
}
.tradingview-widget-head{
border: 1px solid #333;
padding: 10px;
border-radius: 5px;
display: inline-block;
cursor: pointer;
transition: all 0.4s ease;
margin-bottom: 15px;
}

.tradingview-widget-head:hover{
background-color: #159ad5;
border: 1px solid #159ad5;
}

.tradingview-widget-head:hover :where(a, span){
color: #fff;
}

.tradingview-widget-head:hover a{
text-decoration: underline;
}


.signup-btn {
  background: linear-gradient(270deg, #159ad5, #00c6ff, #159ad5);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  position: relative;
  overflow: hidden;
  border: none;
  color: #fff;
}

/* Animate the gradient movement */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtle glowing pulse */
.signup-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}


/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .login-btn,
  .signup-btn {
    /* Add your mobile-specific styles here, e.g.: */
    width: 100%;
    font-size: 14px;
  }
}

.blinkme {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}

.marketalert{
  color:red;
}

.footer-column {
    position: relative;
}

.footer-column::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -10px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #00bfff, transparent);
    animation: lineScroll 4s linear infinite;
    opacity: 0.7;
}

/* Keyframes for smooth top-to-bottom movement */
@keyframes lineScroll {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

/* Staggered animation delays for each column */
.footer-column:nth-child(1)::before {
    animation-delay: 0s;
}

.footer-column:nth-child(2)::before {
    animation-delay: 1s;
}

.footer-column:nth-child(3)::before {
    animation-delay: 2s;
}

.footer-column:nth-child(4)::before {
    animation-delay: 3s;
}

/* Hide animation on smaller screens */
@media (max-width: 991px) {
    .footer-column::before {
        display: none;
    }
}

.page-number.btn-primary {
    background: #4dd0e1;
    color: white;
}

.article-inner-content .article-social-sec .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

article.article-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.socail-links-con {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 30px 0 !important;
  }
}

.tradingview-widget-container.company-widget,
.tradingview-widget-container {
  width: 100% !important;
  height: 100% !important;
}

/* 20-11-2025 top header move css here*/
 /* Full-width alert */
  .alert-fullwidth {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #28a745; /* Green color */
      color: white;
      box-sizing: border-box;
      padding: 10px 15px;
      z-index: 999; /* Ensure it's above other elements */
      display: flex;
      justify-content: center; /* Center content horizontally */
      align-items: center;
  }

  /* Close button */
  .alert .close {
      color: white;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      position: absolute;
      right: 15px; /* Keep it on the right side */
      top: 50%;
      transform: translateY(-50%);
  }

  .alert .close:hover {
      cursor: pointer;
  }

  /* Anchor styles */
  .alert-anchor {
      color: white;
      font-weight: bold;
      text-decoration: none;
      font-size: 16px;
  }

  .alert-anchor:hover {
      text-decoration: underline;
  }

  /* Image styling */
  .img-title-height {
      height: 18px;
      margin-left: 8px;
  }


/*
@media (max-width: 480px) {
    .login-btn, 
    .signup-btn {
         Add mobile-specific styles here 
    }
}
*/


