/* ========================================================
   GURU TEG BAHADUR SYSTEMS - COMPLETE GRAPHIC ENGINE CSS
   THEME MAPPING: 90% DARK PURPLE PANELS & LIGHT PURPLE CANVAS
======================================================== */

:root {
    /* 90% Dark Purple Component Modules */
    --dark-90-purple: #120824;  
    --dark-nav-strip: #1a0c33;
    
    /* Body Light Purple & White Mix Canvas Layout */
    --body-light-purple: #eae4f5;
    --section-purple-mix: #f5f0fc;
    
    /* Box & Layout Containers (Vice-Versa Inversion Rules) */
    --dark-layout-box: #241442;
    --light-layout-box: #ffffff;
    
    /* High-Visibility Colorful Typography Framework */
    --text-neon-mint: #00ffcc;
    --text-electric-lilac: #d1b3ff;
    --text-brilliant-gold: #ffd700;
    --text-soft-coral: #ff7e67;
    
    /* Default Functional Typography Contrast */
    --text-stark-white: #ffffff;
    --text-deep-purple: #1b0a33;
    --text-muted-purple: #5c4f75;
    
    /* Boundaries, Lines & Borders */
    --line-purple-track: #543f80;
    --line-light-track: #cfc2e8;
    --shadow-neon-glow: 0 12px 40px rgba(26, 12, 51, 0.45);
}

/* ========================================================
   GLOBAL BASE RESET & ARCHITECTURE
======================================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    font-size: 17px;
    color: var(--text-deep-purple);
    /* Purple-White Mix Gradient Canvas */
    background: linear-gradient(180deg, var(--body-light-purple) 0%, var(--section-purple-mix) 50%, var(--body-light-purple) 100%);
    letter-spacing: .05px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


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

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

.team-card{
    text-align:center;
    height:100%;
}

.photo-avatar{
    width:180px;
    height:180px;
    margin:0 auto 20px;
    border-radius:50%;
    overflow:hidden;
}

.photo-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.team-card h3{
    min-height:60px;
}

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


/* ========================================================
   90% DARK PURPLE HEADER / TOPBAR COMPONENT
======================================================== */
.topbar {
    position: sticky;
    top: 0;
    background: rgba(18, 8, 36, 0.98); /* 90% Dark Purple Base */
    backdrop-filter: blur(12px);
    z-index: 100;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--line-purple-track);
    transition: transform .35s ease;
    will-change: transform;
}

.topbar.topbar-hide {
    transform: translateY(-105%);
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 5%;
    background: linear-gradient(90deg, var(--dark-90-purple) 0%, #1e0e3d 50%, var(--dark-90-purple) 100%);
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.logo-mark {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--line-purple-track), #7c4dff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(209, 179, 255, 0.3);
    cursor: pointer;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Colorful Highly Visible Words on Dark Header Layout */
.brand-name b {
    font-size: 24px;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-stark-white);
    overflow-wrap: anywhere;
    word-break: normal;
}

.brand-name b .accent {
    color: var(--text-neon-mint); /* Dynamic Visible Mint Word */
}

.brand-name b .white {
    color: var(--text-stark-white);
}

.brand-name b .foundation-orange {
    color: var(--text-electric-lilac);
}

.brand-name small {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 6px;
    color: var(--text-electric-lilac); /* Highly Visible Soft Lilac Text */
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: normal;
}

.right-title {
    text-align: right;
    min-width: 0;
}

.right-title b {
    display: block;
    color: var(--text-brilliant-gold); /* Highly Visible Gold Accent Word */
    font-size: 20px;
}

.right-title small {
    font-weight: 500;
    color: var(--text-stark-white);
    line-height: 1.6;
    font-size: 13.5px;
    overflow-wrap: anywhere;
    word-break: normal;
}

/* MOBILE RESPONSIVE TRIGGER BUTTON */
.menu-btn {
    display: none;
    background: var(--dark-nav-strip);
    color: var(--text-neon-mint);
    border: 1px solid var(--line-purple-track);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* ========================================================
   90% DARK PURPLE NAVIGATION STRIP SYSTEM
======================================================== */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 5%;
    background: var(--dark-nav-strip);
    border-top: 1px solid var(--line-purple-track);
    width: 100%;
}

.nav a {
    padding: 14px 14px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 3px solid transparent;
    color: var(--text-electric-lilac); /* Visible Colorful Navigation Words */
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: var(--text-neon-mint); /* Smooth Mint Word Trigger */
    border-color: var(--text-neon-mint);
    background: rgba(0, 255, 204, 0.08);
}

.datebox {
    margin-left: auto;
    background: var(--dark-90-purple);
    color: var(--text-brilliant-gold); /* Colorful High Contrast Time Stamp */
    border: 1px solid var(--line-purple-track);
    border-radius: 22px;
    padding: 7px 14px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

/* ========================================================
   HERO / BANNER COMPONENT METRICS (LIGHT BODY MATRIX)
======================================================== */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 80px 8%;
    min-height: 55vh;
    flex-wrap: wrap;
    width: 100%;
    background: radial-gradient(circle at 10% 30%, rgba(84, 63, 128, 0.08) 0%, transparent 65%);
}

.hero-content {
    flex: 1;
    min-width: 320px;
}

.hero h1 {
    font-size: clamp(26px, 4.2vw, 44px);
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 800;
    color: var(--text-deep-purple);
}

#typing-text::after {
    content: "|";
    animation: blink 0.7s infinite;
    color: #421b80;
}

