/* Core Reset to force Desktop width */
body {
    min-width: 1200px;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: auto; /* Allows horizontal scrolling on small screens */
}
.custom-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Top */
.header-top {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
}

/* Header Lower Flex Layout */
.header-lower {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation List */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    color: #0f8db4;
    font-weight: 600;
    transition: 0.3s;
    font-size: 1.3rem;
}

.nav-list li a:hover {
    color: #1a396b;
}

/* Simple Dropdown Logic */
.has-dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 150px;
    padding: 10px 0;
    z-index: 100;
}

.has-dropdown:hover .submenu {
    display: block;
}

.submenu li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

/* Action Button */
.start-btn {
    background: #1a396b;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
}
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* MAIN SLIDER */
.main-slider {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

/* CONTAINER */
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
    transform: translateX(0);
    z-index: 2;
}

/* PREVIOUS */
.slide.prev {
    transform: translateX(-100%);
}

/* DARK OVERLAY */
.slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 30, 0.65);
}

/* CONTENT */
.content-boxed {
    position: relative;
    max-width: 600px;
    margin-left: 8%;
    color: #fff;
    z-index: 3;
}

/* TITLE */
.title {
    font-size: 2.5em;
    letter-spacing: 2px;
    color: #00c6ff;
    margin-bottom: 10px;
}

/* HEADING */
.content-boxed h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* PARAGRAPH */
.content-boxed p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 25px;
}

/* BUTTON */
.theme-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1a396b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.theme-btn:hover {
    transform: translateY(-3px);
}

/* TYPING EFFECT */
/* TYPING CURSOR */
.typing-text {
    border-right: 2px solid #00c6ff;
    white-space: normal; /* FIXED */
    overflow: hidden;
    display: inline-block;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* PARAGRAPH ANIMATION */
.content-boxed p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* BUTTON ANIMATION */
.theme-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* WHEN ACTIVE */
.slide.active .content-boxed p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}

.slide.active .theme-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2s;
}
/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots span.active {
    background: #00c6ff;
    transform: scale(1.2);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #00c6ff;
    margin-bottom: 10px;
}

.section-header p {
    color: #bbb;
}

/* ================= SERVICES ================= */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #132c5c;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    color: #fff;
}
.service-card h3 {
    margin-bottom: 15px;
    color: #00c6ff;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #1d3f7a;
}

.service-card .icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* ================= ABOUT ================= */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tag {
    color: #00c6ff;
    font-size: 14px;
}

.about h2 {
    font-size: 32px;
    margin-top: 10px;
}

.about p {
    color: #ccc;
    margin-bottom: 20px;
}

/* ================= REFERRAL ================= */
.referral {
    padding: 80px 0;
}

.referral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.referral img {
    width: 100%;
    border-radius: 12px;
}

.referral ul {
    margin: 20px 0;
    list-style: none;
}

.referral ul li {
    margin-bottom: 10px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #1a396b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}


/* CONTAINER */
.containerxx {
    width: 1200px;
    margin: auto;
}

/* TITLES */
.section-title {
    font-size: 34px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #160a0a;
    margin-bottom: 50px;
}

/* ================= STEPS ================= */
.steps-section {
    padding: 100px 0;
}

.steps-grid {
    display: flex;
    gap: 25px;
}

/* GLASS CARD */
.step-card {
    flex: 1;
    padding: 30px;
    border-radius: 15px;
    background:  #1a396b;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.step-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, #00c6ff, transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
    color: #fff;
}

.step-card:hover::before {
    opacity: 0.2;
}

.step-card:hover {
    transform: translateY(-12px) scale(1.02);
}
.step-card h3 {
    margin-bottom: 15px;
    color: #00c6ff;
}
.step-card p {
    color: #ccc;
}
.step-number {
    color: #fff;
    font-size: 28px;
}

/* ================= FEATURES ================= */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: flex;
    gap: 40px;
}

/* LEFT GRID */
.features-left {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 20px;
    border-radius: 12px;
    background: ghostwhite;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.feature-card:hover {
    background: rgba(0,198,255,0.15);
    transform: translateY(-8px);
}
.feature-card h4 {
    margin-bottom: 10px;
    color: #00c6ff;
}
/* RIGHT */
.features-right {
    width: 50%;
}

.features-right h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #00c6ff;
}

.features-right p {
    color: #171313;
    margin-bottom: 25px;
}

/* MINI */
.mini-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mini-box {
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

/* BUTTON */
.btn-primary {
    padding: 12px 25px;
    border-radius: 30px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* ================= ANIMATION ================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= FORCE DESKTOP ON MOBILE ================= */
@media (max-width: 768px) {
    body {
        min-width: 1200px;
    }
}

/* SECTION */
.pricing-section {
    padding: 100px 0;
    text-align: center;
}
.section-title {
    font-size: 36px;
    color: #0d89d7;
    margin-bottom: 10px;
}
/* GRID */
.pricing-grid {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.plan-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.447);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
    position: relative;
    border: 1px solid #141089;
}

/* HOVER */
.plan-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(0,198,255,0.1);
}

/* POPULAR PLAN */
.plan-card.popular {
    border: 1px solid #141089;
}

