*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-navbar {
    background: #0a0f14;
    padding: 10px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.logo-text {
    font-size: 28px;
    color: #f5c542;
    letter-spacing: 2px;
}
.logo-text img{
    width: 150px;
}
.logo-text span {
    color: #ffffff;
}

.nav-center .nav-link {
    color: #b0b0b0;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: 0.3s;
}

.nav-center .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f5c542;
    left: 0;
    bottom: -5px;
    transition: 0.4s ease;
}

.nav-center .nav-link:hover {
    color: #f5c542;
}

.nav-center .nav-link:hover::after {
    width: 100%;
}

.nav-center .nav-link.active {
    color: #f5c542;
}

.login-btn {
    border-radius: 10px;
    padding: 6px 20px;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #f5c542;
    color: #000;
}

.join-btn {
    background: linear-gradient(45deg, #f5c542, #d4af37);
    color: #000;
    border-radius: 10px;
    padding: 6px 20px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(245,197,66,0.5);
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(245,197,66,0.8);
}

/* Mobile spacing */
@media (max-width: 991px) {
    .nav-center .nav-link {
        margin: 10px 0;
    }
    .nav-buttons {
        margin-top: 15px;
    }
    .nav-buttons .btn {
        width: 100%;
    }
}
.nav-buttons {
    align-items: center;
}

/* HERO BACKGROUND */
/*.hero-section {
    min-height: 100vh;
    position: relative;
}

.hero-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5,10,20,0.85), rgba(5,10,20,0.95));
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.gold-text {
    color: #f5c542;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #cfcfcf;
    max-width: 750px;
}

.hero-buttons {
    animation: fadeSlide 2.5s ease forwards;
    opacity: 0;
}

.join-btn {
    background: linear-gradient(45deg, #f5c542, #d4af37);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    color: #000;
    box-shadow: 0 0 15px rgba(245,197,66,0.6);
    transition: 0.4s;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(245,197,66,0.9);
}

.login-btn {
    border: 2px solid #f5c542;
    color: #f5c542;
    padding: 10px 28px;
    border-radius: 40px;
    transition: 0.4s;
}

.login-btn:hover {
    background: #f5c542;
    color: #000;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    .hero-buttons {
        text-align: center;
    }
    .carousel-control-next-icon{
        background-image: none;
    }
    .carousel-control-prev-icon{
        background-image: none;
    }
}*/

.hero-section {
    background: linear-gradient(135deg, #0a0f1c, #101a30);
     padding-top: 80px;
}

.hero-big-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.gold-accent {
    color: #f5c542;
}

.hero-desc {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #cfcfcf;
    max-width: 550px;
}

.btn-forex-gold {
    background: linear-gradient(45deg, #f5c542, #d4af37);
    border: none;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    color: #000;
    transition: 0.4s;
}

.btn-forex-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(245,197,66,0.8);
}

.hero-image-float {
    max-height: 520px;
    animation: floatUpDown 4s ease-in-out infinite;
}

/*@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}*/

@media (max-width: 991px) {
    .hero-big-title {
        font-size: 2.4rem;
        text-align: center;
        padding-top:20px;
    }
    .hero-image-float{
        padding-top:20px;
    }
    .carousel-control-next-icon{
        background-image:none;
    }
    .carousel-control-prev-icon{
        background-image:none;
    }
}

/* ===== Forex Stats Section ===== */

.fx-stats-section {
    background: #060b14;
    padding: 70px 0;
}

.fx-stats-card {
    background: #0b111d;
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.fx-stats-card:hover {
    transform: translateY(-8px);
    border-color: #f5c542;
    box-shadow: 0 0 25px rgba(245, 197, 66, 0.3);
}

.fx-stats-number {
    font-size: 2.3rem;
    font-weight: 700;
    color: #f5c542;
    margin-bottom: 10px;
}

.fx-stats-text {
    font-size: 1rem;
    color: #a0a8b8;
    margin: 0;
}

/* Responsive */

@media (max-width: 768px) {
    .fx-stats-number {
        font-size: 1.8rem;
    }
}


/* ===== Why Choose Section ===== */

.auricx-why-section {
    background: #060b14;
    padding: 80px 0;
}

.auricx-why-title {
    color: #f5c542;
    font-size: 2.5rem;
    font-weight: 700;
}

.auricx-why-subtitle {
    color: #a0a8b8;
    max-width: 750px;
    margin: 15px auto 0;
}

/* Card */

.auricx-why-card {
    background: #0b111d;
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.auricx-why-card:hover {
    transform: translateY(-10px);
    border-color: #f5c542;
    box-shadow: 0 0 30px rgba(245, 197, 66, 0.3);
}

/* Icon Box */

.auricx-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(245, 197, 66, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f5c542;
    transition: 0.4s;
}

.auricx-why-card:hover .auricx-icon {
    background: #f5c542;
    color: #000;
}

/* Text */

.auricx-why-card h5 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.auricx-why-card p {
    color: #a0a8b8;
    font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 768px) {
    .auricx-why-title {
        font-size: 2rem;
    }
}


/* ===== Live Performance Section ===== */

.auricx-performance-section {
    background: #060b14;
    padding: 80px 0;
}

.auricx-performance-title {
    color: #f5c542;
    font-size: 2.5rem;
    font-weight: 700;
}

.auricx-performance-subtitle {
    color: #a0a8b8;
    max-width: 750px;
    margin: 15px auto 0;
}

/* Card */

.auricx-performance-card {
    background: #0b111d;
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: 20px;
    padding: 40px;
}

/* YTD */

.auricx-ytd {
    color: #00ff88;
    font-weight: 600;
}

/* Chart Layout */

/* Chart Wrapper */
.auricx-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 300px;
    margin-top: 30px;
    gap: 15px;
}

/* Bars */

.auricx-bar {
    width: 6%;
    background: linear-gradient(to top, #8c6b1f, #f5c542);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: 0.4s ease;
}

.auricx-bar:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
}

/* Month Label */

.auricx-bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #a0a8b8;
    font-size: 0.85rem;
}

/* Responsive */

/* Mobile Responsive Fix */
@media (max-width: 768px) {

    .auricx-performance-card {
        overflow-x: auto;
    }

    .auricx-chart {
        min-width: 700px;   /* important */
        height: 220px;
    }

    .auricx-bar {
        width: 40px;
    }
}
/* ===== CTA Section ===== */

.auricx-cta-section {
    background: #060b14;
    padding: 100px 0;
}

.auricx-cta-card {
    background: #0b111d;
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: 20px;
    padding: 60px 30px;
    max-width: 900px;
    margin: auto;
    transition: 0.4s ease;
}

.auricx-cta-card:hover {
    box-shadow: 0 0 40px rgba(245, 197, 66, 0.2);
}

/* Icon */

.auricx-cta-icon {
    font-size: 30px;
    color: #f5c542;
}

/* Title */

.auricx-cta-title {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 700;
}

.auricx-cta-title span {
    color: #f5c542;
}

/* Subtitle */

.auricx-cta-subtitle {
    color: #a0a8b8;
    max-width: 650px;
    margin: 15px auto 0;
}

/* Button */

.auricx-cta-btn {
    background: linear-gradient(45deg, #f5c542, #d4af37);
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 600;
    color: #000;
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
    transition: 0.4s ease;
}

.auricx-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(245, 197, 66, 0.9);
    color: #000;
}

/* Responsive */

@media (max-width: 768px) {
    .auricx-cta-title {
        font-size: 1.8rem;
    }

    .auricx-cta-card {
        padding: 40px 20px;
    }
}

/* ===== Footer Section ===== */

.auricx-footer {
    background: #060b14;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(245, 197, 66, 0.2);
}

.auricx-footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5c542;
}
.auricx-footer-logo img{
    width: 160px;
}

.auricx-footer-logo span {
    color: #ffffff;
}

.auricx-footer-text {
    color: #a0a8b8;
    margin-top: 15px;
}

/* Headings */

.auricx-footer-heading {
    color: #f5c542;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Links */

.auricx-footer-links,
.auricx-footer-contact {
    list-style: none;
    padding: 0;
}

.auricx-footer-links li,
.auricx-footer-contact li {
    margin-bottom: 10px;
    color: #a0a8b8;
    font-size: 0.95rem;
}

.auricx-footer-links li a {
    text-decoration: none;
    color: #a0a8b8;
    transition: 0.3s;
}

.auricx-footer-links li a:hover {
    color: #f5c542;
}

/* Contact Icons */

.auricx-footer-contact i {
    color: #f5c542;
    margin-right: 8px;
}

/* Social Icons */

.auricx-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: 50%;
    color: #f5c542;
    margin-right: 10px;
    transition: 0.4s;
}

.auricx-footer-social a:hover {
    background: #f5c542;
    color: #000;
    box-shadow: 0 0 20px rgba(245, 197, 66, 0.6);
}

/* Bottom */

.auricx-footer-bottom {
    border-top: 1px solid rgba(245, 197, 66, 0.2);
    padding-top: 20px;
    margin-top: 40px;
    color: #a0a8b8;
    font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 768px) {
    .auricx-footer {
        text-align: center;
    }

    .auricx-footer-social {
        margin-top: 10px;
    }
}
.whatsapp-float {
    text-decoration: none;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

.about-section {
    background: #070c14;
    padding: 100px 0;
    color: #cfd8e3;
}

.about-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.about-header h2 span {
    color: #d4af37;
}

.about-header p {
    max-width: 700px;
    margin: 15px auto 50px;
    font-size: 18px;
    color: #9baac8;
}

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 320px;
}

.about-content h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 16px;
}

