﻿/*
Template Name: Dotin Security custom styles
Description: Centralized styling moved from PHP files. Bootstrap is still used for layout and utilities; this file keeps project-specific visual overrides in one place.
*/

/* Design Tokens */
:root {
    --dotin-primary: #3C72FC;
    --dotin-primary-dark: #1a1a3e;
    --dotin-accent: #ff6b00;
    --dotin-whatsapp: #25D366;
    --dotin-text: #666;
    --dotin-muted: #888;
    --dotin-border: #e8edf5;
    --dotin-soft-bg: #f6f9ff;
    --dotin-section-gradient: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 60%, #f5f0ff 100%);
    --dotin-blue-gradient: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    --dotin-brand-gradient: linear-gradient(135deg, #ff6b00 0%, #3C72FC 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

#home {
    scroll-margin-top: 0 !important;
}

#brands,
#trust,
#services,
#about,
#industries,
#pricing,
#reviews,
#clients,
#contact {
    scroll-margin-top: 40px;
}

#brands.pt-100,
#services.service-area,
#about.dotin-about-area,
#industries.offer-area,
#pricing.pricing-area,
#reviews.testimonial-area,
#contact.dotin-style-053 {
    padding-top: 72px !important;
}

#projects.dotin-projects {
    padding-top: 72px;
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 0;
    }

    section[id],
    #brands,
    #trust,
    #services,
    #about,
    #industries,
    #pricing,
    #reviews,
    #clients,
    #contact {
        scroll-margin-top: 32px;
    }

    #brands.pt-100,
    #services.service-area,
    #about.dotin-about-area,
    #industries.offer-area,
    #pricing.pricing-area,
    #reviews.testimonial-area,
    #contact.dotin-style-053,
    #projects.dotin-projects {
        padding-top: 54px !important;
    }
}

#industries.offer-area {
    padding-bottom: 96px !important;
}

#projects.dotin-projects {
    padding-top: 84px !important;
}

.dotin-about-area {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.42) 42%, rgba(255, 255, 255, 0.96) 42%, rgba(246, 248, 252, 0.98) 100%),
        url('../images/about/about-image5.jpg') left center/cover no-repeat;
}

#services .area-card__number {
    display: none;
}

#brands .dotin-style-007,
#clients .dotin-style-007,
#contact .dotin-style-007,
#services .section-header h5,
#about .section-header h5,
#industries .section-header h5,
#pricing .section-header h5,
#reviews .section-header h5 {
    color: #3C72FC !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}

#pricing .pricing-card.popular {
    padding-top: 42px;
}

#pricing .popular-badge {
    top: 12px;
    z-index: 2;
}

#pricing .popular-badge .badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 12px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    #industries.offer-area {
        padding-bottom: 70px !important;
    }

    #projects.dotin-projects {
        padding-top: 68px !important;
    }

    .dotin-about-area {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.5) 46%, rgba(246, 248, 252, 0.98) 46%, rgba(246, 248, 252, 1) 100%),
            url('../images/about/about-image5.jpg') center top/cover no-repeat;
    }
}

@media (max-width: 575.98px) {
    #industries.offer-area {
        padding-bottom: 54px !important;
    }

    #projects.dotin-projects {
        padding-top: 56px !important;
    }
}

/* Footer social icons */
.footer__item .social-icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.footer__item .social-icon a {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    flex: 0 0 38px;
    border-radius: 50%;
}

.footer__item .social-icon a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-size: 16px;
    line-height: 1;
}

/* Moved Style Blocks */

/* Source: includes/header.php */
/* Mega Menu */
    .dotin-mega-parent { position: relative; }
    .dotin-mega-menu {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 20px 60px rgba(60,114,252,0.13), 0 4px 20px rgba(0,0,0,0.08);
        padding: 20px;
        width: 720px;
        z-index: 9999;
        border-top: 3px solid #ff6b00;
    }
    .dotin-mega-parent:hover .dotin-mega-menu { display: flex; gap: 20px; }
    .dotin-mega-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .dotin-mega-right {
        width: 200px;
        border-left: 1px solid #f0f0f0;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .dotin-mega-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 10px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        color: #333;
    }
    .dotin-mega-item:hover { background: #fff4ec; color: #ff6b00; }
    .dmi-icon {
        width: 36px;
        height: 36px;
        background: #eef2ff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3C72FC;
        font-size: 15px;
        flex-shrink: 0;
        transition: background 0.2s, color 0.2s;
    }
    .dotin-mega-item:hover .dmi-icon { background: #ff6b00; color: #fff; }
    .dmi-text { font-size: 12px; font-weight: 500; line-height: 1.3; color: inherit; }
    .dmr-title {
        font-size: 13px;
        font-weight: 700;
        color: #ff6b00;
        padding: 8px 0 10px;
        border-bottom: 2px solid #ff6b00;
        margin-bottom: 4px;
        display: block;
    }
    .dmr-link {
        display: block;
        font-size: 12.5px;
        font-weight: 500;
        color: #333;
        padding: 9px 0;
        border-bottom: 1px solid #f0f0f0;
        text-decoration: none;
        transition: color 0.2s;
    }
    .dmr-link:hover { color: #ff6b00; }

/* Source: includes/header.php */
html { scroll-behavior: smooth; }

/* Source: index.php */
@keyframes brandScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .brand-marquee:hover { animation-play-state: paused; }

/* Source: index.php */
.dotin-projects {
                    background: #fff;
                    padding: 105px 0 115px;
                    position: relative;
                    overflow: hidden;
                }
                .dotin-projects::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background:
                        radial-gradient(circle at 10% 18%, rgba(60, 114, 252, 0.08), transparent 24%),
                        radial-gradient(circle at 92% 22%, rgba(255, 107, 0, 0.08), transparent 24%),
                        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
                    pointer-events: none;
                }
                .dotin-projects__wrap {
                    position: relative;
                    z-index: 1;
                }
                .dotin-projects__subtitle {
                    color: #3C72FC;
                    font-size: 22px;
                    font-weight: 800;
                    margin-bottom: 14px;
                }
                .dotin-projects__title {
                    color: var(--heading-color);
                    font-size: 46px;
                    font-weight: 900;
                    line-height: 1.18;
                    margin-bottom: 22px;
                }
                .dotin-projects__text {
                    color: #6d7686;
                    font-size: 16px;
                    line-height: 1.7;
                    max-width: 920px;
                    margin: 0 auto;
                }
                .dotin-projects__grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr;
                    grid-auto-rows: 190px;
                    gap: 22px;
                    margin-top: 54px;
                }
                .dotin-projects__card {
                    position: relative;
                    display: block;
                    border-radius: 16px;
                    overflow: hidden;
                    background: linear-gradient(135deg, #eaf2ff, #fff4ea);
                    box-shadow: 0 18px 42px rgba(9, 42, 79, 0.12);
                    isolation: isolate;
                }
                .dotin-projects__card:nth-child(1) {
                    grid-row: span 2;
                }
                .dotin-projects__card:nth-child(2) {
                    grid-row: span 2;
                }
                .dotin-projects__card:nth-child(3),
                .dotin-projects__card:nth-child(4) {
                    grid-row: span 1;
                }
                .dotin-projects__card:nth-child(5) {
                    grid-column: span 2;
                    grid-row: span 2;
                }
                .dotin-projects__card:nth-child(6) {
                    grid-column: span 1;
                    grid-row: span 2;
                }
                .dotin-projects__card img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transform: scale(1.01);
                    transition: transform 0.45s ease, filter 0.45s ease;
                }
                .dotin-projects__card:nth-child(5) img {
                    object-position: 68% center;
                }
                .dotin-projects__card::after {
                    content: "";
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(180deg, transparent 38%, rgba(4, 18, 38, 0.76) 100%);
                    opacity: 0;
                    transition: opacity 0.35s ease;
                    z-index: 1;
                }
                .dotin-projects__card:hover img {
                    transform: scale(1.08);
                    filter: saturate(1.08);
                }
                .dotin-projects__card:hover::after {
                    opacity: 1;
                }
                .dotin-projects__badge {
                    position: absolute;
                    top: 16px;
                    left: 16px;
                    z-index: 2;
                    background: rgba(255, 255, 255, 0.94);
                    color: #2165a9;
                    border-radius: 999px;
                    padding: 8px 13px;
                    font-size: 12px;
                    font-weight: 800;
                    box-shadow: 0 10px 26px rgba(9, 42, 79, 0.12);
                }
                .dotin-projects__content {
                    position: absolute;
                    left: 18px;
                    right: 18px;
                    bottom: 18px;
                    z-index: 2;
                    color: #fff;
                    opacity: 0;
                    transform: translateY(12px);
                    transition: opacity 0.35s ease, transform 0.35s ease;
                }
                .dotin-projects__card:hover .dotin-projects__content {
                    opacity: 1;
                    transform: translateY(0);
                }
                .dotin-projects__content h4 {
                    color: #fff;
                    font-size: 20px;
                    font-weight: 800;
                    margin: 0 0 4px;
                }
                .dotin-projects__content p {
                    color: rgba(255, 255, 255, 0.86);
                    font-size: 13px;
                    margin: 0;
                }
                @media (max-width: 991px) {
                    .dotin-projects {
                        padding: 85px 0;
                    }
                    .dotin-projects__title {
                        font-size: 36px;
                    }
                    .dotin-projects__grid {
                        grid-template-columns: 1fr 1fr;
                        grid-auto-rows: 220px;
                    }
                    .dotin-projects__card,
                    .dotin-projects__card:nth-child(1),
                    .dotin-projects__card:nth-child(2),
                    .dotin-projects__card:nth-child(5),
                    .dotin-projects__card:nth-child(6) {
                        grid-column: span 1;
                        grid-row: span 1;
                    }
                }
                @media (max-width: 575px) {
                    .dotin-projects__subtitle {
                        font-size: 17px;
                    }
                    .dotin-projects__title {
                        font-size: 30px;
                    }
                    .dotin-projects__grid {
                        grid-template-columns: 1fr;
                        grid-auto-rows: 240px;
                        gap: 18px;
                    }
                    .dotin-projects__content,
                    .dotin-projects__card::after {
                        opacity: 1;
                        transform: none;
                    }
                }

/* Generated Inline Style Classes */

/* Moved inline style #001 */
.dotin-style-001 {
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,0.98);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(60,114,252,0.10);
    box-shadow:0 8px 24px rgba(20,28,48,0.08);
}

