/* ===== GLOBAL ===== */

html {
    scroll-behavior: smooth;
}

body {
    background: #0c0c0c;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* ===== COLORS ===== */

:root {
    --primary: #fba931;
    --secondary: #3d422f;
}

/* ===== NAVBAR ===== */

.navbar {
    background: white;
    padding: 10px 0;
}

.navbar-brand img {
    height: 65px;
}

.navbar a {
    color: black !important;
    font-weight: 500;
}

.navbar a:hover {
    color: var(--primary) !important;
}

/* ===== HERO LAYOUT ===== */

.hero {
    display: flex;
    height: 100vh;
}

/* ===== LEFT CONTENT ===== */

.hero-content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 80px 0px 80px 200px;
    background: #000; /* Change if you want */
}

/* ===== RIGHT VIDEO ===== */

.hero-video {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== TEXT ===== */

.hero h1 {
    font-size: 55px;
    color: var(--primary);
    font-weight: 700;
}

.hero p {
    max-width: 500px;
    color: #e5e5e5;
    margin: 20px 0;
    line-height: 1.6;
}

/* ===== BUTTON ===== */

.btn-main {
    background: var(--primary);
    color: black;
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-main:hover {
    background: white;
}

/* ===== RESPONSIVE ===== */

@media(max-width: 900px){

    .hero{
        flex-direction: column;
    }

    .hero-content,
    .hero-video{
        width: 100%;
        height: 50vh;
    }

    .hero-content{
        justify-content: center;
        padding: 40px;
    }

    .hero h1{
        font-size: 38px;
    }
}

/* ===== SECTION ===== */

.section {
    padding: 80px 0;
}

.section-title {
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255,169,49,1);
    font-size: 3rem;
}

/* ===== SERVICES ===== */

.service-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(251, 169, 49, 0.4);
}

.service-card h5 {
    margin-top: 15px;
    color: var(--primary);
}

/* ===== BLOG ===== */
.blogs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: scale(1.03);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card h5 {
    color: var(--primary);
}

.insights-btn {
    text-align: center;
    margin-top: 30px;
}
.blog-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Tablet */
@media (max-width: 992px) {
    .blogs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .blogs {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA ===== */

.cta {
    background: linear-gradient(45deg, #3d422f, #000);
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255,169,49,1);
    font-size: 3rem;
}

/* ===== FOOTER ===== */

footer {
    background: black;
    padding: 30px;
    text-align: center;
    color: gray;
}