.btn-gold {
    background: #d4af37;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-width: 300px;
}

.stat-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.stat-box:hover {
    background: rgba(212,175,55,0.08);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 32px;
    color: #d4af37;
}

.stat-box span {
    font-size: 14px;
    color: #a5b4cf;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}
.vision-mission-section {
    background: #070c14;
    padding: 80px 0;
}

.vm-card {
    background: #0c121d;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.vm-icon {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
}

.vm-card h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
}

.vm-card p {
    color: #9baac8;
    line-height: 1.7;
    font-size: 15px;
}

/* Mobile */

@media (max-width: 768px) {
    .vm-card {
        text-align: center;
    }
}
.expertise-section {
    background: #070c14;
    padding: 100px 0;
}

.expertise-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
}

.expertise-header h2 span {
    color: #d4af37;
}

.expertise-header p {
    color: #9baac8;
    margin-top: 10px;
}

/* Cards */

.expertise-card {
    background: #0c121d;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

/* Icon Box */

.expertise-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #d4af37;
}

/* Text */

.expertise-card h5 {
    color: #ffffff;
    margin-bottom: 10px;
}

.expertise-card p {
    color: #9baac8;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {
    .expertise-header h2 {
        font-size: 32px;
    }
}
/* Section Padding */
.trust-section {
    padding: 80px 0;
    background-color: #000; /* Adjust based on your theme */
}

