*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    color: #666;
    background: #fff;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #880000;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: #aa2222;
}
strong {
    font-weight: 700;
}
em {
    font-style: italic;
}
p {
    padding-bottom: 1em;
}
p:last-child {
    padding-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333;
    line-height: 1em;
    font-weight: 500;
}

.container {
    width: 95%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 4%;
}
@media (min-width: 981px) {
    .container {
        padding: 0 8%;
    }
}

.btn {
    display: inline-block;
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #880000;
    padding: 10px 28px;
    border: 2px solid #880000;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn:hover {
    background: #aa2222;
    border-color: #aa2222;
    color: #fff;
}
.btn-outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #880000;
}

/* ===== HEADER ===== */
header#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    padding: 14px 40px;
    background: rgba(17, 17, 17, 0.85);
    border-bottom: 2px solid #880000;
    transition: all 0.3s;
}
.header-main.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.header-main nav {
    display: flex;
    gap: 8px;
}
.header-main nav a {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    padding: 6px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.header-main nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-logo {
    max-width: 500px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
}

.section h2 {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}
.section .subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
    text-align: center;
}

/* Overview — RED background + white text */
.overview {
    background: #880000;
    color: #fff;
    border-top: 2px solid #fff;
    border-bottom: 3px solid #fff;
}
.overview .container {
    padding: 0 8%;
}
.overview h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}
.overview .tagline {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: left;
    line-height: 1.3;
}
.overview p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}
.overview p strong {
    color: #fff;
}

.row {
    display: flex;
    gap: 50px;
}
.col-2 {
    flex: 1;
}

/* Ventures — dark bg */
.ventures {
    background: #111;
    border-top: 2px solid #fff;
    border-bottom: 5px solid #880000;
}
.ventures h2,
.ventures .subtitle {
    color: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.card img {
    width: 200px;
    margin: 0 auto 16px;
    border-radius: 8px;
}
.card h3 {
    margin-bottom: 12px;
}
.card h3 a {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* Blog */
.blog {
    background: #f5f5f5;
    border-bottom: 5px solid #000000;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.blog-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: translateY(-3px);
}
.blog-card h3 {
    padding: 16px 20px 6px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.blog-card h3 a {
    color: #333;
}
.blog-card h3 a:hover {
    color: #880000;
}
.blog-card p {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #666;
}
.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-cta {
    text-align: center;
    margin: 0 auto;
}
.blog-cta p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

/* About — red bg + white text */
.about {
    border-top: 1px solid #ffffff;
    background: #880000;
    color: #fff;
    padding: 80px 0;
}
.about h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 20px;
}
.about-subtitle {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 18px;
    color: #fff;
    text-align: left;
    line-height: 1.4;
    border-bottom: 2px dotted;
    margin-bottom: 20px;
    padding-bottom: 20px !important;
}
.about-subtitle strong {
    color: #fff;
}

.about-row {
    margin-bottom: 40px;
}

.about-text {
    margin-bottom: 50px;
}
.about-text p {
    margin-bottom: 16px;
    font-size: 14px;
    color: #fff;
}
.about-text p strong {
    color: #fff;
}

.about-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.newsletter {
    grid-column: span 2;
    background: #000;
    color: #ccc;
    padding: 40px 30px;
    border-radius: 10px;
}

.newsletter {
    flex: 1;
    background: #000;
    color: #ccc;
    padding: 40px 30px;
    border-radius: 10px;
}
.newsletter h3 {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.newsletter h3 {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.newsletter p {
    font-size: 13px;
    margin-bottom: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.newsletter-form input {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
}
.newsletter-form input::placeholder {
    color: #888;
}
.newsletter-form input:focus {
    outline: none;
    border-color: #880000;
}
.newsletter-form .btn {
    flex: 0 0 auto;
    padding: 12px 24px;
    font-size: 13px;
}
.newsletter-footer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 16px;
}

.team-member {
    background: transparent;
    padding: 20px 24px;
    border: none;
}
.team-member img {
    width: 150px;
    margin: 0 auto 12px;
    border-radius: 6px;
}
.team-member h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-align: center;
}
.team-member .role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}
.team-member p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: center;
}
.team-member a {
    display: block;
    background: #ddd;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    margin: 0 40%;
    padding: 10px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    justify-content: center;
    text-align: center;
}
.team-member a:hover {
    background: rgba(255, 255, 255, 0.85);
    color: #aa2222;
}
.team-member a i {
    margin-right: 6px;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 5px solid #ccc;
    background: #000;
    color: #bbb;
    padding: 60px 0 0;
    font-size: 13px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.footer-col h4 {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col {
    padding-right: 10%;
}
.footer-col p {
    margin-bottom: 14px;
    line-height: 1.6;
}
.footer-col strong {
    color: #880000;
}
.footer-col a {
    color: #aaa;
}
.footer-col a:hover {
    color: #880000;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-col nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #aaa;
    padding: 4px 0;
}
.footer-col nav a:hover {
    color: #880000;
    padding-left: 6px;
}

.footer-col-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.footer-sub h4 {
    font-family: "Montserrat", "Cairo", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-sub p {
    margin-bottom: 8px;
    padding-bottom: 2px;
    line-height: 1.6;
}
.footer-sub strong {
    color: #880000;
}
.footer-sub a {
    color: #ccc;
}
.footer-sub a:hover {
    color: #eee;
}

.footer-sub nav {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.footer-sub nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #aaa;
    padding: 1px 0;
}
.footer-sub nav a:hover {
    color: #880000;
    padding-left: 6px;
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}
.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: #880000;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}
.social a:hover {
    background: #aa2222;
}

.copyright {
    border-top: 1px dotted #fff;
    background: #880000;
    color: #fff;
    text-align: left;
    padding: 16px 10%;
    font-size: 12px;
    line-height: 20px;
    margin-top: 60px;
}
.copyright a {
    color: #fff;
}
.copyright a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .overview h2 {
        font-size: 48px;
    }
    .overview .tagline {
        font-size: 20px;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-bottom {
        flex-direction: column;
    }
    .row {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section {
        padding: 120px 0;
    }
    .section h2 {
        font-size: 28px;
    }
    .overview h2 {
        font-size: 36px;
    }
    .overview .tagline {
        font-size: 18px;
    }
    .hero {
        min-height: 400px;
    }
    .hero-logo {
        max-width: 280px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }

    .header-main {
        justify-content: space-between;
        padding: 10px 20px;
    }
    .header-main nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 10px 20px;
        gap: 0;
    }
    .header-main nav.open {
        display: flex;
    }
    .header-main nav a {
        padding: 12px 16px;
        text-align: right;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .hamburger {
        display: block;
    }
}
