/* ===== BASE ===== */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Main content wrapper (footer fix) */
.main-content {
    flex: 1;
}
/* ===== HEADER ===== */
.header {
    background: #1f2d3d;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between; /* LEFT logo | RIGHT menu */
}

.logo {
    color: #fff;
    margin: 0;
    font-size: 26px;
}

.nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    color: #00c3ff;
}


/* ===== HERO (HOME) ===== */
.hero-main {
    background: url('images/hero-cctv.jpg') center/cover no-repeat;
    height: 650px;
    position: relative;
}

.hero-main-overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    color: #f1f1f1;
    font-size: 22px;
    max-width: 700px;
}

.btn-hero.big {
    font-size: 20px;
    padding: 22px 44px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}





.hero-action {
    margin-left: 50px;
}

/* EXTRA BIG CTA */
.btn-hero.big {
    font-size: 20px;
    padding: 22px 44px;          /* 👈 bada */
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    white-space: nowrap;
}

/* ===== SERVICES ===== */
.services {
    padding: 50px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    
}


.card {
    background: #fff;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: #f8f5ee;
    padding: 60px 0;
}

.about-hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-grid img {
    width: 100%;
    border-radius: 15px;
}

.about-section {
    padding: 60px 0;
}

.about-section h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.about-features {
    background: #f8f5ee;
    padding: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ===== FOOTER ===== */
.footer {
    background: #1f2d3d;
    color: #fff;
    text-align: center;
    padding: 15px;
}


/* ===== MAIN HERO (TRUSTED CCTV) ===== */
.hero-main {
    background: url('images/hero-cctv.jpg') center/cover no-repeat;
    height: 650px;              /* 👈 bada block */
    position: relative;
}


.hero-main-overlay {
    background: rgba(0,0,0,0.65);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content h2 {
    color: #fff;
    font-size: 46px;
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content p {
    color: #ddd;
    font-size: 20px;
    max-width: 650px;
}

.btn-hero {
    display: inline-block;
    margin-top: 25px;
    background: #00c3ff;
    color: #000;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
}



/* HERO FLEX LAYOUT */
.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    max-width: 650px;
}

.hero-action {
    margin-left: 40px;
}

/* BIG CTA BUTTON */
.btn-hero.big {
    font-size: 18px;
    padding: 18px 36px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}




/* SECTION HEADINGS */
.services h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.services h3::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #00c3ff;
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

/* Card Titles */
.card h4 {
    font-size: 20px;
    margin: 10px 0;
    color: #1f2d3d;
}

/* MORE BUTTON */
.btn-more {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: #1f2d3d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.btn-more:hover {
    background: #00c3ff;
    color: #000;
}


/* SERVICES GRID FIX (2 cards ho ya 3, same look) */
.services .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 360px));
    gap: 25px;
    justify-content: center; /* 👈 cards ko center me rakhega */
}