/* Card Styling with the unique border */
.trust-card {
    background: transparent;
    border: 1px solid rgba(191, 157, 83, 0.3); /* Subtle Gold Border */
    padding: 60px 40px;
    border-radius: 24px;
    transition: all 0.3s ease-in-out;
}

.trust-card:hover {
    border-color: rgba(191, 157, 83, 0.7);
    box-shadow: 0 0 25px rgba(191, 157, 83, 0.1);
}

/* Icon Styling */
.trust-icon {
    font-size: 40px;
    color: #c4a661;
    margin-bottom: 20px;
}

/* Specific Heading Styling (No global h2) */
.trust-title {
    color: #c4a661;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trust-title span {
    color: #c4a661; /* Keeping it consistent, or change if you want a white span */
}

/* Description Styling */
.trust-description {
    color: #a0a0a0;
    font-size: 18px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .trust-card {
        padding: 40px 20px;
    }
    .trust-title {
        font-size: 28px;
    }
}

/* Section Styling */
.packages-section {
    padding: 100px 0;
    background-color: #070c14;;
}

.packages-main-title {
    color: #c4a661;
    font-weight: 700;
    font-size: 2.5rem;
}

.packages-subtitle {
    color: #888;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Card Styling */
.package-card {
    background: transparent;
    border: 1px solid rgba(191, 157, 83, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: 0.3s ease;
}

.package-card:hover {
    border-color: #c4a661;
    box-shadow: 0 0 20px rgba(191, 157, 83, 0.1);
}

/* Featured / Professional Card */
.package-card.featured {
    border-color: #c4a661;
    transform: scale(1.05); /* Slight lift for the main plan */
}

/* Most Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d0d0d;
    border: 1px solid #c4a661;
    color: #c4a661;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Price & Details */
.plan-name { color: #fff; margin-bottom: 15px; }
.plan-price { color: #c4a661; font-size: 2.2rem; font-weight: 700; }
.plan-duration { color: #666; font-size: 0.9rem; margin-bottom: 30px; }

/* Feature List */
.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 35px;
}

.plan-features li {
    color: #aaa;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.plan-features li i {
    color: #c4a661;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Buttons */
.btn-outline-gold {
    display: inline-block;
    border: 1px solid #c4a661;
    color: #c4a661;
    padding: 10px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
}

.btn-outline-gold:hover {
    background: #c4a661;
    color: #000;
}

.btn-gradient-gold {
    display: inline-block;
    background: linear-gradient(135deg, #c4a661, #8a7138);
    color: #000;
    padding: 12px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 4px 15px rgba(191, 157, 83, 0.3);
}

/* Contact Section Background */
.contact-section {
    padding: 100px 0;
    background-color: #070c14;;
}

.contact-main-title {
    color: #c4a661;
    font-weight: 700;
    font-size: 2.5rem;
}

.contact-subtitle {
    color: #888;
}

/* Common Card Styling */
.contact-card {
    background: transparent;
    border: 1px solid rgba(191, 157, 83, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.gold-text {
    color: #c4a661;
}

/* Info Item Styling */
.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(191, 157, 83, 0.1);
    border: 1px solid rgba(191, 157, 83, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a661;
    margin-right: 15px;
    font-size: 1.2rem;
}

.info-item h6 {
    color: #fff;
    margin-bottom: 2px;
}

.info-item p {
    color: #a0a0a0;
    margin: 0;
    font-size: 0.95rem;
}

/* Form Controls */
.form-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.custom-input {
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 15px;
}

.custom-input:focus {
    border-color: #c4a661 !important;
    box-shadow: 0 0 10px rgba(191, 157, 83, 0.2);
}

.custom-input::placeholder {
    color: #555;
}

/* Gradient Button */
.btn-gradient-gold {
    background: linear-gradient(135deg, #c4a661, #8a7138);
    border: none;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-gradient-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 157, 83, 0.4);
}

/* Map Section Styling */
.map-section {
    padding: 40px 0 100px 0;
    background-color: #070c14;;
}

.map-wrapper {
    position: relative;
    border: 1px solid rgba(191, 157, 83, 0.4); /* Gold Border */
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-wrapper iframe {
    display: block;
    /* Filter line ko remove kar diya hai taaki original colors aayein */
    filter: none; 
}

/* Optional: Agar aap thoda sa dark touch chahte hain bina black & white kiye */
/* .map-wrapper iframe { filter: brightness(0.9) saturate(1.2); } */