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

body {
    font-family: Arial, sans-serif;
    color: #0b1b33;
    background: #f5f8ff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Header */
.top-header {
    background: #06172d;
    color: #fff;
    padding: 9px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-header i {
    color: #ffffff;
    margin-right: 5px;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 16px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 34px;
    color: #0b4edb;
}

.logo h2 {
    font-size: 20px;
    font-weight: 800;
    color: #0b1b33;
}

.logo p {
    font-size: 10px;
    text-transform: uppercase;
    color: #4d5c70;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: #182b47;
    padding: 24px 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #0b4edb;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 62px;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    display: none;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    font-size: 13px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-btn {
    background: #0b4edb;
    color: #fff;
    padding: 13px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.whatsapp {
    width: 42px;
    height: 42px;
    border: 2px solid #20c45a;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #20c45a;
    font-size: 22px;
}

.menu-btn {
    display: none;
    border: none;
    background: #0b4edb;
    color: #fff;
    padding: 10px 13px;
    border-radius: 6px;
    font-size: 20px;
}

/* Hero */
.hero {
    padding: 80px 45px;
    min-height: 600px;
    background: linear-gradient(120deg, #eef4ff, #ffffff);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.tagline {
    display: inline-block;
    background: #dce8ff;
    color: #0b4edb;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: #53627a;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    padding: 14px 24px;
    border-radius: 7px;
    font-weight: 700;
}

.primary-btn {
    background: #0b4edb;
    color: #fff;
}

.secondary-btn {
    background: #fff;
    color: #0b4edb;
    border: 1px solid #0b4edb;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.camera-card {
    width: 380px;
    min-height: 300px;
    background: #06172d;
    border-radius: 25px;
    color: #fff;
    padding: 40px;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 25px 50px rgba(11, 78, 219, 0.25);
}

.camera-card i {
    font-size: 90px;
    color: #4f8cff;
    margin-bottom: 25px;
}

.camera-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.camera-card p {
    color: #d8e4ff;
}

/* Features */
.features {
    padding: 60px 45px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: #fff;
}

.feature-box {
    padding: 30px;
    background: #f5f8ff;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-box i {
    font-size: 38px;
    color: #0b4edb;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.feature-box p {
    color: #5f6f85;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
    .top-header {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 45px;
        gap: 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        padding: 14px 0;
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f5f8ff;
        margin: 5px 0 10px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .quote-btn {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 25px;
    }

    .hero p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        padding: 45px 25px;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 14px 18px;
    }

    .logo h2 {
        font-size: 16px;
    }

    .logo p {
        font-size: 8px;
    }

    .whatsapp {
        width: 38px;
        height: 38px;
    }

    .nav-menu {
        top: 68px;
        padding: 18px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .camera-card {
        width: 100%;
        min-height: 250px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.cctv-hero {
    min-height: 560px;
    padding: 55px 60px 90px;
    background: linear-gradient(105deg, #eef6ff 0%, #ffffff 45%, #eaf4ff 100%);
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-left h1 {
    font-size: 46px;
    line-height: 1.18;
    color: #071936;
    margin-bottom: 18px;
}

.hero-left h1 span {
    color: #0d55d9;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #1e2f48;
    max-width: 520px;
    margin-bottom: 35px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #10233f;
    font-size: 13px;
    font-weight: 700;
}

.hero-points i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8f1ff;
    color: #0d55d9;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btns a {
    padding: 15px 24px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.browse-btn {
    background: #0d55d9;
    color: #fff;
    box-shadow: 0 12px 25px rgba(13, 85, 217, 0.25);
}

.chat-btn {
    background: #fff;
    color: #10233f;
    border: 1px solid #163b76;
}

.chat-btn i {
    color: #17b957;
    font-size: 20px;
}

.hero-right {
    position: relative;
    text-align: right;
}

.hero-img {
    width: 100%;
    max-width: 850px;
    object-fit: contain;
}

.install-card {
    position: absolute;
    top: 0;
    right: 45px;
    background: #fff;
    padding: 24px 26px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.install-card h3 {
    color: #0d55d9;
    font-size: 26px;
}

.install-card p {
    font-size: 13px;
    font-weight: 700;
    color: #26364d;
}

/* Selector */
.package-selector {
    width: calc(100% - 120px);
    margin: -65px auto 50px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 150px 1.2fr 1.7fr 230px;
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.selector-title {
    border-right: 1px solid #dce5f5;
}

.selector-title h3 {
    font-size: 22px;
    line-height: 1.35;
    color: #071936;
}

.selector-step h4 {
    font-size: 13px;
    color: #071936;
    margin-bottom: 16px;
}

.selector-step h4 span {
    width: 21px;
    height: 21px;
    background: #0d55d9;
    color: #fff;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    margin-right: 6px;
}

.selector-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.option {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #10233f;
    font-weight: 700;
}

.option i {
    width: 48px;
    height: 48px;
    background: #edf4ff;
    color: #416fb8;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin: 0 auto 8px;
    transition: 0.3s;
}

.option.active i,
.option:hover i {
    background: #0d55d9;
    color: #fff;
}

.recommend-box {
    border-left: 1px solid #dce5f5;
    padding-left: 30px;
}

.recommend-box h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.recommend-box p {
    font-size: 12px;
    color: #5d6d83;
    margin-bottom: 16px;
}

.recommend-box a {
    background: #0d55d9;
    color: #fff;
    padding: 14px 20px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1200px) {
    .cctv-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 30px 110px;
    }

    .hero-left p,
    .hero-points {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-right {
        margin-top: 35px;
        text-align: center;
    }

    .package-selector {
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 60px);
    }

    .selector-title,
    .recommend-box {
        border: none;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .cctv-hero {
        padding: 40px 18px 95px;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .install-card {
        right: 10px;
        top: -10px;
        padding: 14px 16px;
    }

    .package-selector {
        grid-template-columns: 1fr;
        width: calc(100% - 30px);
        margin-top: -50px;
    }

    .selector-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .selector-title h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .hero-points {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-btns a {
        width: 100%;
        justify-content: center;
    }

    .install-card {
        position: static;
        margin: 15px auto 0;
        width: fit-content;
    }

    .selector-options {
        grid-template-columns: 1fr 1fr;
    }
}

/* Choose Your Property section */

.choose-property-section {
    padding: 30px 20px;
    background: #ffffff;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #071936;
    margin-bottom: 18px;
}

.property-slider {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.property-card {
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.property-card:hover,
.property-card.active {
    border-color: #0d55d9;
    box-shadow: 0 10px 25px rgba(13, 85, 217, 0.12);
    transform: translateY(-5px);
}

.property-card img {
    width: 78px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.property-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #081a35;
    margin-bottom: 4px;
}

.property-card p {
    font-size: 12px;
    color: #53627a;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 992px) {
    .property-slider {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-title {
        font-size: 22px;
    }

    .property-slider {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .property-slider::-webkit-scrollbar {
        height: 5px;
    }

    .property-slider::-webkit-scrollbar-thumb {
        background: #0d55d9;
        border-radius: 20px;
    }

    .property-card {
        min-width: 140px;
        scroll-snap-align: start;
    }

    .property-card img {
        width: 70px;
        height: 65px;
    }
}

/* Popular Packages */

.popular-packages {
    padding: 45px 20px;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading h2 {
    font-size: 28px;
    color: #071936;
    font-weight: 800;
}

.section-heading p {
    color: #4d5c70;
    font-size: 14px;
    margin-top: 5px;
}

.package-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.package-card {
    position: relative;
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 14px;
    padding: 28px 24px 22px;
    text-align: center;
    transition: 0.3s ease;
}

.package-card:hover,
.package-card.active {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(13, 85, 217, 0.12);
    border-color: #0d55d9;
}

.badge {
    position: absolute;
    top: -12px;
    left: 28px;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11px;
    color: #fff;
    font-weight: 800;
}

.badge.green {
    background: #16a34a;
}

.badge.blue {
    background: #0d55d9;
}

.package-card h3 {
    font-size: 17px;
    color: #071936;
    margin-bottom: 6px;
}

.sub-title {
    font-size: 13px;
    color: #53627a;
    margin-bottom: 12px;
}

.package-card img {
    width: 100%;
    height: 115px;
    object-fit: contain;
    margin-bottom: 15px;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 18px;
}

.package-card ul li {
    font-size: 14px;
    color: #23344f;
    margin-bottom: 9px;
    position: relative;
    padding-left: 25px;
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 900;
}

.package-card small {
    display: block;
    color: #53627a;
    font-size: 11px;
    margin-bottom: 3px;
}

.package-card h4 {
    font-size: 22px;
    color: #071936;
    margin-bottom: 14px;
}

.package-card a {
    display: block;
    background: #0d55d9;
    color: #fff;
    padding: 12px 15px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.all-package-btn {
    text-align: center;
    margin-top: 25px;
}

.all-package-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #0d55d9;
    color: #0d55d9;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 23px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 28px 18px 20px;
    }
}

/* Compare Packages */
.compare-section {
    padding: 35px 20px;
    background: #ffffff;
}

.compare-box {
    max-width: 1300px;
    margin: auto;
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 12px;
    padding: 18px 25px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.compare-left h2 {
    font-size: 25px;
    color: #0d55d9;
    margin-bottom: 14px;
}

.compare-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #1f2f46;
    max-width: 210px;
    margin-bottom: 18px;
}

.compare-left button {
    background: #fff;
    color: #0d55d9;
    border: 1px solid #0d55d9;
    border-radius: 5px;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer;
}

.compare-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.compare-table th,
.compare-table td {
    border: 1px solid #e2e9f5;
    padding: 10px 14px;
    text-align: center;
    font-size: 13px;
    color: #071936;
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    font-weight: 700;
}

.compare-table th {
    font-weight: 800;
    background: #fbfdff;
}

.compare-table td:not(:first-child) {
    font-weight: 700;
}

.compare-table td {
    background: #fff;
}

.compare-table td:nth-child(3),
.compare-table th:nth-child(3) {
    background: #eef5ff;
}

.compare-table tbody td:not(:first-child):has(+ td),
.compare-table tbody td {
    vertical-align: middle;
}

.compare-table td {
    position: relative;
}

.compare-table td {
    color: #10233f;
}

.compare-table tbody td {
    font-size: 13px;
}

.compare-table tbody td:not(:first-child) {
    text-align: center;
}

.compare-table tbody td {
    height: 34px;
}

.compare-table tbody td {
    font-weight: 600;
}

.compare-table tbody td:not(:first-child) {
    color: #071936;
}

.compare-table tbody td:nth-child(n + 2):contains("✓") {
    color: #16a34a;
}

.compare-table tbody td {
    line-height: 1;
}

.compare-table td {
    white-space: nowrap;
}

.compare-table td:nth-child(n + 2) {
    font-weight: 800;
}

.compare-table td {
    font-family: Arial, sans-serif;
}

.compare-table td {
    font-size: 13px;
}

.compare-table td {
    border-color: #e6edf7;
}

.compare-table td {
    transition: 0.2s;
}

.compare-table tr:hover td {
    background: #f8fbff;
}

.compare-table tr:hover td:nth-child(3) {
    background: #e7f1ff;
}

.compare-table span {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d55d9;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 10px;
    white-space: nowrap;
}

.popular {
    position: relative;
}

.compare-table tbody td:nth-child(n + 2) {
    font-size: 14px;
}

.compare-table tbody td:nth-child(n + 2) {
    color: #10233f;
}

.compare-table tbody td:nth-child(n + 2) {
    font-weight: 700;
}

/* tick color */
.compare-table td {
    --tick-color: #16a34a;
}

.compare-table td {
    text-align: center;
}

.compare-table td:empty {
    color: transparent;
}

.compare-table td {
    word-break: keep-all;
}

.compare-table td {
    min-width: 110px;
}

.compare-table td:first-child {
    min-width: 150px;
}

.compare-table tbody td {
    color: #10233f;
}

.compare-table tbody td {
    font-weight: 600;
}

.compare-table tbody td {
    letter-spacing: 0;
}

.compare-table tbody td {
    text-transform: none;
}

.compare-table tbody td {
    background-clip: padding-box;
}

.compare-table tbody td {
    box-sizing: border-box;
}

/* JS add class */
.check {
    color: #16a34a !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

/* Responsive */
@media (max-width: 900px) {
    .compare-box {
        grid-template-columns: 1fr;
    }

    .compare-left p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .compare-box {
        padding: 16px;
    }

    .compare-left h2 {
        font-size: 22px;
    }
}

/* Package Section */
.right-package {
    padding: 35px 20px;
    background: #ffffff;
}

.right-package h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #071936;
    margin-bottom: 22px;
}

.right-package-grid {
    max-width: 1260px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.right-card {
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    padding: 16px 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.right-card:hover,
.right-card.active {
    border-color: #0d55d9;
    box-shadow: 0 10px 25px rgba(13, 85, 217, 0.12);
    transform: translateY(-5px);
}

.right-card h4 {
    font-size: 13px;
    font-weight: 800;
    color: #071936;
    margin-bottom: 8px;
}

.right-card h4::after {
    content: " ›";
    color: #0d55d9;
}

.right-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0d55d9;
    margin-bottom: 6px;
}

.right-card p {
    font-size: 12px;
    color: #53627a;
    margin-bottom: 10px;
}

.right-card img {
    width: 100%;
    height: 85px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
    .right-package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .right-package h2 {
        font-size: 22px;
    }

    .right-package-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .right-card {
        min-width: 210px;
        scroll-snap-align: start;
    }
}

/* Projects Section */
.projects-section {
    padding: 35px 20px;
    background: #fff;
    text-align: center;
}

.projects-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #071936;
}

.projects-section p {
    font-size: 14px;
    color: #53627a;
    margin: 5px 0 22px;
}

.projects-wrap {
    max-width: 1220px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.projects-slider {
    width: 100%;
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 10px 12px;
}

.projects-slider::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 210px;
    flex: 1;
    text-align: center;
}

.project-card img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #dbe5f5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.project-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #071936;
    margin-top: 10px;
}

.project-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 1px solid #cfd9ea;
    background: #fff;
    color: #7a8799;
    cursor: pointer;
    font-size: 16px;
    display: grid;
    place-items: center;
    transition: 0.3s;
}

.project-arrow:hover {
    background: #0d55d9;
    color: #fff;
    border-color: #0d55d9;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-section h2 {
        font-size: 23px;
    }

    .projects-wrap {
        gap: 10px;
    }

    .project-card {
        min-width: 220px;
    }

    .project-card img {
        height: 110px;
    }
}

@media (max-width: 480px) {
    .project-arrow {
        display: none;
    }

    .projects-slider {
        gap: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .project-card {
        min-width: 250px;
    }
}

/* Brands Section */
.brand-section {
    padding: 60px 20px;
    background: #fff;
}

.brand-section .container {
    max-width: 1280px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1633;
}

.brand-slider {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-track {
    flex: 1;

    display: flex;
    overflow-x: auto;
    gap: 0;

    scroll-behavior: smooth;

    border: 1px solid #e8edf6;
    border-radius: 12px;
    background: #fff;

    scrollbar-width: none;
}

.brand-track::-webkit-scrollbar {
    display: none;
}

.brand-item {
    min-width: 220px;
    height: 95px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-right: 1px solid #eef2f7;

    transition: 0.35s;
}

.brand-item:last-child {
    border-right: none;
}

.brand-item img {
    max-width: 150px;
    max-height: 45px;

    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.35s;
}

.brand-item:hover img {
    filter: none;
    transform: scale(1.05);
}

.brand-arrow {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 1px solid #d7e1f0;

    background: #fff;
    color: #0b4edb;

    cursor: pointer;

    transition: 0.3s;
}

.brand-arrow:hover {
    background: #0b4edb;
    color: #fff;
}

/* Tablet */

@media (max-width: 991px) {
    .brand-item {
        min-width: 180px;
    }

    .section-heading h2 {
        font-size: 30px;
    }
}

/* Mobile */

@media (max-width: 576px) {
    .brand-arrow {
        display: none;
    }

    .brand-item {
        min-width: 160px;
        height: 80px;
    }

    .brand-item img {
        max-width: 120px;
    }

    .section-heading h2 {
        font-size: 24px;
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 45px 20px;
    background: #fff;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #071936;
    margin-bottom: 25px;
}

.testimonial-wrap {
    max-width: 1220px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.testimonial-slider {
    width: 100%;
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 5px 10px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 330px;
    flex: 1;
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 12px;
    padding: 22px;
    text-align: left;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(13, 85, 217, 0.12);
    border-color: #0d55d9;
}

.stars {
    color: #ffb703;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #1f2f46;
    margin-bottom: 22px;
}

.customer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.customer h4 {
    font-size: 15px;
    color: #071936;
    margin-bottom: 3px;
}

.customer span {
    font-size: 13px;
    color: #53627a;
}

.test-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 1px solid #cfd9ea;
    background: #fff;
    color: #7a8799;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.3s;
}

.test-arrow:hover {
    background: #0d55d9;
    color: #fff;
    border-color: #0d55d9;
}

@media (max-width: 576px) {
    .testimonial-section h2 {
        font-size: 23px;
    }

    .test-arrow {
        display: none;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .testimonial-wrap {
        gap: 0;
    }
}

.knowledge-section {
    padding: 35px 20px 20px;
    background: #fff;
    text-align: center;
}

.knowledge-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: #071936;
}

.knowledge-section > p {
    color: #53627a;
    margin-bottom: 22px;
}

.blog-grid {
    max-width: 1260px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.blog-card {
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    text-align: left;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 85, 217, 0.12);
}

.blog-card img {
    width: 100%;
    height: 105px;
    object-fit: cover;
}

.blog-content {
    padding: 12px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.blog-meta span {
    background: #0d55d9;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.blog-meta small {
    color: #53627a;
    font-size: 11px;
}

.blog-card h3 {
    font-size: 15px;
    color: #071936;
    margin-bottom: 6px;
}

.blog-card p {
    font-size: 13px;
    color: #53627a;
}

.article-btn {
    margin-top: 18px;
}

.article-btn a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: 1px solid #0d55d9;
    color: #0d55d9;
    padding: 10px 22px;
    border-radius: 7px;
    font-weight: 700;
}

/* CTA */
.cta-strip {
    background: linear-gradient(90deg, #0d55d9, #073bb0);
    color: #fff;
    padding: 25px 8%;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 30px;
    align-items: center;
    overflow: hidden;
}

.cta-camera img {
    width: 170px;
    margin-bottom: -60px;
}

.cta-text h2 {
    font-size: 28px;
    margin-bottom: 6px;
}

.cta-actions {
    display: flex;
    gap: 15px;
}

.cta-actions a {
    padding: 13px 24px;
    border-radius: 7px;
    font-weight: 700;
}

.whatsapp-btn {
    background: #fff;
    color: #16a34a;
}

.call-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Footer */
.footer {
    background: #06172d;
    color: #dbe7ff;
    padding: 32px 8%;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr 1.4fr 1.3fr;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo i {
    color: #4f8cff;
    font-size: 32px;
}

.footer-logo h3 {
    color: #fff;
}

.footer-logo p {
    font-size: 9px;
}

.footer-about p,
.footer-contact p,
.footer-newsletter p {
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
    margin: 18px 0;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1b3355;
    color: #fff;
    display: grid;
    place-items: center;
}

.footer h4 {
    color: #fff;
    margin-bottom: 14px;
}

.footer-links a {
    display: block;
    color: #dbe7ff;
    font-size: 14px;
    margin-bottom: 7px;
}

.footer-contact i {
    width: 22px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    margin: 12px 0 10px;
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #0d55d9;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
}

.policy-links {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.policy-links a {
    color: #dbe7ff;
    font-size: 13px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #20c45a;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    z-index: 99;
}

/* Responsive */
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-strip {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-camera img {
        margin-bottom: 0;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 22px;
    }
}

/* Four Camera */
.package-hero {
    padding: 50px 6%;
    background: linear-gradient(105deg, #ffffff, #f3f8ff);
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 30px;
}

.breadcrumb {
    font-size: 13px;
    color: #53627a;
    margin-bottom: 28px;
}

.package-content h1 {
    font-size: 46px;
    color: #071936;
    margin-bottom: 8px;
}

.package-content h3 {
    font-size: 20px;
    color: #071936;
    margin-bottom: 30px;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 24px;
    margin-bottom: 35px;
}

.package-features span {
    font-size: 13px;
    font-weight: 700;
    color: #1f2f46;
    display: flex;
    align-items: center;
    gap: 9px;
}

.package-features i {
    color: #0d55d9;
    font-size: 18px;
}

.price-box {
    max-width: 620px;
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.price-box p {
    font-size: 14px;
    color: #53627a;
}

.price-box h2 {
    font-size: 40px;
    color: #071936;
    line-height: 1;
}

.price-box small {
    color: #53627a;
    font-weight: 700;
}

.quote-btn,
.whatsapp-btn {
    padding: 14px 22px;
    border-radius: 7px;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
}

.quote-btn {
    background: #0d55d9;
    color: #fff;
}

.whatsapp-btn {
    border: 1px solid #20c45a;
    color: #177d3c;
    background: #fff;
}

.package-image {
    position: relative;
    text-align: center;
}

.package-image img {
    width: 100%;
    max-width: 760px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .package-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .package-features {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .price-box {
        margin: auto;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .package-hero {
        padding: 35px 18px;
    }

    .package-content h1 {
        font-size: 32px;
    }

    .package-content h3 {
        font-size: 16px;
    }

    .package-features {
        grid-template-columns: 1fr;
    }

    .price-box {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-btn,
    .whatsapp-btn {
        width: 100%;
        text-align: center;
    }
}

.coverage-section {
    padding: 70px 20px;
    background: #fff;
}

.coverage-section .container {
    max-width: 1280px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: #071936;
}

.section-title p {
    margin-top: 8px;
    color: #6b7280;
    font-size: 15px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.coverage-card {
    background: #fff;
    border: 1px solid #e6ecf5;
    border-radius: 14px;

    overflow: hidden;

    transition: 0.35s;
}

.coverage-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(13, 85, 217, 0.12);

    border-color: #0b4edb;
}

.coverage-image {
    height: 170px;
    overflow: hidden;
}

.coverage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.4s;
}

.coverage-card:hover img {
    transform: scale(1.06);
}

.coverage-content {
    padding: 18px;
}

.coverage-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    color: #071936;
    margin-bottom: 15px;
}

.coverage-content span {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #0b4edb;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 700;
}

.coverage-content p {
    font-size: 15px;
    color: #5d6b81;
    line-height: 1.7;
}

/* Tablet */

@media (max-width: 992px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width: 576px) {
    .coverage-section {
        padding: 50px 15px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .coverage-image {
        height: 210px;
    }
}

.camera-package-section {
    padding: 70px 20px;
    background: #f8fbff;
}

.camera-package-section .container {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #071936;
    font-weight: 800;
}

.section-title p {
    margin-top: 8px;
    color: #6b7280;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.camera-package-card {
    background: #fff;
    border: 1px solid #e5ecf7;
    border-radius: 14px;

    padding: 30px 25px;

    text-align: center;

    position: relative;

    transition: 0.35s;
}

.camera-package-card:hover {
    transform: translateY(-8px);

    border-color: #0b4edb;

    box-shadow: 0 20px 40px rgba(13, 85, 217, 0.12);
}

.camera-package-card.active {
    border: 2px solid #0b4edb;

    box-shadow: 0 20px 45px rgba(13, 85, 217, 0.18);
}

.popular-badge {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    background: #0b4edb;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    padding: 6px 18px;

    border-radius: 30px;
}

.camera-package-card h3 {
    font-size: 24px;
    color: #071936;
    margin-bottom: 8px;
}

.camera-package-card span {
    display: block;
    color: #667085;
    font-size: 14px;
    margin-bottom: 20px;
}

.camera-package-card img {
    width: 100%;
    max-width: 220px;
    margin: auto;
    display: block;
}

.camera-package-card ul {
    list-style: none;

    margin: 25px 0;

    text-align: left;
}

.camera-package-card li {
    margin-bottom: 12px;

    color: #344054;
    font-size: 15px;

    position: relative;

    padding-left: 25px;
}

.camera-package-card li::before {
    content: "✔";

    position: absolute;

    left: 0;

    color: #16a34a;
}

.price {
    margin: 25px 0;
}

.price small {
    color: #6b7280;
}

.price h2 {
    margin-top: 6px;

    font-size: 38px;

    color: #071936;
}

.camera-package-card a {
    display: block;

    padding: 14px;

    border-radius: 8px;

    border: 2px solid #0b4edb;

    color: #0b4edb;

    font-weight: 700;

    transition: 0.3s;
}

.camera-package-card.active a,
.camera-package-card a:hover {
    background: #0b4edb;
    color: #fff;
}

/* Tablet */

@media (max-width: 1100px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width: 600px) {
    .camera-package-section {
        padding: 50px 15px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .camera-package-card {
        padding: 25px 18px;
    }

    .price h2 {
        font-size: 32px;
    }
}

.tech-addon-section {
    padding: 45px 6%;
    background: #fff;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
}

.tech-box,
.addon-box {
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.addon-box {
    background: linear-gradient(135deg, #ffffff, #eefcf5);
}

.tech-box h2,
.addon-box h2 {
    font-size: 23px;
    color: #071936;
    margin-bottom: 8px;
}

.addon-box h2 span {
    color: #53627a;
}

.tech-box > p,
.addon-box > p {
    color: #53627a;
    font-size: 14px;
    margin-bottom: 25px;
}

.camera-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.camera-type h3 {
    font-size: 16px;
    color: #1f2f46;
    margin-bottom: 16px;
}

.camera-row {
    display: flex;
    gap: 18px;
    align-items: center;
}

.camera-row img {
    width: 90px;
    height: 100px;
    object-fit: contain;
}

.camera-row ul {
    list-style: none;
}

.camera-row li {
    font-size: 13px;
    color: #26364d;
    margin-bottom: 9px;
    padding-left: 22px;
    position: relative;
}

.camera-row li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 900;
}

.expert-help {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #e4ebf7;
    text-align: center;
}

.expert-help p {
    font-size: 13px;
    color: #26364d;
    margin-bottom: 12px;
}

.expert-help a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #0d55d9;
    color: #0d55d9;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.addon-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: 0.3s;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 85, 217, 0.12);
}

.addon-card i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #eef5ff;
    color: #0d55d9;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 20px;
}

.addon-card h3 {
    font-size: 14px;
    color: #071936;
    margin-bottom: 5px;
}

.addon-card p {
    font-size: 12px;
    color: #53627a;
    margin-bottom: 8px;
}

.addon-card strong {
    color: #0d55d9;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1100px) {
    .tech-addon-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .camera-compare,
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .camera-row {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .tech-addon-section {
        padding: 30px 15px;
    }

    .tech-box,
    .addon-box {
        padding: 20px;
    }

    .camera-row {
        flex-direction: column;
        text-align: left;
    }
}

.quote-faq-section {
    padding: 35px 6% 15px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1.55fr 1.35fr;
    gap: 25px;
}

.recommend-card,
.install-card,
.pricing-card {
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.recommend-card h3,
.install-card h3,
.pricing-card h3 {
    color: #071936;
    font-size: 20px;
    margin-bottom: 8px;
}

.recommend-card p,
.install-card p,
.pricing-card p {
    color: #53627a;
    font-size: 13px;
    margin-bottom: 16px;
}

.recommend-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.recommend-list div.active {
    background: #eef5ff;
    border-color: #0d55d9;
    color: #0d55d9;
}

.outline-btn {
    display: block;
    text-align: center;
    border: 1px solid #0d55d9;
    color: #0d55d9;
    padding: 11px;
    border-radius: 7px;
    font-weight: 700;
    margin-top: 12px;
}

.install-card {
    text-align: center;
}

.quote-faq-section .install-card {
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
}

.install-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-slider button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #dbe5f5;
    background: #fff;
    color: #0d55d9;
    font-size: 24px;
    cursor: pointer;
}

.install-images {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.install-images::-webkit-scrollbar {
    display: none;
}

.install-images img {
    min-width: 150px;
    height: 105px;
    object-fit: cover;
    border-radius: 10px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 22px;
}

.stats-row div {
    display: grid;
    gap: 5px;
    font-size: 12px;
}

.stats-row i {
    color: #0d55d9;
    font-size: 22px;
}

.stats-row b {
    color: #071936;
    font-size: 16px;
}

.stats-row small {
    color: #53627a;
    font-size: 10px;
}

.pricing-card {
    background: linear-gradient(135deg, #073bb0, #0d55d9);
    color: #fff;
}

.pricing-card h3,
.pricing-card p {
    color: #fff;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-grid label {
    font-size: 12px;
    font-weight: 700;
}

.form-grid input,
.form-grid select {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border-radius: 6px;
    border: none;
}

.quote-submit {
    width: 100%;
    border: none;
    background: #16a34a;
    color: #fff;
    padding: 14px;
    border-radius: 7px;
    margin-top: 16px;
    font-weight: 800;
    cursor: pointer;
}

.or {
    text-align: center;
    margin: 10px 0;
    color: #dbe7ff;
}

.call-now {
    display: block;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px;
    border-radius: 7px;
    color: #fff;
    font-weight: 700;
}

.faq-section {
    padding: 10px 6% 25px;
    background: #fff;
}

.faq-section h3 {
    text-align: center;
    color: #071936;
    font-size: 20px;
    margin-bottom: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.faq-item {
    border: 1px solid #dbe5f5;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: none;
    background: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-item p {
    display: none;
    padding: 0 12px 12px;
    color: #53627a;
    font-size: 13px;
}

.faq-item.active p {
    display: block;
}

.service-row {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: center;
}

.service-row div {
    display: grid;
    gap: 5px;
}

.service-row i {
    color: #0d55d9;
    font-size: 24px;
}

.service-row b {
    color: #071936;
}

.service-row span {
    color: #53627a;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .quote-faq-section {
        grid-template-columns: 1fr;
    }

    .faq-grid,
    .service-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .form-grid,
    .faq-grid,
    .service-row,
    .stats-row {
        grid-template-columns: 1fr;
    }
}

.camera-right-section {
    padding: 45px 24px;
    background: #fff;
    text-align: center;
}

.camera-right-section h2 {
    font-size: 36px;
    color: #071936;
    font-weight: 900;
}

.camera-right-section > p {
    color: #53627a;
    margin: 8px 0 35px;
    font-size: 16px;
}

.camera-right-grid {
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.camera-plan-card {
    position: relative;
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 14px;
    padding: 28px 20px 18px;
    text-align: left;
    transition: 0.3s;
}

.camera-plan-card.active,
.camera-plan-card:hover {
    border-color: #0d55d9;
    box-shadow: 0 15px 35px rgba(13, 85, 217, 0.14);
    transform: translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.basic {
    background: #d8f7df;
    color: #16a34a;
}

.blue {
    background: #0d55d9;
    color: #fff;
    top: -13px;
}

.purple {
    background: #9b6cff;
    color: #fff;
}

.orange {
    background: #ffe1c7;
    color: #f97316;
}

.camera-plan-card h3 {
    text-align: center;
    margin-top: 25px;
    font-size: 23px;
    color: #071936;
}

.camera-plan-card > p {
    text-align: center;
    color: #1f2f46;
    font-weight: 600;
    font-size: 14px;
    margin: 6px 0 18px;
}

.camera-plan-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    margin-bottom: 18px;
}

.camera-plan-card h4 {
    color: #071936;
    font-size: 15px;
    margin-bottom: 10px;
}

.camera-plan-card ul {
    list-style: none;
    min-height: 105px;
}

.camera-plan-card ul.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
}

.camera-plan-card li {
    color: #26364d;
    font-size: 14px;
    margin-bottom: 9px;
    padding-left: 22px;
    position: relative;
}

.camera-plan-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d55d9;
    font-weight: 900;
}

.plan-price {
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    margin-top: 16px;
}

.plan-price small {
    color: #53627a;
    font-weight: 700;
    margin-right: 10px;
}

.plan-price b {
    color: #0d55d9;
    font-size: 22px;
}

.plan-price .green {
    color: #16a34a;
}

.plan-price .purple-price {
    color: #8b5cf6;
}

.plan-price .orange-price {
    color: #f97316;
}

@media (max-width: 1100px) {
    .camera-right-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .camera-right-section {
        padding: 35px 15px;
    }

    .camera-right-section h2 {
        font-size: 26px;
    }

    .camera-right-grid {
        grid-template-columns: 1fr;
    }

    .camera-plan-card img {
        height: 150px;
    }
}

.camera-placement-section {
    padding: 35px 6%;
    background: #f5f9ff;
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 28px;
    border-radius: 14px;
}

.placement-left,
.security-tips {
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 14px;
    padding: 24px;
}

.placement-left {
    text-align: center;
}

.placement-left h2 {
    font-size: 30px;
    font-weight: 900;
    color: #071936;
}

.placement-left > p {
    color: #53627a;
    margin: 8px 0 20px;
}

.placement-img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
}

.placement-tip {
    max-width: 700px;
    margin: 18px auto 0;
    padding: 14px 18px;
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
    color: #1f2f46;
    background: #f8fbff;
}

.placement-tip i {
    color: #0d55d9;
    font-size: 24px;
}

.security-tips h3 {
    font-size: 22px;
    color: #071936;
    margin-bottom: 18px;
}

.tip-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e4ebf7;
    border-radius: 10px;
    margin-bottom: 12px;
    background: #fff;
}

.tip-card i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: #eef5ff;
    color: #0d55d9;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.tip-card h4 {
    font-size: 15px;
    color: #071936;
    margin-bottom: 5px;
}

.tip-card p {
    font-size: 13px;
    color: #53627a;
    line-height: 1.5;
}

.help-box {
    background: #eef5ff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    margin-top: 14px;
}

.help-box h4 {
    font-size: 18px;
    color: #071936;
}

.help-box p {
    font-size: 13px;
    color: #53627a;
    margin: 6px 0 12px;
}

.help-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #0d55d9;
    color: #0d55d9;
    background: #fff;
    padding: 10px 22px;
    border-radius: 7px;
    font-weight: 800;
}

.help-box a i {
    color: #16a34a;
}

@media (max-width: 992px) {
    .camera-placement-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .camera-placement-section {
        padding: 20px 12px;
    }

    .placement-left,
    .security-tips {
        padding: 18px;
    }

    .placement-left h2 {
        font-size: 24px;
    }

    .placement-tip,
    .tip-card {
        align-items: flex-start;
    }
}

.wifi-camera-page {
    padding: 0 6% 40px;
    background: #ffffff;
}

.wifi-tabs {
    display: flex;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid #dbe5f5;
    margin-bottom: 28px;
    overflow-x: auto;
}

.wifi-tabs span {
    padding: 18px 8px;
    color: #0d55d9;
    font-weight: 700;
    white-space: nowrap;
}

.wifi-heading,
.need-heading {
    text-align: center;
    margin-bottom: 26px;
}

.wifi-heading h2,
.need-heading h2 {
    font-size: 30px;
    color: #071936;
    font-weight: 900;
}

.wifi-heading p,
.need-heading p {
    color: #53627a;
    margin-top: 6px;
}

.wifi-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}

.wifi-product-card {
    position: relative;
    background: #fff;
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    padding: 24px 18px 16px;
    transition: 0.3s;
}

.wifi-product-card:hover,
.wifi-product-card.active {
    border-color: #0d55d9;
    box-shadow: 0 12px 30px rgba(13, 85, 217, 0.14);
    transform: translateY(-5px);
}

.wifi-badge {
    position: absolute;
    top: 15px;
    left: 18px;
    padding: 6px 12px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.wifi-badge.green {
    background: #0f8f49;
}
.wifi-badge.blue {
    background: #0d55d9;
}
.wifi-badge.purple {
    background: #6d28d9;
}
.wifi-badge.gold {
    background: #d99a00;
}

.wifi-product-card img {
    width: 100%;
    height: 185px;
    object-fit: contain;
    margin: 15px 0;
}

.wifi-product-card h3 {
    font-size: 20px;
    color: #071936;
    margin-bottom: 16px;
}

.wifi-product-card ul {
    list-style: none;
    border-bottom: 1px solid #e6edf7;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.wifi-product-card li {
    color: #26364d;
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.wifi-product-card li::before {
    content: "⌾";
    position: absolute;
    left: 0;
    color: #0d55d9;
    font-weight: 900;
}

.wifi-product-card small {
    color: #53627a;
}

.wifi-product-card h4 {
    color: #0d55d9;
    font-size: 28px;
    margin: 3px 0 12px;
}

.wifi-product-card a {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #0d55d9;
    color: #fff;
    padding: 13px;
    border-radius: 7px;
    font-weight: 800;
}

.wifi-table-wrap {
    overflow-x: auto;
    margin: 10px 0 35px;
}

.wifi-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.wifi-table th {
    background: #003b99;
    color: #fff;
    padding: 14px;
}

.wifi-table th span {
    background: #0f8f49;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.wifi-table td {
    border: 1px solid #dbe5f5;
    padding: 13px;
    text-align: center;
    color: #1f2f46;
}

.wifi-table td:first-child {
    font-weight: 800;
    text-align: left;
}

.need-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.need-grid div {
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
}

.need-grid i {
    font-size: 36px;
    color: #0d55d9;
}

.need-grid h3 {
    color: #0d3d91;
    font-size: 18px;
}

.need-grid p {
    color: #53627a;
    font-size: 13px;
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .wifi-card-grid,
    .need-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wifi-camera-page {
        padding: 0 15px 30px;
    }

    .wifi-heading h2,
    .need-heading h2 {
        font-size: 24px;
    }

    .wifi-card-grid,
    .need-grid {
        grid-template-columns: 1fr;
    }
}

.product-detail-page {
    padding: 20px 5% 90px;
    background: #fff;
    color: #071936;
}

.breadcrumb {
    font-size: 13px;
    color: #53627a;
    margin-bottom: 18px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.product-gallery {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 15px;
}

.thumbs {
    display: grid;
    gap: 12px;
}

.thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #dbe5f5;
    border-radius: 8px;
    cursor: pointer;
}

.thumbs img.active {
    border-color: #0d55d9;
}

.main-image {
    background: #f3f8ff;
    border-radius: 12px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.category-badge {
    background: #e8f1ff;
    color: #0d55d9;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
}

.product-info h1 {
    font-size: 34px;
    margin: 15px 0 12px;
}

.rating {
    color: #ffb703;
    margin-bottom: 14px;
}

.rating b,
.rating span {
    color: #26364d;
}

.quick-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: #53627a;
    font-size: 13px;
    margin-bottom: 18px;
}

.price {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.price b {
    font-size: 34px;
    color: #0d55d9;
}

.price del {
    color: #7a8799;
}

.price span {
    background: #ffe4e4;
    color: #ef4444;
    padding: 5px 9px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 12px;
}

.shipping,
.stock {
    color: #53627a;
    font-size: 13px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.trust-row div {
    border: 1px solid #dbe5f5;
    border-radius: 8px;
    padding: 14px;
    font-weight: 700;
    font-size: 13px;
}

.action-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.quote-btn,
.whatsapp-btn {
    padding: 14px 28px;
    border-radius: 7px;
    font-weight: 800;
    text-align: center;
}

.quote-btn {
    background: #0d55d9;
    color: #fff;
}

.whatsapp-btn {
    border: 1px solid #16a34a;
    color: #16a34a;
    background: #fff;
}

.stock {
    color: #16a34a;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.feature-row div {
    /* border: 1px solid #dbe5f5; */
    border-radius: 8px;
    padding: 14px;
    font-weight: 800;
}

.feature-row span {
    display: block;
    color: #53627a;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;

    background: #fff;

    border: 1px solid #e5ecf5;

    border-radius: 10px;

    padding: 18px;

    transition: 0.3s;
}

.feature-box:hover {
    border-color: #0b4edb;

    box-shadow: 0 12px 25px rgba(13, 85, 217, 0.12);

    transform: translateY(-5px);
}

.feature-box i {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #eef5ff;

    color: #0b4edb;

    font-size: 24px;
}

.feature-box h4 {
    margin: 0;
    font-size: 16px;
    color: #071936;
}

.feature-box span {
    display: block;
    margin-top: 5px;

    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .feature-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-row {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-box i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
}

.recording-area h2 {
    font-size: 22px;
}

.recording-area > p {
    color: #53627a;
    margin-bottom: 16px;
}

.recording-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.record-card {
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    padding: 22px 15px;
    text-align: center;
    position: relative;
}

.record-card.active {
    border-color: #0d55d9;
}

.record-card span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #0d55d9;
    color: #fff;
    padding: 6px;
    font-size: 11px;
    font-weight: 800;
}

.record-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 15px auto;
}

.record-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.record-card p {
    color: #53627a;
    font-size: 13px;
    min-height: 44px;
}

.record-card h4 {
    color: #0d55d9;
    font-size: 22px;
    margin: 14px 0;
}

.record-card button {
    width: 100%;
    padding: 11px;
    border-radius: 6px;
    border: 1px solid #0d55d9;
    background: #fff;
    color: #0d55d9;
    font-weight: 800;
}

.record-card.active button {
    background: #0d55d9;
    color: #fff;
}

.included-box,
.faq-box,
.record-info {
    border: 1px solid #dbe5f5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 18px;
}

.included-box ul {
    list-style: none;
}

.included-box li {
    padding: 9px 0;
    color: #26364d;
}

.faq-box button {
    width: 100%;
    border: none;
    background: #fff;
    padding: 13px 0;
    border-bottom: 1px solid #e6edf7;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.record-info {
    margin-top: 28px;
    background: #f3f8ff;
}

.record-info p {
    color: #53627a;
    line-height: 1.6;
}

.sticky-buy {
    position: fixed;
    left: 5%;
    right: 5%;
    bottom: 15px;
    background: #fff;
    border: 1px solid #dbe5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 15px;
    align-items: center;
    z-index: 999;
}

.sticky-buy b {
    color: #0d55d9;
    font-size: 22px;
}

@media (max-width: 1100px) {
    .product-layout,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .feature-row,
    .recording-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-buy {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .thumbs {
        display: flex;
        overflow-x: auto;
    }

    .main-image img {
        height: 300px;
    }

    .product-info h1 {
        font-size: 26px;
    }

    .trust-row,
    .feature-row,
    .recording-grid {
        grid-template-columns: 1fr;
    }

    .action-row {
        flex-direction: column;
    }
}