@keyframes blink { 50% { opacity: 0; } }

.hero h2 {
    font-size: 21px;
    margin: 0 0 20px;
    color: #3b1280;
    font-weight: 700;
    line-height: 1.5;
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-muted-purple);
    font-weight: 500;
}

/* INNER INNER PAGE BANNER HEADERS */
.page-head {
    background: linear-gradient(135deg, var(--dark-layout-box), var(--dark-90-purple));
    color: var(--text-stark-white);
    padding: 55px 6%;
    text-align: center;
    border-bottom: 1px solid var(--line-purple-track);
}

.page-head h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 0;
    color: var(--text-stark-white);
    letter-spacing: 0.5px;
}

.page-head p {
    margin: 10px 0 0;
    font-weight: 700;
    color: var(--text-electric-lilac); /* Colorful Visible Guide Word */
}

/* INTERACTIVE ACTION BUTTON MODULES */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #421b80, #6c32cc);
    color: var(--text-stark-white); /* Dark framework layout: White Words */
    border: 0;
    border-radius: 9px;
    padding: 13px 26px;
    font-weight: 700;
    margin: 6px 7px 6px 0;
    box-shadow: 0 8px 22px rgba(66, 27, 128, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(108, 50, 204, 0.45);
}

/* Vice-Versa Rule: Dark Box Button with colorful words */
.btn.dark {
    background: var(--dark-90-purple);
    border: 1px solid var(--line-purple-track);
    color: var(--text-neon-mint); /* Dark box layout: colorful visible words */
    box-shadow: none;
}

.btn.dark:hover {
    background: var(--nav-hover-purple);
}

.hero-slideshow {
    flex: 1;
    min-width: 320px;
    max-width: 520px;
    height: clamp(320px, 31vw, 520px);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(26, 12, 51, 0.15);
    border: 1px solid var(--line-light-track);
}

.hero-slideshow img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slideshow img.active {
    opacity: 1;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* COMMON LAYOUT TRACK MODULE */
.section {
    padding: 50px 6%;
    position: relative;
    width: 100%;
}

.section:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-light-track), transparent);
}

.section.white {
    background: var(--section-purple-mix); /* High purple low white mix section flow */
}

.title {
    font-size: 34px;
    margin: 0 0 12px;
    color: var(--text-deep-purple);
}

.title-orange {
    color: #421b80;
}

.lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-deep-purple);
    font-weight: 500;
    max-width: 900px;
}

/* GRID GRID STRUCTURES */
.grid {
    display: grid;
    gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========================================================
   VICE-VERSA CONTAINER LAWS (BOX MODULE INTERACTIVE SPEC)
======================================================== */

/* TYPE A: LIGHT LAYOUT BOX -> SHARP DARK READABLE WORDING */
.card {
    background: var(--light-layout-box); /* Light layout element */
    border: 1px solid var(--line-light-track);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(26, 12, 51, 0.05);
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--line-purple-track);
    box-shadow: 0 15px 35px rgba(84, 63, 128, 0.15);
}

.feature {
    text-align: center;
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(66, 27, 128, 0.06);
    color: #421b80;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin: 0 auto 14px;
    font-weight: 900;
}

/* Dark readable words maps inside light layout card */
.feature h3, .card h3 {
    margin: 7px 0;
    color: var(--text-deep-purple); /* Dark Word */
    font-weight: 800;
}

.card p, .card li {
    line-height: 1.65;
    color: var(--text-muted-purple);
    font-weight: 600;
}

/* TYPE B: DARK LAYOUT BOX -> STARK WHITE & HIGHLY COLORFUL WORDING */
.poster {
    background: linear-gradient(145deg, var(--dark-layout-box), var(--dark-90-purple)); /* Dark layout element */
    border: 1px solid var(--line-purple-track);
    border-radius: 18px;
    padding: 34px;
    text-align: center;
    box-shadow: var(--shadow-neon-glow);
}