/* TITLE */
.plan-card h3 {
    font-size: 20px;
    margin-bottom: 0px;
    color: #fff;
    background-color: #064283;
    padding: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* PROFIT */
.plan-profit {
    font-size: 40px;
    color: #064283;
    margin-bottom: 5px;
}

/* DURATION */
.plan-duration {
    font-size: 14px;
    color: #0d5a8a;
}

/* LIST */
.plan-card ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.plan-card ul li {
    margin: 10px 0;
    color: #1b0404;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: #1a396b;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* SECTION */
.trade {
    padding: 100px 0;
}

/* HEADER */
.header-section {
    text-align: center;
    margin-bottom: 60px;
}

.header-section h1 {
    font-size: 36px;
    color: #0d5a8a;
    margin-bottom: 10px;
}

.header-section p {
    color: #aaa;
}

/* GRID */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.investment-card {
    background: #064283;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;
    position: relative;
}

/* HOVER EFFECT */
.investment-card:hover {
    transform: translateY(-12px) scale(1.02);
    border: 1px solid rgba(0,198,255,0.4);
}

/* IMAGE */
.visual-box {
    position: relative;
    overflow: hidden;
}

.visual-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

/* IMAGE ZOOM */
.investment-card:hover img {
    transform: scale(1.1);
}

/* DARK OVERLAY */
.visual-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    top: 0;
}

/* FLOATING ICON */
.floating-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #00c6ff;
    padding: 10px;
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    animation: float 3s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* CONTENT */
.content-box {
    padding: 20px;
}

/* TAG */
.category-tag {
    font-size: 12px;
    color: #00c6ff;
    text-transform: uppercase;
}

/* TITLE */
.content-box h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #fff;
}

/* TEXT */
.content-box p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}

/* FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LINK */
.btn-link {
    color: #00c6ff;
    text-decoration: none;
    font-size: 14px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* STATUS */
.status-pill {
    background: rgba(0, 200, 255, 0.194);
    color: #00c6ff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,198,255,0.4);
}
.investment-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, #00c6ff, transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.investment-card:hover::before {
    opacity: 0.15;
}
.athrocoin-showcase{
    padding:90px 20px;
    background:#fff;
}

.athrocoin-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

/* ===== MEDIA SIDE ===== */

.athrocoin-media{
    flex:1;
    min-width:300px;
}

.media-stack{
    position:relative;
    display:flex;
    justify-content:center;
}

.media-main img{
    width:100%;
    max-width:420px;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* ===== GROWTH CARD ===== */

.growth-card{
    position:absolute;
    bottom:-25px;
    left:20px;
    background:#12a2e0;
    color:#fff;
    padding:20px;
    border-radius:10px;
    width:200px;
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.growth-header{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    margin-bottom:8px;
}

.growth-header i{
    font-size:16px;
}

.growth-value{
    font-size:28px;
    font-weight:700;
    margin-bottom:5px;
}

.growth-meta{
    font-size:12px;
    opacity:.9;
}

/* ===== TEXT SIDE ===== */

.athrocoin-info{
    flex:1;
    min-width:320px;
}

.athrocoin-tag{
    display:inline-block;
    font-size:13px;
    font-weight:600;
    color:#12a2e0;
    margin-bottom:10px;
    letter-spacing:1px;
}

.athrocoin-title{
    font-size:34px;
    line-height:1.3;
    margin-bottom:15px;
    color:#111;
}

.athrocoin-text{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

/* ===== FEATURES ===== */

.athrocoin-features{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.athrocoin-features li{
    margin-bottom:10px;
    color:#333;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
}

.athrocoin-features i{
    color:#12a2e0;
}

/* ===== BUTTONS ===== */

.athrocoin-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#12a2e0;
    color:#fff;
    padding:12px 26px;
    border:none;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    background:#12a2e0;
}

.btn-secondary{
    background:#f0f2f7;
    color:#111;
    padding:12px 26px;
    border:none;
    border-radius:6px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-secondary:hover{
    background:#e2e5ec;
}

.hero {
    padding: 80px 5%;
    background: #f5f7fa;
    position: relative;
}

.containerx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #7a8a99;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 48px;
    margin: 20px 0;
    color: #0d2c4f;
    line-height: 1.2;
}

.highlight {
    font-size: 20px;
    color: #1e73be;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.description {
    font-size: 17px;
    color: #6c7a89;
    line-height: 1.7;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}
.main-footer {
    background: #1a396b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
}
.footer-content p {
    margin-bottom: 15px;
    font-size: 14px;
}
.footer-content a {
    color: #00c6ff;
    text-decoration: none;
    font-weight: 600;
}
.footer-content a:hover {
    text-decoration: underline;
}
.footer-links {
    margin-top: 20px;
}

@media(max-width:900px){

.athrocoin-container{
    flex-direction:column;
    text-align:center;
}

.athrocoin-media{
    order:1;
}

.athrocoin-info{
    order:2;
}

.athrocoin-features li{
    justify-content:center;
}

.growth-card{
    position:relative;
    margin-top:20px;
    left:auto;
    bottom:auto;
}

.athrocoin-actions{
    justify-content:center;
}

}

    

/* ================= MOBILE (KEEP DESKTOP STYLE) ================= */
@media (max-width: 768px) {

    body {
        min-width: 1200px; /* force desktop */
    }

    .grid-container {
        grid-template-columns: repeat(3, 1fr); /* stay 3 */
    }
}

/* KEEP DESKTOP LOOK ON MOBILE */
@media (max-width: 768px) {
    body {
        min-width: 1200px;
    }

    .pricing-grid {
        flex-direction: row; /* stay horizontal */
    }
}
/* ================= RESPONSIVE ================= */

/* KEEP DESKTOP LOOK EVEN ON MOBILE */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* stays 3 */
        overflow-x: auto;
    }

    .about-grid {
        grid-template-columns: 1fr; /* stack */
    }

    .referral-grid {
        grid-template-columns: 1fr;
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .content-boxed {
        margin-left: 5%;
        max-width: 90%;
    }

    .content-boxed h1 {
        font-size: 28px;
    }

    .content-boxed p {
        font-size: 14px;
    }
}