/* Moved inline style #002 */
.dotin-style-002 {
    height:42px;
    width:auto;
    object-fit:contain;
}

/* Moved inline style #003 */
.dotin-style-003 {
    font-size:10px;
    margin-left:3px;
}

/* Moved inline style #004 */
.dotin-style-004 {
    background:#25D366;
    border-color:#25D366;
}

/* Compact top contact strip. */
.header-top {
    padding: 7px 0;
    background: #1663BB;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.header-top + .header-area.dotin-style-001 {
    top: 30px;
}

@media (max-width: 991.98px) {
    .header-top + .header-area.dotin-style-001 {
        top: 0;
    }
}

.header-top .header-top-wrp .info a {
    font-size: 14px;
}

.header-top .header-top-wrp .link-info li a {
    width: 30px;
}

/* Header refinements: compact sticky nav and professional call CTA. */
.header-area.dotin-style-001 .header__main {
    min-height: 60px;
    padding: 3px 0;
}

.header-area.dotin-style-001.menu-fixed,
.header-area.dotin-style-001 {
    background: rgba(255,255,255,0.98);
}

.header-area.dotin-style-001.menu-fixed .header__main {
    min-height: 58px;
    padding: 2px 0;
}

.header-area.dotin-style-001 .logo {
    width: 170px;
    margin-left: 18px;
}

.header-area.dotin-style-001 .logo img {
    max-height: 42px;
}

.header-area.dotin-style-001.menu-fixed .logo img {
    max-height: 38px;
}

.header-area.dotin-style-001 .main-menu {
    flex: 1 1 auto;
}

.header-area.dotin-style-001 .main-menu > nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.15vw, 34px);
}

.header-area.dotin-style-001 .main-menu ul li a {
    padding: 11px 0;
    color: var(--heading-color);
    white-space: nowrap;
}

.header-area.dotin-style-001 .main-menu ul li a:hover,
.header-area.dotin-style-001 .main-menu ul li a:focus,
.header-area.dotin-style-001 .main-menu ul li:hover > a,
.header-area.dotin-style-001 .main-menu ul li:hover > a i {
    color: var(--dotin-primary) !important;
}

.header-area.dotin-style-001 .bars i {
    color: var(--paragraph);
    border-color: var(--border);
}

.header-area.dotin-style-001 > .container,
.header-area.dotin-style-001 .header__container {
    position: relative;
}

.header-area.dotin-style-001 .header__main > .d-inline-block,
.header-area.dotin-style-001 .header-cta {
    width: auto;
    line-height: 1;
}

.header-area.dotin-style-001 .header__main > .d-inline-block .btn-one,
.header-area.dotin-style-001 .header-cta .btn-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #ff6b00;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}

.header-area.dotin-style-001 .header__main > .d-inline-block .btn-one::before,
.header-area.dotin-style-001 .header__main > .d-inline-block .btn-one::after,
.header-area.dotin-style-001 .header-cta .btn-one::before,
.header-area.dotin-style-001 .header-cta .btn-one::after {
    background: var(--dotin-primary);
}

.header-area.dotin-style-001 .header__main > .d-inline-block .btn-one i,
.header-area.dotin-style-001 .header-cta .btn-one i {
    margin-left: 6px;
    font-size: 12px;
}

@media (max-width: 1199px) {
    .header-area.dotin-style-001 .header__main {
        min-height: 58px;
        padding: 3px 0;
    }

    .header-area.dotin-style-001 .logo {
        margin-left: 8px;
        width: 154px;
    }
}

@media (min-width: 1200px) and (max-width: 1299px) {
    .header-area.dotin-style-001 .main-menu > nav > ul {
        gap: 18px;
    }

    .header-area.dotin-style-001 .main-menu ul li a {
        font-size: 14px;
    }
}

/* Keep all hero slider content aligned below the sticky header. */
.banner__content,
.banner-two__content,
.banner-three__content {
    padding-top: 86px !important;
    padding-bottom: 104px !important;
}

.banner__content h1,
.banner__content .banner-title {
    font-size: 48px !important;
    line-height: 56px !important;
    font-weight: 700;
}

.banner__content h4 {
    margin-bottom: 14px !important;
}

.banner__content .mt-20 {
    margin-top: 12px !important;
}

.banner__content .mt-15 {
    margin-top: 8px !important;
}

.banner__content .d-flex.mt-60,
.banner__content .hero-cta,
.banner-two__content .d-flex.mt-60,
.banner-three__content .d-flex.mt-60 {
    margin-top: 18px;
    position: relative;
    z-index: 4;
    opacity: 1 !important;
    visibility: visible !important;
}

