:root {
    --primary: #be0000;
    --accent: #ee3f36;
    --text: #111;
    --muted: #6c757d;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto;
    color: var(--text);
}

/* Smooth base */
* {
    transition: all 0.25s ease;
}

/* Navbar */
.navbar {
    padding: 20px 0 !important;
    border-bottom: 1px solid #eee;
}
.navbar-brand {
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    background:
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
        url('/assets/images/herobg.jpg') center/cover no-repeat;
    /*background:
        linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)),
        url('https://cdn.pixabay.com/photo/2015/01/23/19/44/magazines-609359_1280.jpg') center/cover no-repeat;*/
    position: relative;
}

/* LEFT ACCENT BAR */
.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

/* Hero text entrance */
.hero h1,
.hero p,
.hero .btn {
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color:#fff;
}
.hero p {
    font-size: 18px;
    margin-top: 20px;
    max-width: 500px;
}

.hero p span {
    background: #be0000;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    color: #fff;
    padding: 3px 10px;
    line-height: 34px;
}
/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    padding: 12px 26px;
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(190,0,0,0.25);
}

.btn-outline-dark {
    padding: 12px 26px;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

/* Section Accent Line */
.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section h2 {
    font-size: 34px;
    font-weight: 600;
}
.section p {
    color: var(--muted);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Background section */
.bg-image {
    background:
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
        url('https://www.kivaa.in/images/careers.jpg') center/cover no-repeat;
    background-size: 105%;
    transition: background-size 1.5s ease;
}
.bg-image:hover {
    background-size: 110%;
}

/* Feature boxes */
.feature-box {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}
.feature-box:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Light section */
.bg-light-image {
    background:
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
        url('https://www.kivaa.in/images/careers.jpg') center/cover no-repeat;
    background-size: 105%;
    transition: background-size 1.5s ease;
}
.bg-light-image:hover {
    background-size: 110%;
}

/* Latest Releases accent */
.feature-box small {
    display: inline-block;
    padding-left: 10px;
    border-left: 3px solid var(--accent);
    margin-bottom: 8px;
}

/* Footer */
.footer {
    padding: 0 0 60px 0;
    border-top: 1px solid #eee;
    background: #fafafa;

    font-size: 15px; /* base increased */

    /* animation */
    opacity: 0;
    transform: translateY(30px);
}
.footer.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer accent */
.footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-bottom: 30px;
}

/* Headings inside footer */
.footer h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Links */
.footer a {
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary);
}

/* List spacing */
.footer ul li {
    margin-bottom: 6px;
}

/* Small text (copyright etc) */
.footer small {
    font-size: 14px;
    color: var(--muted);
}

/* Navbar underline animation */
.nav-link::after {
    transition: width 0.3s ease;
}