body {
    font-family: 'Inter', sans-serif;


    line-height: 1.6;
    background: #f7f7f5;
    /* warm off-white */
    color: #111;
    margin: 0;
}




/* CONTAINER SYSTEM */
section {
    padding: 100px 10%;

}

.hero {
    height: 92vh;
    position: relative;

    background: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7") center/cover no-repeat;

    display: flex;
    align-items: center;
    padding: 0 10%;
}

/* DARK OVERLAY FOR TEXT READABILITY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* CONTENT */
.hero-content {
    position: relative;
    color: white;
    max-width: 700px;
}

.hero h1 {
    font-size: 70px;
    line-height: 1.1;
}

.hero p {
    margin-top: 20px;
    color: #ddd;
}


.ticker {
    padding: 18px 0;
    width: 100%;
    overflow: hidden;
    background: #303030;

    border-bottom: 1px solid #eee;
}

/* TRACK */
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 25s linear infinite;
}

/* CONTENT */
.ticker-content {
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 40px;
    /* spacing allowed now */
    font-size: 14px;
}

/* 🔥 FIXED LOOP */
@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* ticker item */
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 40px;

    color: #fff;
    /* 🔥 ONE COLOR CONTROLS BOTH */
    font-size: 14px;
}

/* icon */
.ticker-item i {
    font-size: 14px;
    color: inherit;
    /* 🔥 IMPORTANT */
}


.feature-modern {
    padding: 120px 120px;
    background: #f7f7f5;
    position: relative;
}

/* layout */
.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.feature-left h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #666;
}

.feature-left h2 span {
    color: #000;
    /* accent color */
}

.feature-left p {
    margin: 20px 0;
    color: #666;
    max-width: 400px;
}

/* BUTTONS */
.feature-buttons {
    margin-bottom: 40px;
}

.btn-primary {
    background: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-outline {
    border: 1px solid #000;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
}

/* STATS */
.feature-stats {
    display: flex;
    gap: 40px;
}


.feature-stats h3 {
    font-size: 22px;
}

.feature-stats p {
    font-size: 13px;
    color: #777;
}

/* RIGHT IMAGE */
.feature-right {
    position: relative;
}

.feature-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;

    /* 🔥 CURVED SHAPE */
    border-radius: 1% 1% 1% 50%;
}



.columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    background: #f7f7f5;
}

/* CARD */
.col {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* IMAGE */
.col img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.col-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.2),
            transparent);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;

    color: white;
}

/* TEXT */
.col-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.col-overlay p {
    font-size: 13px;
    opacity: 0.8;
}

/* HOVER EFFECT */
.col:hover img {
    transform: scale(1.08);
}

.col:hover .col-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.3),
            transparent);
}

.columns-section {
    padding: 0 120px 120px 120px;
}

.section-header {
    padding: 0 10% 50px;
    text-align: center;
    /* 🔥 this centers everything */
    max-width: 700px;
    margin: 0 auto;
    /* 🔥 keeps it centered */
}

/* TITLE */
.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
    margin-top: 0;
}

/* SUBTEXT */
.section-header p {
    color: #666;
    font-size: 15px;
}

.quote {
    padding: 60px 120px;
    background: #f1f1ef;
    display: flex;
    justify-content: center;
}

/* container */
.quote-container {
    max-width: 800px;
    text-align: center;
    position: relative;
}

/* big quote mark */
.quote-mark {
    font-size: 120px;
    color: #e5e5e5;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

/* main text */
.quote h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* sub text */
.quote-sub {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    letter-spacing: 1px;
}

.newsletter {
    position: relative;
    padding: 140px 10%;

    background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d") center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* DARK OVERLAY (IMPORTANT) */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* CONTENT BOX */
.newsletter-box {
    position: relative;
    z-index: 1;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);

    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* TEXT */
.newsletter-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

/* INPUT */
.subscribe {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.subscribe input {
    padding: 12px 16px;
    border-radius: 25px;
    border: 1px solid #ddd;
    width: 250px;
}

.subscribe button {
    background: #111;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
}