.poster-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.poster-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 3px solid var(--line-purple-track);
}

/* White and colorful visible typography word layers inside dark boxes */
.poster h2 {
    font-size: 32px;
    color: var(--text-stark-white); /* White Word */
    margin: 6px 0;
}

.poster h3 {
    color: var(--text-neon-mint); /* Colorful Visible Word */
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    border: 1px solid var(--line-purple-track);
    color: var(--text-brilliant-gold); /* Colorful high contrast indicator */
    background: rgba(255, 215, 0, 0.05);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 12px;
}

/* ========================================================
   ADVANCED INNER PAGE SEGMENTS CONFIGURATION
======================================================== */

/* STRIPS & STRATEGIC HIGHLIGHTERS */
.strip {
    background: linear-gradient(90deg, var(--dark-90-purple), var(--dark-layout-box));
    color: var(--text-neon-mint); /* Dark box layout: Colorful highly visible word */
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid var(--line-purple-track);
    box-shadow: var(--shadow-neon-glow);
}

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

/* Light box model layout */
.stat {
    background: var(--light-layout-box);
    color: #421b80;
    border: 1px solid var(--line-light-track);
    border-radius: 13px;
    padding: 18px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(26, 12, 51, 0.05);
}

.stat b {
    display: block;
    font-size: 28px;
    color: var(--text-deep-purple);
}

/* LIST COMPONENT RULES */
.list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list li {
    margin: 14px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-deep-purple);
    font-weight: 600;
}

.list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #6c32cc;
    font-weight: 900;
}

/* TIMELINE AND COMPLEX PROCESS FLOW ELEMENTS */
.timeline {
    border-left: 4px solid var(--line-light-track);
    padding-left: 18px;
    margin-top: 20px;
}

.step {
    position: relative;
    background: var(--light-layout-box);
    border: 1px solid var(--line-light-track);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.step::before {
    content: '';
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #7c4dff, var(--line-purple-track));
    border-radius: 50%;
    position: absolute;
    left: -27px;
    top: 22px;
}

.step h3 {
    margin: 0 0 8px;
    color: var(--text-deep-purple);
    font-size: 19px;
}

/* TEAM & AVATAR PANELS SPEC */
.team-card {
    text-align: center;
}

.team-heading {
    text-align: center;
    font-size: 26px;
    margin: 35px 0 20px;
    color: #421b80;
    font-weight: 800;
}

.role {
    color: #6c32cc;
    font-weight: 700;
    margin-bottom: 8px;
}

/* DYNAMIC INTERACTIVE GALLERY HOVER BLOCKS */
.photo {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 20px;
    line-height: 0;
    box-shadow: 0 10px 25px rgba(26,12,51,0.12);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Light box element matching spanning labels */
.photo span {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-stark-white); /* White Word */
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.85);
    background: rgba(18, 8, 36, 0.75); /* Dark layout box capsule integration */
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--line-purple-track);
    white-space: nowrap;
}

.photo-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 240px;
    padding: 0;
}

.gallery-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    background: linear-gradient(transparent, rgba(18,8,36,0.92));
    color: var(--text-stark-white);
    font-weight: 700;
    text-align: center;
    font-size: 15px;
}

/* INTERACTIVE CATEGORY TABS */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
}

.tabs button {
    border: 1px solid var(--line-light-track);
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 700;
    background: var(--light-layout-box);
    color: var(--text-deep-purple);
    cursor: pointer;
    transition: all 0.25s ease;
}

.tabs button:hover,
.tabs button.active {
    background: linear-gradient(135deg, #421b80, #6c32cc);
    color: var(--text-stark-white);
    border-color: #421b80;
}

/* TESTIMONIAL QUOTE MODULES */
.quote {
    font-size: 48px;
    line-height: 1;
    color: #6c32cc;
    font-family: Georgia, serif;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-deep-purple);
    margin-top: 12px;
}

/* INPUT FORM FIELD LAYOUT MATRICES */
.contact-box input,
.contact-box textarea,
.contact-box select {
    width: 100%;
    padding: 16px;
    background: var(--section-purple-mix);
    border: 1px solid var(--line-light-track);
    border-radius: 10px;
    margin-bottom: 12px;
    font: inherit;
    color: var(--text-deep-purple);
    transition: border-color 0.25s ease;
}

.contact-box input:focus,
.contact-box textarea:focus,
.contact-box select:focus {
    outline: none;
    border-color: var(--line-purple-track);
}

.info-line {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 15px 0;
}

.info-line .icon {
    margin: 0;
    flex-shrink: 0;
}

