        :root {
            --primary: #4aa7f3;
            --primary-dark: #1674c5;
            --dark: #070e1d;
            --dark-2: #0d1728;
            --light: #f5f9fd;
            --text: #172033;
            --muted: #6b7280;
            --border: #e5eaf0;
        }

        .breadcrumb-section {
            min-height: 260px;
            display: flex;
            align-items: center;
            position: relative;
            background:
                linear-gradient(rgba(7, 14, 29, .82), rgba(7, 14, 29, .82)),
                url("assets/images/blogbg.jpg") center/cover no-repeat;
        } 
        .breadcrumb-section h1 {
            color: #fff;
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 800;
   margin-bottom: 15px;
  margin-top: 78px;
        }

        .breadcrumb-item,
        .breadcrumb-item a {
            color: rgba(255, 255, 255, .8);
        }

        .breadcrumb-item.active {
            color: var(--primary);
        }

        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, .5);
        }
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #fff;
  content: var(--bs-breadcrumb-divider, "/");
}
        /* =========================================
           PRODUCT HERO
        ========================================= */

        .product-section {
            padding: 90px 0;
            background: #fff;
        }

        .product-image-box {
            background: linear-gradient(145deg, #f6faff, #edf5fc);
            border: 1px solid #e3edf6;
            border-radius: 25px;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 45px;
            position: relative;
            overflow: hidden;
        }

        .product-image-box::before {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(74, 167, 243, .12);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .product-image-box img {
            max-width: 100%;
            max-height: 410px;
            object-fit: contain;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 20px 25px rgba(0, 0, 0, .18));
        }

        .product-badge {
            position: absolute;
            top: 25px;
            left: 25px;
            background: var(--primary);
            color: #fff;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            z-index: 3;
        }

        .product-content {
            padding-left: 30px;
        }

        .eyebrow {
            color: var(--primary-dark);
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .product-content h2 {
            font-size: clamp(34px, 4vw, 50px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .product-content h2 span {
            color: var(--primary);
        }

        .product-description {
            color: var(--muted);
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .feature-mini {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-weight: 600;
        }

        .feature-mini i {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #eef7ff;
            color: var(--primary-dark);
            border-radius: 50%;
        }

        .btn-primary-custom {
            background: var(--primary);
            border: 0;
            color: #fff;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: 700;
            transition: .3s;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            border: 1px solid #d9e3ec;
            color: var(--text);
            padding: 13px 24px;
            border-radius: 8px;
            font-weight: 700;
        }

        .btn-outline-custom:hover {
            background: var(--dark);
            color: #fff;
        }

        /* =========================================
           FEATURE STRIP
        ========================================= */

        .feature-strip {
            background: var(--dark);
            padding: 35px 0;
        }

        .feature-box {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #fff;
        }

        .feature-box i {
            font-size: 27px;
            color: var(--primary);
        }

        .feature-box h6 {
            margin: 0 0 4px;
            font-weight: 700;
            color: #fff;
            text-align: center;
        }

        .feature-box span {
            color: #aeb8c8;
            font-size: 13px;
        }

        /* =========================================
           SPECIFICATIONS
        ========================================= */

        .spec-section {
            padding: 90px 0;
            background: var(--light);
        }

        .section-heading {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 55px;
        }

        .section-heading .small-title {
            color: var(--primary-dark);
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1.5px;
        }

        .section-heading h2 {
            font-size: clamp(30px, 4vw, 42px);
            font-weight: 800;
            margin-top: 10px;
        }

        .section-heading p {
            color: var(--muted);
            line-height: 1.8;
        }

        .spec-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 25px;
            height: 100%;
            transition: .3s;
        }

        .spec-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(16, 35, 60, .10);
            border-color: rgba(74, 167, 243, .4);
        }

        .spec-icon {
            width: 50px;
            height: 50px;
            background: #edf7ff;
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 22px;
            margin-bottom: 18px;
        }

        .spec-card h5 {
            font-size: 17px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .spec-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }

        /* =========================================
           CTA
        ========================================= */

        .cta-section {
            padding: 80px 0;
            background:
                linear-gradient(120deg, rgba(7, 14, 29, .96), rgba(13, 31, 55, .94)),
                url("assets/images/blogbg.jpg") center/cover;
        }

        .cta-box {
            text-align: center;
            max-width: 850px;
            margin: auto;
        }

        .cta-box h2 {
            color: #fff;
            font-size: clamp(30px, 4vw, 45px);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .cta-box p {
            color: #b9c5d5;
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .float-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
            transition: .3s;
        }

        .float-btn:hover {
            transform: translateY(-4px);
            color: #fff;
        }

        .phone-btn {
            background: #1674c5;
        }

        .whatsapp-btn {
            background: #25d366;
        }

        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 991px) {


            .product-content {
                padding-left: 0;
                margin-top: 40px;
            }

            .product-image-box {
                min-height: 380px;
            }
        }

        @media (max-width: 767px) {


            .breadcrumb-section {
                min-height: 210px;
            }

            .product-section,
            .spec-section {
                padding: 60px 0;
            }

            .product-image-box {
                min-height: 300px;
                padding: 25px;
            }

            .product-image-box img {
                max-height: 270px;
            }

            .feature-strip {
                padding: 25px 0;
            }

            .feature-box {
                margin-bottom: 20px;
            }

            .cta-section {
                padding: 60px 20px;
            }


}
.fixed-camera-table thead tr th{background-color: #17689b;color:#fff;}
.fixed-camera-table{background-color: #fff;color:#000;}
.fixed-camera-table .table-striped td.spec-label, .fixed-camera-table .table-striped td{color:#000000;font-weight: 600}
.fixed-camera-table .table-striped td.spec-value, .fixed-camera-table .table-striped td{color:#000000;}
.tg2-hero {
    position: relative;
    overflow: hidden;
    padding: 125px 0px 20px 0px;
    background:
        linear-gradient(135deg,
            #06152b 0%,
            #0a2c52 55%,
            #0876bd 100%);
}

.tg2-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    top: -250px;
    border-radius: 50%;
    background: rgba(74, 167, 243, 0.16);
}

.tg2-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -160px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}

.tg2-hero-content {
    position: relative;
    z-index: 2;
}

.tg2-label {
    display: inline-block;
    padding: 7px 17px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.tg2-hero h1 {
    margin-bottom: 5px;
    color: #fff;
    font-size: clamp(38px, 5vw, 65px);
    font-weight: 800;
    line-height: 1.05;
}

.tg2-hero h1 span {
    display: block;
    color: #4aa7f3;
}

.tg2-subtitle {
    margin: 18px 0;
    color: #fff;
    font-size: clamp(20px, 3vw, 31px);
    font-weight: 500;
}

.tg2-description {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.80);
    font-size: 16px;
    line-height: 1.8;
}

.tg2-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tg2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.tg2-btn-primary {
    background: #4aa7f3;
    color: #fff;
    border: 2px solid #4aa7f3;
}

.tg2-btn-primary:hover {
    background: #fff;
    color: #075b99;
    border-color: #fff;
}

.tg2-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}

.tg2-btn-outline:hover {
    background: #fff;
    color: #075b99;
}


.tg2-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 15px;
}

.tg2-image-card {
    position: relative;
    padding: 25px;
    background: rgba(255,255,255,.96);
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.tg2-image-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.tg2-image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 9px 15px;
    background: #07172d;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}



.tg2-highlight-box {
    height: 100%;
    padding: 30px;
    border: 1px solid #e0e9f1;
    border-radius: 14px;
    background: #fff;
    transition: .3s;
}

.tg2-highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.tg2-highlight-box i {
    margin-bottom: 18px;
    color: #0875c1;
    font-size: 32px;
}

.tg2-highlight-box h4 {
    margin-bottom: 10px;
    color: #101d30;
    font-size: 19px;
    font-weight: 700;
}

.tg2-highlight-box p {
    margin: 0;
    color: #6c7786;
    font-size: 14px;
    line-height: 1.7;
}

