 * {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal; 
  box-sizing: border-box;
}
body {
    color: #eee;
    margin: 0;
    font-size: 20px;
}
a {
    text-decoration: none;
    color: #eee;
}
h1 {
        font-size: 36px;
    font-weight: 600;  
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 6%;
    width: 100%;
    margin-bottom: 100px;
}
nav img {
    width: 150px;
    margin-top: 50px;
    
}
.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 19px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: width 0.5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}
@media (max-width) {
    .nav-links ul li {
        display: block;
    }    
}
.sub-header {
    width: 100%;
    height: 60vh;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url('images/background.png');
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1 {
    margin-bottom: 60px;
}

/* Common section styling */
section {
    width: 100%;  /* Full width */
    margin: 0;    /* No margins */
    padding: 50px 20px;  /* Top/bottom 50px, sides 20px for content spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    box-sizing: border-box;
}

/* Individual section backgrounds */
.how-it-works {
    background: linear-gradient(to bottom, #FFFFFF, #E6F0F2);
    color: #000;
}

.monthly-retainer {
    background: linear-gradient(to bottom, #DADEE1, #444);
}

.services {
    background: linear-gradient(to bottom, #F4ECE5, #F4EEE3);
    color: #000;
}

.test {
    background-color: #F7F8FA;
    border-bottom: 1px solid #E5E7EB;
}

/* Layout containers */
.container {
    width: 100%;  /* Full width */
    margin: 0;    /* No margins */
    padding: 0;   /* No padding to avoid double spacing */
}

.row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.services-col,
.how-it-works-col,
.silver-monthly-services-col,
.silverplus-monthly-services-col,
.gold-monthly-services-col {
    flex: 1 1 30%;
    background: rgba(28, 28, 28, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: 0.5s;
}

/* Hover effect */
.services-col:hover,
.how-it-works-col:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Carousel */
.carousel {
    width: 99vw; 
    height: 120vh;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .content .author {
    font-weight: bold;
    letter-spacing: 10px;
}

.carousel .list .item .content .title,
.carousel .list .item .content .topic {
    font-weight: bold;
    font-size: 1em;
    line-height: 1.3em;
}

.carousel .list .item .content .topic {
    color: #f1683a;
}

.carousel .list .item .content .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .content .button {
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;  
    cursor: pointer;        
    color: #000;           
}

.carousel .list .item .content .button:nth-child(2) {
    background-color: transparent;
    color: #eee;             
    border: 1px solid #eee;  
}

/* Rest of your CSS remains unchanged */

/* Thumbnail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: bold;
}

/* Arrows */
.arrows {
    position: absolute;
    top: 85%;
    right: 52%;
    width: 700px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 80%;
    background-color: #eee4;
    border: none;
    font-family: monospace;
    color: #fff;
    font-weight: bold;
    font-size: large;
    transform: .5s;
    z-index: 100;
}

.arrows button:hover {
    background-color: #eee;
    color: #555;
}

.carousel .list .item:nth-child(1) {
    z-index: 1;
}

.carousel .list .item:nth-child(1) .author,
.carousel .list .item:nth-child(1) .title,
.carousel .list .item:nth-child(1) .topic,
.carousel .list .item:nth-child(1) .des,
.carousel .list .item:nth-child(1) .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 1s linear forwards;
}

@keyframes showContent {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.carousel .list .item:nth-child(1) .title {
    animation-delay: 1.2s;
}

.carousel .list .item:nth-child(1) .topic {
    animation-delay: 1.4s;
}

.carousel .list .item:nth-child(1) .des {
    animation-delay: 1.6s;
}

.carousel .list .item:nth-child(1) .buttons {
    animation-delay: 1.8s;
}

.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    border-radius: 20px;
    animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage {
    to {
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    width: 0;
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

@keyframes showThumbnail {
    to {
        width: 150px;
    }
}

.carousel.next .thumbnail {
    transform: translateX(150px);
    animation: transformThumbnail .5s linear 1 forwards;
}

@keyframes transformThumbnail {
    to {
        transform: translateX(0);
    }
}

/* Effect prev click */
.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: outImage 0.5s linear 1 forwards;
}

@keyframes outImage {
    to {
        width: 150px;
        height: 220px;
        border-radius: 20px;
        left: 50%;
        bottom: 50px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    width: 0;
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail 0.5s linear 1 forwards;
}

.carousel.prev .list .item:nth-child(2) .author,
.carousel.prev .list .item:nth-child(2) .title,
.carousel.prev .list .item:nth-child(2) .topic,
.carousel.prev .list .item:nth-child(2) .des,
.carousel.prev .list .item:nth-child(2) .buttons {
    animation: contentOut 1.5s linear 1 forwards;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

/* Time */
.time {
    width: 0;
    height: 5px;
    background-color: #f1683a;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
}

.carousel.next .time,
.carousel.prev .time {
    width: 100%;
    animation: timeRunning 2s linear 1 forwards;
}

@keyframes timeRunning {
    to {
        width: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }
    .carousel .list .item .content .title {
        font-size: 30px;
    }
        .carousel .list .item .content .topic {
            font-size: 20px;
        }
    .carousel.next .thumbnail {
        transform: translateX(0);
    }
    .carousel.prev .thumbnail {
        transform: translateX(0);
    }

}



/* SERVICES */
.service-list {
    list-style: none;
    margin: 30px 0;
}

.service-list li {
    margin-bottom: 20px;
}

.service-list strong {
    display: block;
    font-size: 1.1rem;
}
@media screen and (max-width: 678px) {
    .service-list strong {
        font-size: 1rem;
    } 
}
/* Services section specific */
.services {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 15px;
}

h1 {
    font-size: 36px;
    font-weight: 600;
}

h2 {
    font-size: 30px;
    font-weight: 500;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

p {
    color: #000;
    font-size: 19px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.services-col {
    flex-basis: 31%;
    padding: 20px 12px;
    background: linear-gradient(135deg, #194569, #d8e8f2, #ee9f27);
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: 0.5s;
}

.services-col ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: center;
}

.services-col ul li {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.services-col:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    .services-col {
        margin-bottom: 20px;
    }
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    padding: 100px 8%;
    background: linear-gradient(to right, #eef3f9, #f7f9fc);
    align-items: center;
}

.hero img {
    width: 100%;
    border-radius: 18px;
}

.eyebrow {
    font-weight: 700;
    font-size: 45px;
    color: #c8a24d;
    letter-spacing: 1px;
}

/* GRID */
.grid {
    display: grid;
    gap: 50px;
}

.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}

/* HERO BTN */
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
}

.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.5s;
}

.hero-btn.red-btn {
    background: #fff;
    color: #f44336;
    border: 1px solid #f44336;
    cursor: pointer;
    border-radius: 5px;
}

.hero-btn.red-btn:hover {
    background: #f44336;
    color: #fff;
    transition: 0.5s;
}

nav .fa {
    display: none;
}

.fa {
    font-size: 60px;
    color: #222;
    cursor: pointer;
}

@media (max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
    background: #c8a24d;
    color: #fff;
}

.btn.secondary {
    border: 2px solid #c8a24d;
    color: #c8a24d;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* GLOBAL */
.section.alt {
    background: #eef3f9;
}

.center {
    text-align: center;
}

/* Test section */
.test h2 {
    font-size: 36px;
    font-weight: 600;
}

.test p {
    color: #000;
    font-size: 21px;
    font-weight: 300;
    line-height: 22px;
    padding-bottom: 50px;
}

/* How it works section */

.how-it-works-col {
    flex: 1 1 23%;  /* Adjusted to fit 4 blocks in one row (23% x 4 = 92%) */
    padding: 20px 12px;
    background: linear-gradient(
  135deg,
  #f1e2c6,
  #e0c89b
);  /* Consistent gradient for all blocks */
    border-radius: 10px;
    margin-bottom: 5%;
    margin-top: 5%;
    box-sizing: border-box;
    transition: 0.5s;
    text-align: center;
}

.how-it-works-col:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4 {
    margin-top: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.icons .fa-brands {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
/* 📱 MOBILE RESPONSIVE FIXES */
/* ============================= */

@media (max-width: 768px) {

    .carousel {
        height: 100vh;
    }

    /* CONTENT BOX */
    .carousel .list .item .content {
        top: 15%;
        width: 90%;
        padding-right: 0;
        text-align: center;
    }

    .carousel .list .item .content .author {
        letter-spacing: 4px;
        font-size: 12px;
    }

    .carousel .list .item .content .title,
    .carousel .list .item .content .topic {
        font-size: 20px;
    }

    .carousel .list .item .content .des {
        font-size: 14px;
    }

    /* BUTTONS STACK */
    .carousel .list .item .content .buttons {
        grid-template-columns: 1fr;
        width: 100%;
        justify-content: center;
    }

    .carousel .list .item .content .button {
        width: 100%;
    }

    /* THUMBNAILS */
    .thumbnail {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }

    .thumbnail .item {
        width: 80px;
        height: 120px;
    }

    /* ARROWS CENTER */
    .arrows {
        top: unset;
        bottom: 150px;
        right: 50%;
        transform: translateX(50%);
        width: auto;
        max-width: unset;
    }

    .arrows button {
        width: 35px;
        height: 35px;
    }

    /* ANIMATION SIZE FIX */
    .carousel.next .list .item:nth-child(1) img,
    .carousel.prev .list .item:nth-child(2) img {
        width: 80px;
        height: 120px;
        bottom: 15px;
    }

}
/* ================================= */
/*  MOBILE OVERRIDES */
/* ================================= */

@media (max-width: 768px) {

    /* Prevent huge vertical overflow */
    .carousel {
        height: 100vh !important;
    }

    /* Force content to stay inside screen */
    .carousel .list .item .content {
        width: 94% !important;
        max-width: 94% !important;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 !important;
        top: 8%;
        text-align: center;
        z-index: 20;
    }

    /* Smaller headings */
    .carousel .list .item .content .title {
        font-size: 22px !important;
    }

    .carousel .list .item .content .topic {
        font-size: 18px !important;
    }

    .carousel .list .item .content .author {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .carousel .list .item .content .des,
    .carousel .list .item .content li {
        font-size: 14px;
        line-height: 1.45;
    }

    /* Buttons stack */
    .carousel .list .item .content .buttons {
        grid-template-columns: 1fr !important;
    }

    /* Shrink thumbnails hard */
    .thumbnail {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .thumbnail .item {
        width: 55px !important;
        height: 80px !important;
    }

    /* Override animation thumbnail sizes */
    .carousel.next .list .item:nth-child(1) img,
    .carousel.prev .list .item:nth-child(2) img {
        width: 55px !important;
        height: 80px !important;
        bottom: 10px;
    }

    /* Center arrows properly */
    .arrows {
        left: 50% !important;
        right: unset !important;
        transform: translateX(-50%) !important;
        bottom: 110px;
        top: unset;
        width: auto !important;
    }
}


/* ============================== */
/* VERY SMALL PHONES */
/* ============================== */

@media (max-width: 420px) {

    .thumbnail {
        display: none;
    }

    .arrows {
        bottom: 50px;
    }

    .carousel .list .item .content {
        top: 6%;
    }
}
/* ================================= */
/* 📱 MOBILE: SINGLE CARD MODE */
/* ================================= */

@media (max-width: 768px) {

    /* Limit slide height */
    .carousel {
        height: 100vh !important;
    }

    /* Hide everything except active */
    .carousel .list .item {
        opacity: 0;
        pointer-events: none;
    }

    .carousel .list .item:nth-child(1) {
        opacity: 1;
        pointer-events: auto;
    }

    /* Content box clean */
    .carousel .list .item .content {
        position: absolute;
        top: 10%;
        width: 92% !important;
        padding: 0 !important;
        text-align: center;
        background: rgba(0,0,0,0.55);
        border-radius: 18px;
        padding: 20px !important;
    }

    /* Hide long bullet lists */
    .carousel .list .item .service-list {
        display: none;
    }

    /* Reduce headline weight */
    .carousel .list .item .content .title {
        font-size: 22px !important;
    }

    .carousel .list .item .content .topic {
        font-size: 18px !important;
    }

    .carousel .list .item .content .author {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .carousel .list .item .content .des {
        font-size: 14px;
    }

    /* CTA always visible */
    .carousel .list .item .content .buttons {
        grid-template-columns: 1fr !important;
        margin-top: 15px;
    }

    /* Thumbnails smaller */
    .thumbnail .item {
        width: 55px !important;
        height: 80px !important;
    }

}


/* ================================= */
/* 📱 EXTRA SMALL */
/* ================================= */

@media (max-width: 420px) {

    .thumbnail {
        display: none;
    }

    .carousel .list .item .content {
        top: 7%;
    }

}