.banner__content .btn-one,
.banner-two__content .btn-one,
.banner-three__content .btn-one {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 11px 22px;
    line-height: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.banner__slider .swiper-slide .banner__content,
.banner__slider .swiper-slide:first-child .banner__content {
    padding-top: 76px !important;
    padding-bottom: 92px !important;
}

.banner__slider .swiper-slide:first-child .banner__content h1,
.banner__slider .swiper-slide .banner__content .banner-title {
    font-size: 46px !important;
    line-height: 54px !important;
}

.banner__slider .swiper-slide:first-child .banner__content .mt-20 {
    margin-top: 14px;
}

.banner__slider .swiper-slide:first-child .banner__content .mt-15 {
    margin-top: 10px;
}

.banner__slider .swiper-slide:first-child .banner__content .hero-cta {
    margin-top: 16px;
    display: flex !important;
}

.banner__slider .swiper-slide-active .banner__content .d-flex.mt-60,
.banner__slider .swiper-slide:first-child .banner__content .d-flex.mt-60,
.banner__slider .swiper-slide-active .banner__content .hero-cta,
.banner__slider .swiper-slide:first-child .banner__content .hero-cta,
.banner__slider .swiper-slide-active .banner__content .btn-one,
.banner__slider .swiper-slide:first-child .banner__content .btn-one,
.banner__slider .swiper-slide-active .banner-two__content .btn-one,
.banner__slider .swiper-slide-active .banner-three__content .btn-one {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
}

.banner__content .dotin-style-004::before,
.banner__content .dotin-style-004::after {
    background: #128c45;
}

@media (max-width: 991px) {
    .banner__content,
    .banner-two__content,
    .banner-three__content {
        padding-top: 62px !important;
        padding-bottom: 82px !important;
    }

    .banner__content .d-flex.mt-60,
    .banner__content .hero-cta,
    .banner-two__content .d-flex.mt-60,
    .banner-three__content .d-flex.mt-60 {
        margin-top: 24px;
    }

    .banner__slider .swiper-slide .banner__content,
    .banner__slider .swiper-slide:first-child .banner__content {
        padding-top: 56px !important;
        padding-bottom: 76px !important;
    }

    .banner__slider .swiper-slide:first-child .banner__content h1,
    .banner__slider .swiper-slide .banner__content .banner-title {
        font-size: 40px !important;
        line-height: 48px !important;
    }
}

@media (max-width: 575px) {
    .header-area.dotin-style-001 .logo img {
        max-height: 36px;
    }

    .header-area.dotin-style-001 .logo {
        margin-left: 4px;
        width: 134px;
    }

    .header-area.dotin-style-001 .header__main > .d-inline-block .btn-one,
    .header-area.dotin-style-001 .header-cta .btn-one {
        min-height: 34px;
        padding: 8px 11px;
        font-size: 12px;
    }

    .banner__slider .swiper-slide:first-child .banner__content h1,
    .banner__slider .swiper-slide .banner__content .banner-title {
        font-size: 30px !important;
        line-height: 38px !important;
    }

    .banner__slider .swiper-slide:first-child .banner__content .hero-cta {
        margin-top: 16px;
    }

    .banner__content,
    .banner-two__content,
    .banner-three__content {
        padding-top: 52px !important;
        padding-bottom: 68px !important;
    }
}

/* Moved inline style #005 */
.dotin-style-005 {
    background:linear-gradient(135deg,#f0f6ff 0%,#e8f0fe 60%,#f5f0ff 100%);
    position:relative;
    overflow:hidden;
}

/* Moved inline style #006 */
.dotin-style-006 {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:radial-gradient(#3C72FC18 1.5px,transparent 1.5px);
    background-size:28px 28px;
    pointer-events:none;
}

/* Moved inline style #007 */
.dotin-style-007 {
    background:#e8f3ff;
    padding:8px 18px;
    border-radius:20px;
    color:#3C72FC;
    font-weight:600;
    font-size:14px;
}

/* Moved inline style #008 */
.dotin-style-008 {
    color:#1a1a3e;
    font-size:38px;
    font-weight:700;
}

/* Moved inline style #009 */
.dotin-style-009 {
    color:#666;
    font-size:16px;
    max-width:600px;
    margin:10px auto 0;
}

/* Moved inline style #010 */
.dotin-style-010 {
    overflow:hidden;
    position:relative;
}

/* Moved inline style #011 */
.dotin-style-011 {
    display:flex;
    gap:20px;
    width:max-content;
    animation:brandScroll 18s linear infinite;
}

/* Moved inline style #012 */
.dotin-style-012 {
    background:#fff;
    border:1.5px solid #e8edf5;
    border-radius:14px;
    padding:18px 32px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:160px;
    height:80px;
}

/* Moved inline style #013 */
.dotin-style-013 {
    max-height:44px;
    max-width:120px;
    object-fit:contain;
}

/* Moved inline style #014 */
.dotin-style-014 {
    color:#aaa;
    font-size:15px;
}

.clients-marquee-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 80px;
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 60%, #f5f0ff 100%);
}

.clients-marquee-section .container {
    position: relative;
    z-index: 1;
}

.client-marquee-wrap {
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

.client-marquee-wrap::before,
.client-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 110px;
    z-index: 2;
    pointer-events: none;
}

.client-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #f0f6ff 0%, rgba(240, 246, 255, 0) 100%);
}

.client-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #f5f0ff 0%, rgba(245, 240, 255, 0) 100%);
}

.client-marquee {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: brandScroll 30s linear infinite;
    backface-visibility: hidden;
    will-change: transform;
}

.client-marquee:hover {
    animation-play-state: paused;
}

.client-logo-card {
    min-width: 220px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border: 1.5px solid #e8edf5;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.055);
    flex: 0 0 auto;
}

.client-logo-card img {
    display: block;
    width: auto;
    height: auto;
    max-width: 170px;
    max-height: 68px;
    object-fit: contain;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}

@media (max-width: 767px) {
    .clients-marquee-section {
        padding: 70px 0 60px;
    }

    .client-logo-card {
        min-width: 170px;
        height: 82px;
        padding: 14px 22px;
    }

    .client-logo-card img {
        max-width: 132px;
        max-height: 52px;
    }

    .client-marquee-wrap::before,
    .client-marquee-wrap::after {
        width: 48px;
    }
}

/* Moved inline style #015 */
.dotin-style-015 {
    background:#fff;
    padding:80px 0 0;
}

/* Moved inline style #016 */
.dotin-style-016 {
    color:#1a1a3e;
    font-size:36px;
    font-weight:700;
    margin-bottom:12px;
}

/* Moved inline style #017 */
.dotin-style-017 {
    color:#666;
    font-size:17px;
    max-width:620px;
    margin:0 auto;
}

/* Moved inline style #018 */
.dotin-style-018 {
    margin-top:50px;
    padding:70px 0;
    position:relative;
    overflow:hidden;
}

/* Moved inline style #019 */
.dotin-style-019 {
    position:absolute;
    inset:0;
    background:url('../images/about/about-image5.jpg') center/cover no-repeat;
}

/* Moved inline style #020 */
.dotin-style-020 {
    position:absolute;
    inset:0;
    background:rgba(235,242,255,0.88);
}

/* Moved inline style #021 */
.dotin-style-021 {
    position:relative;
    z-index:1;
}

/* Moved inline style #022 */
.dotin-style-022 {
    margin-bottom:16px;
}

/* Moved inline style #023 */
.dotin-style-023 {
    color:#ff6b00;
    font-size:52px;
    font-weight:800;
    margin:0 0 8px;
}

/* Moved inline style #024 */
.dotin-style-024 {
    color:#1a1a3e;
    font-size:16px;
    font-weight:600;
    margin:0;
}

/* Moved inline style #025 */
.dotin-style-025 {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}

/* Moved inline style #026 */
.dotin-style-026 {
    color: #ff6b00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Moved inline style #027 */
.dotin-style-027 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a3e;
}