/* ADVANCED SYSTEM SEGMENTS (CCTV PORTAL SPECIFIC) */
.cctv-soon-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cctv-soon-card {
    position: relative;
    overflow: hidden;
    padding: 70px 28px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--dark-layout-box), var(--dark-90-purple)); /* Dark Layout Box Base */
    border: 1px solid var(--line-purple-track);
    box-shadow: var(--shadow-neon-glow);
}

.cctv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #7c4dff, var(--line-purple-track));
    color: #fff;
    font-size: 48px;
    box-shadow: 0 15px 35px rgba(124, 77, 255, 0.35);
}

.cctv-live-soon {
    margin: 0;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 800;
    /* Colorful highly visible word */
    color: var(--text-neon-mint);
    text-transform: uppercase;
}

.cctv-subtitle {
    margin: 22px auto 0;
    max-width: 780px;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-electric-lilac); /* Visible word color loop */
}

.cctv-status-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Vice-versa law: Inside light-purple track context, sub status boxes are standard light frames */
.cctv-status-box {
    padding: 24px 18px;
    border-radius: 22px;
    background: var(--light-layout-box);
    border: 1px solid var(--line-light-track);
    box-shadow: 0 10px 25px rgba(26,12,51,0.04);
}

.cctv-status-box h3 {
    margin: 0 0 8px;
    color: #421b80;
    font-size: 20px;
}

.cctv-status-box p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-muted-purple);
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: start;
}

/* ========================================================
   90% DARK PURPLE FOOTER MODULE WITH COLORFUL TYPOGRAPHY
======================================================== */
.footer {
    background: var(--dark-90-purple); /* 90% Dark Purple Base Continuity */
    color: var(--text-electric-lilac); /* Distinct visible colorful words */
    padding: 35px 6%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line-purple-track);
    width: 100%;
}

.footer-left { flex: 0 0 auto; line-height: 1.7; }
.footer-right { flex: 1; text-align: right; line-height: 1.6; }
.footer b { color: var(--text-neon-mint); } /* Visible colorful bold words */
.footer-link { color: var(--text-brilliant-gold); text-decoration: none; }
.footer-link:hover { text-decoration: underline; }

.protection-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-stark-white);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* SYSTEMIC ACCENT DATA MODALS */
.logo-popup {
    position: fixed;
    inset: 0;
    background: rgba(18, 8, 36, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.logo-popup img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 20px;
    background: #ffffff;
    padding: 15px;
    border: 1px solid var(--line-light-track);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
}

/* ========================================================
   MEDIA RESPONSIVE LAYOUT MATRIX BREAKPOINTS
======================================================== */
@media(max-width:1180px){
    .brand-row { flex-wrap: wrap; }
    .right-title { text-align: left; flex: 1 1 100%; }
    .brand { flex: 1 1 100%; }
    .menu-btn { display: block; margin-left: auto; }
    .nav { display: none; flex-direction: column; align-items: stretch; padding: 10px 5%; }
    .nav.show { display: flex; }
    .nav a { width: 100%; border-bottom: 1px solid var(--line-purple-track); padding: 13px 12px; }
    .datebox { margin: 10px 0 0; display: block; text-align: center; }
}

@media(max-width:950px){
    .grid-2, .grid-3, .grid-4, .two-col, .stats, .cctv-status-grid { grid-template-columns: 1fr 1fr; }
    .hero { flex-direction: column; text-align: center; }
    .hero-slideshow { width: 100%; height: 400px; }
}

@media(max-width:580px){
    .grid-2, .grid-3, .grid-4, .two-col, .stats, .cctv-status-grid { grid-template-columns: 1fr; }
    .footer { flex-direction: column; align-items: flex-start; }
    .footer-right { text-align: left; }
}

/* ===============================
   UNIFIED SQUARE GALLERY
================================= */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.photo-gallery{
    aspect-ratio:1/1;
    height:auto !important;
    overflow:hidden;
    border-radius:18px;
}

.photo-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-title{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:12px;
    background:linear-gradient(transparent, rgba(0,0,0,.85));
    color:#fff;
    text-align:center;
    font-size:14px;
    font-weight:600;
}

.tabs{
    display:none !important;
}

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

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

/* ==========================================
   GLOBAL WATERMARK BANNER
========================================== */

html,
body{
    position: relative;
}

body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("assets/images/home-banner/gtbes-banner.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 65% auto;

    opacity: 0.07;

    pointer-events: none;

    z-index: 1;
}

/* Sab content watermark ke upar rahe */
.topbar,
.hero,
.section,
.footer,
.page-head{
    position: relative;
    z-index: 2;
}