/* Moved inline style #028 */
.dotin-style-028 {
    max-width:620px;
    opacity:0.8;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Moved inline style #029 */
.dotin-style-029 {
    background: linear-gradient(135deg, #ff6b00 0%, #3C72FC 100%);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    color: #fff;
}

/* Moved inline style #030 */
.dotin-style-030 {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8edf5;
    position: relative;
    overflow: hidden;
}

/* Moved inline style #031 */
.dotin-style-031 {
    background: linear-gradient(135deg, #ff6b00 0%, #3C72FC 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Moved inline style #032 */
.dotin-style-032 {
    text-align: center;
}

/* Moved inline style #033 */
.dotin-style-033 {
    color: #1a1a3e;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Moved inline style #034 */
.dotin-style-034 {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Moved inline style #035 */
.dotin-style-035 {
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

/* Moved inline style #036 */
.dotin-style-036 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b00;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* Moved inline style #037 */
.dotin-style-037 {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
}

/* Moved inline style #038 */
.dotin-style-038 {
    background: #f6f9ff;
}

/* Moved inline style #039 */
.dotin-style-039 {
    background:#fff;
    padding:90px 0 80px;
}

/* Moved inline style #040 */
.dotin-style-040 {
    color:#1a1a3e;
    font-size:36px;
    font-weight:800;
}

/* Moved inline style #041 */
.dotin-style-041 {
    color:#666;
    font-size:16px;
    max-width:560px;
    margin:10px auto 0;
}

/* Moved inline style #042 */
.dotin-style-042 {
    background:linear-gradient(135deg,#3C72FC,#1a1a3e);
    border-radius:16px;
    padding:32px 24px;
    text-align:center;
    color:#fff;
}

/* Moved inline style #043 */
.dotin-style-043 {
    font-size:32px;
    margin-bottom:16px;
    color:#fff;
}

/* Moved inline style #044 */
.dotin-style-044 {
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
}

/* Moved inline style #045 */
.dotin-style-045 {
    font-size:13px;
    opacity:0.85;
    margin:0;
}

/* Moved inline style #046 */
.dotin-style-046 {
    font-size:28px;
    font-weight:900;
    color:#ff6b00;
    margin-top:16px;
}

/* Moved inline style #047 */
.dotin-style-047 {
    background:#fff;
    border:2px solid #e8edf5;
    border-radius:16px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 5px 20px rgba(60,114,252,0.08);
}

/* Moved inline style #048 */
.dotin-style-048 {
    font-size:32px;
    margin-bottom:16px;
    color:#3C72FC;
}

/* Moved inline style #049 */
.dotin-style-049 {
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
    color:#1a1a3e;
}

/* Moved inline style #050 */
.dotin-style-050 {
    font-size:13px;
    color:#666;
    margin:0;
}

/* Moved inline style #051 */
.dotin-style-051 {
    background:#fff;
    border:2px solid #ff6b00;
    border-radius:16px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 5px 20px rgba(255,107,0,0.10);
}

/* Moved inline style #052 */
.dotin-style-052 {
    font-size:32px;
    margin-bottom:16px;
    color:#ff6b00;
}

/* Moved inline style #053 */
.dotin-style-053 {
    background:linear-gradient(135deg,#f0f6ff 0%,#e8f0fe 60%,#f5f0ff 100%);
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

/* Moved inline style #054 */
.dotin-style-054 {
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* Moved inline style #055 */
.dotin-style-055 {
    background:#fff;
    border:1px solid rgba(60,114,252,0.10);
    border-radius:16px;
    padding:20px 18px;
    display:flex;
    align-items:flex-start;
    gap:14px;
    box-shadow:0 12px 34px rgba(60,114,252,0.10);
    transition:transform 0.25s ease,box-shadow 0.25s ease;
}

/* Moved inline style #056 */
.dotin-style-056 {
    width:44px;
    height:44px;
    background:linear-gradient(135deg,#0A66C2,#004182);
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

/* Moved inline style #057 */
.dotin-style-057 {
    color:#fff;
    font-size:18px;
}

/* Moved inline style #058 */
.dotin-style-058 {
    color:#1a1a3e;
    font-weight:700;
    margin-bottom:6px;
}

/* Moved inline style #059 */
.dotin-style-059 {
    color:#ff6b00;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
}

/* Moved inline style #060 */
.dotin-style-060 {
    color:#888;
    font-size:13px;
    margin:4px 0 0;
}

/* Moved inline style #061 */
.dotin-style-061 {
    width:44px;
    height:44px;
    background:#25D366;
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

/* Moved inline style #062 */
.dotin-style-062 {
    color:#fff;
    font-size:20px;
}

/* Moved inline style #063 */
.dotin-style-063 {
    color:#25D366;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
}

/* Moved inline style #064 */
.dotin-style-064 {
    width:44px;
    height:44px;
    background:linear-gradient(135deg,#ff6b00,#e05500);
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

/* Moved inline style #065 */
.dotin-style-065 {
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
}

/* Moved inline style #066 */
.dotin-style-066 {
    width:44px;
    height:44px;
    background:linear-gradient(135deg,#EA4335,#FBBC05);
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

/* Moved inline style #067 */
.dotin-style-067 {
    color:#555;
    font-size:14px;
    font-weight:700;
    margin:0;
    line-height:1.65;
}

/* Moved inline style #068 */
.dotin-style-068 {
    color:#888;
    font-size:13px;
    margin:6px 0 0;
}

/* Moved inline style #069 */
.dotin-style-069 {
    background:#fff;
    border:1px solid rgba(60,114,252,0.10);
    border-radius:22px;
    padding:34px 32px;
    box-shadow:0 18px 55px rgba(60,114,252,0.14);
}

/* Moved inline style #070 */
.dotin-style-070 {
    color:#1a1a3e;
    font-size:22px;
    font-weight:700;
    margin-bottom:6px;
}

/* Moved inline style #071 */
.dotin-style-071 {
    color:#888;
    font-size:14px;
    margin-bottom:22px;
}

/* Moved inline style #072 */
.dotin-style-072 {
    font-size:13px;
    font-weight:600;
    color:#444;
    margin-bottom:6px;
    display:block;
}

/* Moved inline style #073 */
.dotin-style-073 {
    width:100%;
    padding:11px 14px;
    border:1.5px solid #e0e7ff;
    border-radius:10px;
    font-size:14px;
    outline:none;
    transition:border 0.2s;
}

/* Moved inline style #074 */
.dotin-style-074 {
    width:100%;
    padding:11px 14px;
    border:1.5px solid #e0e7ff;
    border-radius:10px;
    font-size:14px;
    outline:none;
    background:#fff;
    color:#555;
    transition:border 0.2s;
}

/* Moved inline style #075 */
.dotin-style-075 {
    width:100%;
    padding:11px 14px;
    border:1.5px solid #e0e7ff;
    border-radius:10px;
    font-size:14px;
    outline:none;
    resize:vertical;
    transition:border 0.2s;
}

/* Moved inline style #076 */
.dotin-style-076 {
    width:100%;
    padding:13px;
    background:linear-gradient(135deg,#ff7a00,#e05500);
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 14px 30px rgba(255,107,0,0.24);
    transition:transform 0.25s ease,box-shadow 0.25s ease,filter 0.25s ease;
}

/* Moved inline style #077 */
.dotin-style-077 {
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 40px rgba(60,114,252,0.10);
}

/* Moved inline style #078 */
.dotin-style-078 {
    color:#1a1a3e;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    text-align:center;
}

/* Moved inline style #079 */
.dotin-style-079 {
    position:relative;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    max-width:100%;
    border-radius:10px;
}

/* Moved inline style #080 */
.dotin-style-080 {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}

/* Moved inline style #081 */
.dotin-style-081 {
    height:58px;
    width:auto;
    object-fit:contain;
}

/* Moved inline style #082 */
.dotin-style-082 {
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    right: 92px !important;
    bottom: 22px !important;
    width: 52px !important;
    height: 52px !important;
    background: #ff6b00;
    border: 2px solid rgba(255,255,255,0.86);
    box-shadow: 0 12px 28px rgba(255,107,0,0.36);
}

/* Moved inline style #083 */
.dotin-style-083 {
    position:absolute;
    color:#fff;
    font-size:18px;
    z-index:2;
}

.dotin-style-082 svg.scroll-circle path {
    stroke: #ff6b00 !important;
}

/* Moved inline style #084 */
.dotin-style-084 {
    position:fixed;
    right:10px;
    bottom:10px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 12px 30px rgba(37,211,102,0.38);
    z-index:99999;
    text-decoration:none;
}

@media (max-width: 575px) {
    .dotin-style-084 {
        right: 8px;
        bottom: 8px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }

    .dotin-style-082 {
        right: 72px !important;
        bottom: 10px !important;
        width: 46px !important;
        height: 46px !important;
    }
}

/* Interactive States Replacing Inline JavaScript Styling */
.dotin-style-055:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(60, 114, 252, 0.15);
}

.dotin-style-073:focus {
    border-color: var(--dotin-primary);
}

.dotin-style-074:focus {
    border-color: var(--dotin-primary);
}

.dotin-style-075:focus {
    border-color: var(--dotin-primary);
}

.dotin-style-076:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0f4fb8, #3C72FC);
    box-shadow: 0 18px 38px rgba(60, 114, 252, 0.32);
    filter: brightness(1.04);
}

/* CCTV Camera Installation Page */
.service-hero {
            min-height: 560px;
            display: flex;
            align-items: center;
            background: #ffffff url("../images/services/service-hero1.jpg") center center/cover no-repeat;
            position: relative;
            overflow: hidden;
            padding: 92px 0 50px;
        }
        .service-hero::after {
            display: none;
        }
        .service-hero .container {
            position: relative;
            z-index: 1;
        }
        .hero-title {
            color: #fff;
            text-shadow: 0 3px 18px rgba(0,0,0,0.22);
            font-size: clamp(34px, 3.8vw, 48px);
            line-height: 1.08;
            font-weight: 900;
            max-width: 860px;
            margin-bottom: 18px;
            letter-spacing: 0;
        }
        .hero-subtitle {
            color: rgba(255,255,255,0.86);
            font-size: 16px;
            line-height: 1.7;
            max-width: 660px;
            margin-bottom: 24px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .breadcrumb-line {
            display: inline-flex;
            max-width: 100%;
            color: rgba(255,255,255,0.68);
            font-size: 13px;
            font-weight: 700;
            line-height: 1.55;
        }
        .breadcrumb-line a { color: rgba(255,255,255,0.82); text-decoration: none; }
        .top-service-area {
            background: #fbfcff;
            padding: 46px 0 70px;
        }
        .service-list-title,
        .setup-content h2,
        .security-feature-panel h2,
        .workflow-head h2,
        .cctv-guidance-head h2,
        .cctv-tips-panel__intro h3 {
            letter-spacing: 0;
            line-height: 1.16;
        }
        .service-list-title,
        .setup-content h2,
        .security-feature-panel h2,
        .workflow-head h2,
        .cctv-guidance-head h2 {
            color: #11133a;
            font-weight: 900;
        }
        .service-card h3,
        .feature-tile h4,
        .benefit-card h4,
        .process-step h4,
        .faq-item h4 {
            color: #11133a;
            font-weight: 850;
            letter-spacing: 0;
            line-height: 1.25;
        }
        .service-card p,
        .feature-tile p,
        .benefit-card p,
        .faq-item p,
        .service-list-intro,
        .setup-content p,
        .workflow-head p {
            color: #5f6b7a;
            line-height: 1.78;
        }
        .cctv-header,
        .cctv-header.menu-fixed {
            position: relative !important;
            top: auto !important;
            z-index: 99 !important;
        }
        .service-icon-card {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 24px 14px;
            min-height: 142px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 10px 32px rgba(26,26,62,0.05);
        }
        .service-icon-card i {
            color: #ff6b00;
            font-size: 32px;
            margin-bottom: 14px;
        }
        .service-icon-card span {
            color: #1a1a3e;
            font-size: 14px;
            font-weight: 800;
            line-height: 1.35;
        }
        .service-list-box {
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 0;
            box-shadow: 0 14px 42px rgba(26,26,62,0.08);
            height: 100%;
            overflow: hidden;
        }
        .service-list-visual {
            padding: 26px 26px 0;
            background: linear-gradient(135deg, #eef5ff, #ffffff);
        }
        .service-list-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #11133a;
            font-size: 25px;
            font-weight: 900;
            margin-bottom: 10px;
        }
        .service-list-title i {
            color: #ff6b00;
            font-size: 24px;
        }
        .service-list-intro {
            color: #5f6b7a;
            font-size: 15px;
            line-height: 1.7;
            margin: 0 0 16px;
        }
        .stat-box {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 10px;
            padding: 22px 18px;
            text-align: center;
            box-shadow: 0 8px 28px rgba(26,26,62,0.07);
        }
        .stat-box .stat-num {
            font-size: 32px;
            font-weight: 900;
            color: #ff6b00;
            line-height: 1;
        }
        .stat-box .stat-label {
            font-size: 13px;
            color: #555;
            font-weight: 600;
            margin-top: 6px;
        }
        .service-list-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            padding: 24px 26px 26px;
        }
        .service-list-link {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 14px;
            color: #132f68;
            font-size: 15px;
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.2s, border-color 0.2s, color 0.2s;
        }
        .service-list-link:hover {
            transform: translateY(-2px);
            border-color: #ff6b00;
            color: #ff6b00;
        }
        .service-list-link i {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff3e8;
            color: #ff6b00;
            border-radius: 8px;
            flex-shrink: 0;
        }
        .enquiry-panel,
        .help-panel {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 18px;
            box-shadow: 0 10px 34px rgba(26,26,62,0.06);
        }
        .enquiry-panel .row {
            --bs-gutter-y: 10px;
        }
        .enquiry-title {
            color: #ff6b00;
            font-size: 17px;
            font-weight: 900;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e7ebf3;
        }
        .form-label {
            color: #333;
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 5px;
        }
        .service-input,
        .service-select,
        .service-textarea {
            width: 100%;
            border: 1.5px solid #e1e7f3;
            border-radius: 8px;
            padding: 9px 11px;
            color: #333;
            font-size: 13px;
            outline: none;
            background: #fff;
        }
        .service-input:focus,
        .service-select:focus,
        .service-textarea:focus {
            border-color: #3C72FC;
        }
        .service-textarea {
            min-height: 58px;
            resize: vertical;
        }
        .submit-service-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #ff6b00;
            color: #fff;
            border: 0;
            border-radius: 8px;
            padding: 10px 18px;
            font-weight: 900;
            cursor: pointer;
            width: 100%;
            font-size: 14px;
        }
        .help-panel {
            margin-top: 14px;
        }
        .help-panel h3 {
            color: #ff6b00;
            font-size: 17px;
            font-weight: 900;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e7ebf3;
        }
        .help-panel p {
            color: #666;
            line-height: 1.55;
            margin-bottom: 10px;
            font-size: 13px;
        }
        .help-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            width: 100%;
            border-radius: 8px;
            padding: 9px 14px;
            color: #fff;
            font-weight: 900;
            text-decoration: none;
            margin-top: 8px;
            font-size: 13px;
        }
        .help-link.phone { background: #ff6b00; }
        .help-link.whatsapp { background: #25D366; }
        .hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-height: 44px;
            padding: 12px 18px;
            border-radius: 8px;
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            line-height: 1;
            text-decoration: none;
            border: 1px solid transparent;
            box-shadow: 0 12px 26px rgba(0,0,0,0.16);
            transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
        }
        .hero-btn:hover {
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 16px 34px rgba(0,0,0,0.2);
        }
        .hero-btn.primary { background: #ff6b00; color: #fff; }
        .hero-btn.secondary {
            background: #25D366;
            border-color: #25D366;
            color: #fff;
            box-shadow: none;
            backdrop-filter: blur(8px);
        }
        .section-kicker {
            display: inline-block;
            background: #e8f3ff;
            color: #3C72FC;
            padding: 8px 18px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .setup-section {
            background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
            padding: 96px 0;
            overflow: hidden;
        }
        .setup-content {
            max-width: 620px;
        }
        .setup-content h2 {
            color: #11133a;
            font-size: 40px;
            font-weight: 900;
            line-height: 1.18;
            margin-bottom: 18px;
        }
        .setup-content p {
            color: #5d6472;
            font-size: 16px;
            line-height: 1.85;
            margin-bottom: 26px;
        }
        .setup-media {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            min-height: 520px;
            box-shadow: 0 24px 70px rgba(22,34,70,0.18);
            background: #101828;
        }
        .setup-media img {
            width: 100%;
            height: 100%;
            min-height: 520px;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        .setup-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(17,19,58,0.02) 40%, rgba(17,19,58,0.64) 100%);
            pointer-events: none;
        }
        .setup-badge {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }
        .setup-badge span {
            background: rgba(255,255,255,0.94);
            border-radius: 8px;
            padding: 12px 10px;
            color: #11133a;
            font-size: 13px;
            font-weight: 900;
            text-align: center;
            box-shadow: 0 12px 26px rgba(0,0,0,0.14);
        }
        .service-card {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 34px rgba(26,26,62,0.06);
        }
        .service-card i {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff3e8;
            color: #ff6b00;
            border-radius: 8px;
            font-size: 22px;
            margin-bottom: 18px;
        }
        .service-card h3, .service-card h4 {
            color: #1a1a3e;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .service-card p, .service-card li {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }
        .security-cctv-section {
            padding: 100px 0;
            background: #f8fbff;
        }
        .security-feature-panel {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 34px;
            height: 100%;
            box-shadow: 0 18px 50px rgba(22,34,70,0.08);
        }
        .security-feature-panel h2 {
            color: #11133a;
            font-size: 36px;
            line-height: 1.22;
            font-weight: 900;
            margin-bottom: 16px;
        }
        .security-feature-panel p {
            color: #5f6b7a;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 24px;
        }
        .security-image-stack {
            display: grid;
            gap: 16px;
        }
        .security-image-stack img {
            width: 100%;
            height: 245px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 16px 40px rgba(22,34,70,0.13);
        }
        .security-image-stack img:first-child {
            height: 360px;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }
        .feature-tile {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 20px;
            height: 100%;
        }
        .feature-tile i {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff3e8;
            color: #ff6b00;
            border-radius: 8px;
            margin-bottom: 13px;
        }
        .feature-tile h4 {
            color: #11133a;
            font-size: 17px;
            font-weight: 900;
            margin-bottom: 7px;
        }
        .feature-tile p {
            color: #667085;
            font-size: 14px;
            line-height: 1.65;
            margin: 0;
        }
        .solution-strip {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 18px 50px rgba(22,34,70,0.07);
        }
        .solution-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px 22px;
        }
        .solution-list li {
            display: flex;
            gap: 11px;
            color: #5f6b7a;
            line-height: 1.65;
        }
        .solution-list i {
            color: #ff6b00;
            margin-top: 5px;
            flex-shrink: 0;
        }
        .best-for-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 12px;
        }
        .best-for-item {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 18px 12px;
            text-align: center;
            color: #11133a;
            font-size: 14px;
            font-weight: 800;
            box-shadow: 0 10px 30px rgba(22,34,70,0.06);
        }
        .best-for-item i {
            display: block;
            color: #ff6b00;
            font-size: 22px;
            margin-bottom: 10px;
        }
        .workflow-section {
            position: relative;
            padding: 96px 0;
            background: #fff;
            overflow: hidden;
        }
        .workflow-section::before {
            display: none;
        }
        .workflow-section .container {
            position: relative;
            z-index: 1;
        }
        .workflow-head {
            max-width: 760px;
            margin: 0 auto 44px;
            text-align: center;
        }
        .workflow-head h2 {
            color: #11133a;
            font-size: 38px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .workflow-head p {
            color: #667085;
            font-size: 16px;
            line-height: 1.75;
            margin: 0;
        }
        .process-grid {
            position: relative;
            margin-bottom: 28px;
        }
        .process-grid::before {
            content: "";
            position: absolute;
            top: 34px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, rgba(255,107,0,0.16), rgba(255,107,0,0.42), rgba(255,107,0,0.16));
        }
        .process-step {
            position: relative;
            background: #fff;
            border-radius: 8px;
            padding: 78px 26px 26px;
            height: 100%;
            border: 1px solid rgba(60,114,252,0.12);
            box-shadow: 0 16px 44px rgba(22,34,70,0.08);
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
        }
        .process-step:hover {
            transform: translateY(-4px);
            border-color: rgba(255,107,0,0.35);
            box-shadow: 0 22px 54px rgba(22,34,70,0.12);
        }
        .step-number {
            position: absolute;
            top: 18px;
            left: 26px;
            width: 46px;
            height: 46px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: linear-gradient(135deg, #ff7a00, #e85d00);
            border-radius: 8px;
            font-size: 18px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 0;
            box-shadow: 0 12px 24px rgba(255,107,0,0.24);
        }
        .process-step h4 {
            color: #11133a;
            font-weight: 900;
            margin-bottom: 10px;
        }
        .process-step p {
            color: #667085;
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
        }
        .benefit-card {
            background: rgba(255,255,255,0.88);
            border: 1px solid rgba(60,114,252,0.12);
            border-radius: 8px;
            padding: 28px;
            height: 100%;
            box-shadow: 0 16px 44px rgba(22,34,70,0.07);
            backdrop-filter: blur(8px);
        }
        .benefit-card i {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff3e8;
            color: #ff6b00;
            border-radius: 8px;
            font-size: 20px;
            margin-bottom: 18px;
        }
        .benefit-card h4 {
            color: #11133a;
            font-size: 20px;
            font-weight: 900;
            margin-bottom: 10px;
        }
        .benefit-card p {
            color: #667085;
            font-size: 15px;
            line-height: 1.75;
            margin: 0;
        }
        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .check-list li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            color: #555;
        }
        .check-list i {
            color: #3C72FC;
            margin-top: 5px;
            flex-shrink: 0;
        }
        .cta-band {
            background:
                linear-gradient(135deg, rgba(17,19,58,0.96), rgba(35,79,187,0.96)),
                url("assets/images/projects/cctv-security-cameras-on-the-pole-safety-and-protection-concept-.jpg") center/cover;
            border-radius: 8px;
            padding: 42px;
            color: #fff;
            box-shadow: 0 22px 60px rgba(22,34,70,0.22);
        }
        .faq-item {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 24px;
            height: 100%;
        }
        .faq-item h4 {
            color: #1a1a3e;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .faq-item p { color: #666; margin: 0; line-height: 1.7; }
        .quote-panel {
            background: #fff;
            border: 1px solid #edf1f8;
            border-radius: 8px;
            padding: 28px;
            height: 100%;
            box-shadow: 0 10px 34px rgba(26,26,62,0.06);
        }
        .quote-panel blockquote {
            color: #1a1a3e;
            font-size: 18px;
            font-weight: 800;
            line-height: 1.6;
            margin: 0 0 14px;
        }
        .quote-panel p {
            color: #667085;
            margin: 0;
        }
        .cctv-guidance-section {
            position: relative;
            padding: 86px 0;
            background:
                radial-gradient(circle at 12% 12%, rgba(60,114,252,0.12), transparent 28%),
                radial-gradient(circle at 88% 18%, rgba(255,107,0,0.10), transparent 24%),
                linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
            overflow: hidden;
        }
        .cctv-guidance-head h2 {
            color: #11133a;
            font-size: 38px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .cctv-guidance-head p {
            color: #667085;
            max-width: 680px;
            margin: 10px auto 0;
            line-height: 1.75;
        }
        .cctv-guidance-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
            gap: 24px;
            align-items: stretch;
        }
        .cctv-guidance-main {
            display: grid;
            gap: 18px;
        }
        .cctv-quote-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }
        .cctv-guidance-section .quote-panel {
            position: relative;
            min-height: 190px;
            padding: 26px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-color: rgba(60,114,252,0.12);
            box-shadow: 0 18px 44px rgba(17,24,39,0.08);
            overflow: hidden;
        }
        .cctv-guidance-section .quote-panel::after {
            content: "";
            position: absolute;
            right: -36px;
            top: -36px;
            width: 96px;
            height: 96px;
            border-radius: 50%;
            background: rgba(255,107,0,0.10);
        }
        .cctv-guidance-section .quote-panel span {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: #fff3e8;
            color: #ff6b00;
            font-weight: 900;
            margin-bottom: 16px;
        }
        .cctv-guidance-section .quote-panel blockquote {
            font-size: 17px;
            line-height: 1.48;
            margin-bottom: 12px;
        }
        .cctv-mini-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            border-radius: 8px;
            padding: 26px;
            background:
                linear-gradient(135deg, rgba(17,19,58,0.96), rgba(60,114,252,0.90)),
                url("../images/projects/cctv-security-cameras-on-the-pole-safety-and-protection-concept-.jpg") center/cover;
            color: #fff;
            box-shadow: 0 20px 48px rgba(17,24,39,0.16);
        }
        .cctv-mini-cta h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 6px;
        }
        .cctv-mini-cta p {
            color: rgba(255,255,255,0.82);
            margin: 0;
            line-height: 1.6;
        }
        .cctv-mini-cta__actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }
        .cctv-mini-cta__actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 104px;
            border-radius: 8px;
            padding: 11px 15px;
            background: #ff6b00;
            color: #fff;
            font-size: 13px;
            font-weight: 900;
            text-decoration: none;
        }
        .cctv-mini-cta__actions a:last-child {
            background: rgba(255,255,255,0.14);
            border: 1px solid rgba(255,255,255,0.28);
        }
        .cctv-tips-panel {
            height: 100%;
            border-radius: 8px;
            padding: 32px;
            background: #fff;
            border: 1px solid rgba(255,107,0,0.18);
            box-shadow: 0 22px 52px rgba(17,24,39,0.10);
        }
        .cctv-tips-panel__intro {
            margin-bottom: 24px;
        }
        .cctv-tips-panel__intro h3 {
            color: #11133a;
            font-size: 28px;
            font-weight: 900;
            line-height: 1.2;
            margin: 16px 0 10px;
        }
        .cctv-tips-panel__intro p {
            color: #667085;
            line-height: 1.7;
            margin: 0;
        }
        .cctv-tips-panel .tip-list {
            display: grid;
            gap: 12px;
        }
        .cctv-tips-panel .tip-list li {
            margin: 0;
            padding: 14px;
            border-radius: 8px;
            background: #f8fbff;
            border: 1px solid #edf1f8;
        }
        .tip-list {
            counter-reset: tips;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .tip-list li {
            counter-increment: tips;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: #555;
            line-height: 1.65;
            margin-bottom: 13px;
        }
        .tip-list li::before {
            content: counter(tips);
            width: 28px;
            height: 28px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #fff3e8;
            color: #ff6b00;
            font-size: 13px;
            font-weight: 900;
            flex-shrink: 0;
        }
        .area-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .area-pills span {
            background: #fff;
            border: 1px solid #e3eaf6;
            border-radius: 8px;
            color: #1a1a3e;
            font-size: 14px;
            font-weight: 800;
            padding: 10px 14px;
        }
        .service-list-link,
        .stat-box,
        .service-card,
        .feature-tile,
        .best-for-item,
        .process-step,
        .benefit-card,
        .faq-item,
        .quote-panel,
        .area-pills span {
            transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
            will-change: transform;
        }
        .service-card i,
        .feature-tile i,
        .benefit-card i {
            transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
        }
        .service-list-link:hover,
        .service-card:hover,
        .best-for-item:hover,
        .quote-panel:hover {
            transform: translateY(-6px) rotate(0.35deg);
            border-color: rgba(255,107,0,0.34);
            box-shadow: 0 22px 50px rgba(22,34,70,0.12);
        }
        .stat-box:hover,
        .feature-tile:hover,
        .benefit-card:hover,
        .faq-item:hover,
        .area-pills span:hover {
            transform: translateY(-5px);
            border-color: rgba(255,107,0,0.32);
            box-shadow: 0 18px 42px rgba(22,34,70,0.1);
        }
        .process-step:hover {
            transform: translateY(-6px) rotate(-0.25deg);
            border-color: rgba(255,107,0,0.38);
            box-shadow: 0 24px 54px rgba(22,34,70,0.13);
        }
        .service-card:hover i,
        .benefit-card:hover i {
            transform: scale(1.08);
            background: #ff6b00;
            color: #fff;
        }
        .feature-tile:hover i {
            transform: rotate(-6deg) scale(1.08);
            background: #ff6b00;
            color: #fff;
        }
        .area-pills span:hover,
        .service-list-link:hover {
            color: #ff6b00;
        }
        @media (prefers-reduced-motion: reduce) {
            .service-list-link,
            .stat-box,
            .service-card,
            .feature-tile,
            .best-for-item,
            .process-step,
            .benefit-card,
            .faq-item,
            .quote-panel,
            .area-pills span,
            .service-card i,
            .feature-tile i,
            .benefit-card i {
                transition: none;
            }
            .service-list-link:hover,
            .stat-box:hover,
            .service-card:hover,
            .feature-tile:hover,
            .best-for-item:hover,
            .process-step:hover,
            .benefit-card:hover,
            .faq-item:hover,
            .quote-panel:hover,
            .area-pills span:hover,
            .service-card:hover i,
            .feature-tile:hover i,
            .benefit-card:hover i {
                transform: none;
            }
        }
        @media (max-width: 991px) {
            .hero-title { font-size: 36px; }
            .service-hero {
                min-height: 500px;
                padding: 82px 0 46px;
                background-position: 62% center;
            }
            .help-panel { position: static; }
            .service-list-grid { grid-template-columns: 1fr; }
            .service-list-visual { grid-template-columns: 1fr; }
            .setup-section { padding: 72px 0; }
            .setup-content h2 { font-size: 34px; }
            .setup-media,
            .setup-media img { min-height: 380px; }
            .workflow-section { padding: 74px 0; }
            .workflow-head h2 { font-size: 32px; }
            .process-grid::before { display: none; }
            .security-cctv-section { padding: 74px 0; }
            .security-feature-panel h2 { font-size: 31px; }
            .best-for-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .cctv-guidance-layout,
            .cctv-quote-grid {
                grid-template-columns: 1fr;
            }
            .cctv-mini-cta {
                align-items: flex-start;
                flex-direction: column;
            }
        }
        @media (max-width: 575px) {
            .hero-title { font-size: 30px; }
            .hero-subtitle { font-size: 16px; }
            .service-hero {
                min-height: auto;
                padding: 64px 0 38px;
                background-position: 58% center;
            }
            .breadcrumb-line {
                font-size: 12px;
            }
            .hero-actions {
                flex-wrap: nowrap;
                align-items: center;
            }
            .hero-btn {
                width: auto;
                flex: 0 1 auto;
                min-width: 0;
                min-height: 40px;
                padding: 10px 14px;
                font-size: 12px;
                justify-content: center;
                white-space: nowrap;
            }
            .cta-band { padding: 30px 22px; }
            .top-service-area .row.g-3.mt-2 > .col-3 { width: 50%; }
            .stat-box { padding: 18px 10px; }
            .stat-box .stat-num { font-size: 24px; }
            .setup-content h2 { font-size: 30px; }
            .setup-media,
            .setup-media img { min-height: 320px; }
            .setup-badge { grid-template-columns: 1fr; }
            .feature-grid,
            .solution-list,
            .best-for-grid { grid-template-columns: 1fr; }
            .security-feature-panel,
            .solution-strip { padding: 24px; }
            .security-image-stack img,
            .security-image-stack img:first-child { height: 260px; }
            .cctv-guidance-section {
                padding: 64px 0;
            }
            .cctv-guidance-head h2,
            .cctv-tips-panel__intro h3 {
                font-size: 29px;
            }
            .cctv-mini-cta__actions {
                width: 100%;
                flex-direction: column;
            }
            .cctv-mini-cta__actions a {
                width: 100%;
            }
        }

/* Footer social icon alignment override */
footer.footer-area .footer__item .social-icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

footer.footer-area .footer__item .social-icon a {
    width: 38px;
    height: 38px;
    min-width: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    opacity: 1;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

footer.footer-area .footer__item .social-icon a i {
    display: block;
    width: auto;
    height: auto;
    font-size: 15px;
    line-height: 1;
    color: inherit;
    transform: none;
}

footer.footer-area .footer__item .social-icon a:hover {
    padding-left: 0;
    color: #ffffff;
    background-color: var(--dotin-accent);
    border-color: var(--dotin-accent);
    transform: translateY(-2px);
}

/* Strong footer-only social boxes */
footer.footer-area .footer__item .footer-social-icons {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 30px !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-link {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex: 0 0 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    border: 0 !important;
    border-radius: 8px !important;
    opacity: 1 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22) !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-link i {
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 17px !important;
    line-height: 1 !important;
    text-align: center !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-facebook {
    background: #1877f2 !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-twitter {
    background: #1da1f2 !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%) !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-youtube {
    background: #ff0000 !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-whatsapp {
    background: #25d366 !important;
}

footer.footer-area .footer__item .footer-social-icons .footer-social-link:hover {
    padding-left: 0 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    filter: brightness(1.08) !important;
}

/* Mobile/tablet header and hero fit fixes */
@media (max-width: 1199.98px) {
    :root {
        --dotin-mobile-header-height: 56px;
        --dotin-hero-top-space: clamp(18px, 3.5vw, 36px);
        --dotin-hero-bottom-space: clamp(44px, 7vw, 72px);
    }

    body {
        padding-top: 0;
    }

    .header-top {
        display: none !important;
    }

    .header-top + .header-area.dotin-style-001,
    .header-area.dotin-style-001,
    .header-area.dotin-style-001.menu-fixed {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10000;
        margin: 0;
        padding: 0 !important;
        line-height: 1;
        transform: none !important;
        animation: none !important;
    }

    .header-area.dotin-style-001 > .container,
    .header-area.dotin-style-001 .header__container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .header-area.dotin-style-001 .header__main,
    .header-area.dotin-style-001.menu-fixed .header__main {
        height: var(--dotin-mobile-header-height);
        max-height: var(--dotin-mobile-header-height);
        min-height: var(--dotin-mobile-header-height);
        padding: 0;
        flex-wrap: nowrap;
        align-items: center;
    }

    .header-area.dotin-style-001 .bars {
        display: block !important;
        flex: 0 0 auto;
    }

    .header-area.dotin-style-001 .bars i {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: #fff;
    }

    .banner-area {
        margin-top: 0;
    }

    .banner__slider .swiper-slide {
        min-height: 100svh;
        display: flex;
        align-items: flex-start;
    }

    .banner__slider .swiper-slide .container {
        width: 100%;
    }

    .banner__content,
    .banner-two__content,
    .banner-three__content,
    .banner__slider .swiper-slide .banner__content,
    .banner__slider .swiper-slide:first-child .banner__content {
        max-width: 680px;
        padding-top: calc(var(--dotin-mobile-header-height) + var(--dotin-hero-top-space)) !important;
        padding-bottom: var(--dotin-hero-bottom-space) !important;
    }
}

@media (max-width: 575.98px) {
    :root {
        --dotin-mobile-header-height: 36px;
        --dotin-hero-top-space: clamp(12px, 4vw, 22px);
        --dotin-hero-bottom-space: 46px;
    }

    body {
        padding-top: 0;
    }

    .header-area.dotin-style-001 .header__container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-area.dotin-style-001 .header__main,
    .header-area.dotin-style-001.menu-fixed .header__main {
        min-height: var(--dotin-mobile-header-height) !important;
        gap: 7px;
        padding: 0 !important;
    }

    .header-area.dotin-style-001 .logo {
        width: clamp(98px, 30vw, 124px);
        margin-left: 0;
        line-height: 0;
    }

    .header-area.dotin-style-001 .logo img,
    .header-area.dotin-style-001.menu-fixed .logo img {
        display: block;
        height: auto !important;
        max-height: 23px !important;
    }

    .header-area.dotin-style-001 .header-cta .btn-one,
    .header-area.dotin-style-001 .header__main > .d-inline-block .btn-one {
        min-height: 28px !important;
        padding: 5px 9px !important;
        font-size: 10px;
        box-shadow: none;
    }

    .header-area.dotin-style-001 .bars i {
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px;
    }

    .banner__slider .swiper-slide {
        min-height: 100svh;
    }

    .banner__content,
    .banner-two__content,
    .banner-three__content,
    .banner__slider .swiper-slide .banner__content,
    .banner__slider .swiper-slide:first-child .banner__content {
        padding-top: calc(var(--dotin-mobile-header-height) + var(--dotin-hero-top-space)) !important;
        padding-bottom: var(--dotin-hero-bottom-space) !important;
    }

    .banner__content h4,
    .banner-two__content h4,
    .banner-three__content h4 {
        font-size: 12px !important;
        line-height: 20px !important;
        letter-spacing: 0;
        margin-bottom: 10px !important;
    }

    .banner__content h4 svg,
    .banner-two__content h4 svg,
    .banner-three__content h4 svg {
        width: 28px;
        height: 12px;
    }

    .banner__content h1,
    .banner__content .banner-title,
    .banner-two__content h1,
    .banner-three__content h1,
    .banner__slider .swiper-slide:first-child .banner__content h1 {
        font-size: clamp(26px, 7.4vw, 32px) !important;
        line-height: 1.16 !important;
    }

    .banner__content p,
    .banner-two__content p,
    .banner-three__content p {
        font-size: 14px;
        line-height: 22px;
    }

    .banner__content .hero-cta,
    .banner__content .d-flex.mt-60,
    .banner__slider .swiper-slide:first-child .banner__content .hero-cta {
        gap: 10px !important;
        margin-top: 12px !important;
    }

    .banner__content .btn-one,
    .banner-two__content .btn-one,
    .banner-three__content .btn-one {
        min-height: 38px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .sidebar-area {
        width: min(330px, 92vw);
        padding: 28px 20px;
    }
}

.sidebar-area .social-icon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sidebar-area .social-icon a {
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    line-height: 1;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.sidebar-area .social-icon a i {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    color: inherit;
}

.sidebar-area .social-icon a:hover {
    color: #ffffff;
    background-color: var(--dotin-accent);
    border-color: var(--dotin-accent);
}

footer.footer-area .footer__wrp {
    align-items: flex-start;
}

@media (max-width: 380px) {
    .header-area.dotin-style-001 .header-cta .btn-one,
    .header-area.dotin-style-001 .header__main > .d-inline-block .btn-one {
        width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0;
        font-size: 0;
    }

    .header-area.dotin-style-001 .header-cta .btn-one i,
    .header-area.dotin-style-001 .header__main > .d-inline-block .btn-one i {
        margin-left: 0;
        font-size: 13px;
    }
}
