/* ROOT VARIABLES */
/* Website ke common colors, shadow aur theme values yahan define hain. */

:root{
    --orange:#ff6500;
    --orange2:#ff8126;
    --dark:#15100d;
    --cream:#fff7ef;
    --muted:#666;
    --line:#f0dfd0;
    --shadow:0 16px 42px rgba(85,37,0,.13);
}


/* GLOBAL RESET */
/* Har element ka spacing aur box calculation stable rakhne ke liye. */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Ubuntu',Arial,Helvetica,sans-serif;
    font-size:17px;
    color:#2f251f;
    background:linear-gradient(180deg,#fff,#fff7ef);
    letter-spacing:.05px;
}

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


/* HEADER / TOPBAR */
/* Website ke top logo, name, contact aur sticky header ke liye. */

.topbar{
    position:sticky;
    top:0;
    background:#fff;
    z-index:100;
    box-shadow:0 3px 20px rgba(0,0,0,.08);
}

.brand-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:14px 5%;
    background:linear-gradient(90deg,#fff 0%,#fff2e7 45%,#fff 100%);
}

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

.logo-mark{
    width:52px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff6500,#ff8a26);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:30px;
    font-weight:900;
    box-shadow:0 10px 28px rgba(255,101,0,.32);
}

.brand-name b{
    font-size:27px;
    letter-spacing:.2px;
    text-transform:uppercase;
}

.brand-name .orange{
    color:var(--orange);
}

.brand-name .white{
    color:#fff;
    background:#1c1511;
    border-radius:5px;
    padding:3px 8px;
    text-shadow:0 1px 1px #000;
}

.brand-name .foundation-orange{
    color:var(--orange);
    background:transparent;
    padding:0;
    text-shadow:none;
}

.brand-name small{
    display:block;
    font-size:12px;
    font-weight:800;
    margin-top:4px;
    color:#6a5040;
}

.right-title{
    text-align:right;
}

.right-title b{
    display:block;
    color:var(--orange);
    font-size:22px;
}

.right-title small{
    font-weight:800;
    color:#382820;
    line-height:1.55;
    font-size:14px;
}


/* MENU BUTTON */
/* Mobile/tablet/zoom-in screen par hamburger menu button dikhane ke liye. */

.menu-btn{
    display:none;
    background:var(--orange);
    color:#fff;
    border:0;
    padding:10px 14px;
    border-radius:8px;
    font-weight:900;
    cursor:pointer;
}


/* NAVIGATION MENU */
/* Desktop par single-line menu. Zoom-in/small screen par hamburger menu banega. */

.nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:2px;
    padding:0 5%;
    border-top:1px solid #f2e4d9;
    flex-wrap:nowrap;
    overflow:hidden;
}

.nav a{
    padding:12px 11px;
    font-size:14px;
    font-weight:800;
    border-bottom:3px solid transparent;
    white-space:nowrap;
}

.nav a:hover,
.nav a.active{
    color:var(--orange);
    border-color:var(--orange);
    background:#fff7ef;
}

.datebox{
    margin-left:auto;
    background:#1d1510;
    color:#fff;
    border-radius:22px;
    padding:7px 12px;
    font-weight:800;
    font-size:12px;
    white-space:nowrap;
}


/* HERO SECTION */
/* Homepage ke main banner, text aur slideshow area ke liye. */

.hero{
    min-height:545px;
    background:linear-gradient(90deg,rgba(0,0,0,.85),rgba(0,0,0,.58),rgba(0,0,0,.20)),url('assets/images/hero.svg') center/cover;
    display:flex;
    align-items:center;
    padding:70px 6%;
    color:#fff;
}

.hero-content{
    max-width:690px;
}

.kicker{
    display:inline-block;
    background:rgba(255,101,0,.18);
    border:1px solid rgba(255,101,0,.65);
    color:#fff;
    border-radius:99px;
    padding:8px 14px;
    font-weight:900;
    margin-bottom:16px;
}

.hero h1{
    font-size:70px;
    line-height:.98;
    margin:0 0 12px;
}

.hero h1 span,
.orange-text{
    color:var(--orange);
}

.hero h2{
    font-size:23px;
    margin:0 0 16px;
}

.hero p{
    font-size:18px;
    line-height:1.65;
    margin-bottom:18px;
}

.btn{
    display:inline-block;
    background:var(--orange);
    color:#fff;
    border:0;
    border-radius:9px;
    padding:13px 22px;
    font-weight:900;
    margin:6px 7px 6px 0;
    box-shadow:0 8px 20px rgba(255,101,0,.22);
    cursor:pointer;
}

.btn.dark{
    background:#14100e;
}

.btn.light{
    background:#fff;
    color:var(--orange);
    border:1px solid #ffd3ad;
}


/* PAGE HEADER */
/* Inner pages ke banner heading ke liye. */

.page-head{
    background:linear-gradient(90deg,rgba(255,101,0,.98),rgba(255,101,0,.72),rgba(0,0,0,.35)),url('assets/images/banner.svg') center/cover;
    color:#fff;
    padding:48px 6%;
}

.page-head h1{
    font-size:48px;
    margin:0;
}

.page-head p{
    margin:8px 0 0;
    font-weight:800;
}


/* COMMON SECTION */
/* Website ke all content sections ke spacing aur layout ke liye. */

.section{
    padding:42px 6%;
    position:relative;
}

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

.section.white{
    background:#fff;
}

.title{
    font-size:34px;
    margin:0 0 12px;
    color:#1d1510;
}

.title-orange{
    color:var(--orange);
    margin-top:0;
}

.lead{
    font-size:19px;
    line-height:1.7;
    color:#5d4a40;
    max-width:900px;
}


/* GRID SYSTEM */
/* Cards ko 2, 3, 4 columns me arrange karne ke liye. */

.grid{
    display:grid;
    gap:22px;
}

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

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

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


/* CARD DESIGN */
/* Common cards, feature cards aur hover effect ke liye. */

.card{
    background:linear-gradient(180deg,#fff,#fffdfb);
    border:1px solid var(--line);
    border-radius:20px;
    padding:26px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 55px rgba(85,37,0,.18);
}

.mini{
    padding:18px;
}

.feature{
    text-align:center;
}

.icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#fff1e6;
    color:var(--orange);
    display:grid;
    place-items:center;
    font-size:30px;
    margin:0 auto 14px;
    font-weight:900;
}

.feature h3,
.card h3{
    margin:7px 0;
    color:#20150f;
}

.card p,
.card li{
    line-height:1.65;
    color:#604d43;
}


/* STRIP / STATS */
/* Highlight strip aur achievement/support boxes ke liye. */

.strip{
    background:linear-gradient(90deg,var(--orange),var(--orange2));
    color:#fff;
    border-radius:12px;
    padding:17px 22px;
    margin-top:24px;
    text-align:center;
    font-size:18px;
    font-weight:900;
    box-shadow:0 10px 28px rgba(255,101,0,.22);
}

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

.stat{
    background:linear-gradient(180deg,#ff7415,#ff5d00);
    color:#fff;
    border-radius:13px;
    padding:18px;
    text-align:center;
    font-weight:900;
}

.stat b{
    display:block;
    font-size:28px;
}

/* LIST DESIGN */
/* Tick mark wali list ke liye. */

.list{
    margin:0;
    padding:0;
    list-style:none;
}

.list li{
    margin:10px 0;
    padding-left:28px;
    position:relative;
}

.list li:before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    color:var(--orange);
    font-weight:900;
}


/* PHOTO CARDS */
/* Image based cards, gallery aur visual sections ke liye. */

.photo{
    min-height:220px;
    border-radius:18px;
    background:linear-gradient(120deg,rgba(255,255,255,.78),rgba(255,226,201,.76)),url('assets/images/card.svg') center/cover;
    border:1px solid #f3d9c1;
    display:flex;
    align-items:end;
    justify-content:center;
    text-align:center;
    color:#fff;
    font-weight:900;
    padding:18px;
    text-shadow:0 2px 8px rgba(0,0,0,.55);
    box-shadow:inset 0 -90px 80px rgba(0,0,0,.38),0 10px 28px rgba(85,37,0,.12);
}

.photo-care{
    background-image:linear-gradient(120deg,rgba(255,101,0,.10),rgba(0,0,0,.08)),url('assets/images/care.svg');
}

.photo-group{
    background-image:linear-gradient(120deg,rgba(255,101,0,.12),rgba(0,0,0,.06)),url('assets/images/group.svg');
}

.photo-gallery{
    background-image:linear-gradient(120deg,rgba(255,101,0,.10),rgba(0,0,0,.04)),url('assets/images/gallery.svg');
}

.photo-cctv{
    background-image:linear-gradient(120deg,rgba(255,101,0,.10),rgba(0,0,0,.04)),url('assets/images/cctv.svg');
}


/* TWO COLUMN LAYOUT */
/* Text + poster ya text + image wale section ke liye. */

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


/* TIMELINE */
/* Step-by-step process/timeline design ke liye. */

.timeline{
    border-left:4px solid #ffceb0;
    padding-left:18px;
}

.step{
    position:relative;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    padding:16px 18px;
    margin-bottom:14px;
    box-shadow:var(--shadow);
}

.step:before{
    content:'';
    width:14px;
    height:14px;
    background:var(--orange);
    border-radius:50%;
    position:absolute;
    left:-27px;
    top:22px;
}


/* TEAM SECTION */
/* Team cards aur avatar design ke liye. */

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

.avatar{
    width:110px;
    height:110px;
    border-radius:50%;
    background:linear-gradient(135deg,#fff0e6,#ffd4b2);
    display:grid;
    place-items:center;
    margin:0 auto 13px;
    border:4px solid #fff;
    box-shadow:0 6px 20px rgba(255,101,0,.18);
    font-size:46px;
}

.role{
    color:var(--orange);
    font-weight:900;
}


/* TABS */
/* Gallery tabs/buttons ke liye. */

.tabs{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    margin-bottom:22px;
}

.tabs button{
    border:0;
    border-radius:10px;
    padding:12px 20px;
    font-weight:900;
    background:#fff1e6;
    color:#5a3320;
    cursor:pointer;
}

.tabs .active,
.tabs button.active{
    background:var(--orange);
    color:#fff;
}


/* GALLERY / CAMERA GRID */
/* Gallery aur CCTV camera grid layout ke liye. */

.gallery{
    grid-template-columns:repeat(3,1fr);
}

.gallery .photo{
    min-height:165px;
}

.cam-grid{
    grid-template-columns:repeat(4,1fr);
}

.cam{
    padding:12px;
}

.cam .photo{
    min-height:120px;
    font-size:13px;
}


/* TESTIMONIAL */
/* Testimonial quote aur name styling ke liye. */

.quote{
    font-size:48px;
    line-height:1;
    color:var(--orange);
    font-family:Georgia,serif;
}

.testimonial-name{
    font-weight:900;
    color:#1a110c;
}


/* RESOURCE ROW */
/* Resources page ke icon + text rows ke liye. */

.resource-row{
    display:flex;
    gap:13px;
    align-items:flex-start;
    border-bottom:1px dashed #f0c7a6;
    padding:14px 0;
}

.resource-row:last-child{
    border:0;
}

.resource-row .icon{
    margin:0;
    flex:0 0 52px;
}


/* POSTER BOX */
/* Home/about section ke poster style box ke liye. */

.poster{
    background:linear-gradient(145deg,#fffaf5,#fff1e6);
    border:1px solid #ffcfaa;
    border-radius:18px;
    padding:34px;
    text-align:center;
    box-shadow:var(--shadow);
}

.poster h2{
    font-size:40px;
    color:#c94a00;
    margin:4px 0;
}

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

.badge{
    border:1px solid #ffb782;
    color:var(--orange);
    background:#fff;
    border-radius:999px;
    padding:9px 13px;
    font-weight:900;
    font-size:12px;
}

.helpline{
    display:inline-block;
    border:3px solid var(--orange);
    border-radius:16px;
    padding:15px 30px;
    color:var(--orange);
    font-size:32px;
    font-weight:900;
    background:#fff;
    margin-top:16px;
}


/* CONTACT FORM */
/* Contact page ke input, textarea aur select fields ke liye. */

.contact-box input,
.contact-box textarea,
.contact-box select{
    width:100%;
    padding:16px;
    border:1px solid #e7d6cb;
    border-radius:10px;
    margin-bottom:12px;
    font:inherit;
}

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

.info-line .icon{
    margin:0;
    width:44px;
    height:44px;
    font-size:20px;
}


/* FOOTER */
/* Website footer aur footer link ke liye. */

.footer{
    background:#18110d;
    color:#fff;

    padding:30px 6%;

    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    flex-wrap:wrap;
}

.footer-left{
    flex:0 0 auto;
}

.footer-right{
    flex:1;
    text-align:right;
}

.protection-tag{
    display:inline-block;

    background:rgba(255,101,0,0.12);

    border:1px solid rgba(255,101,0,0.45);

    color:#ff7a00;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;
    font-weight:800;

    letter-spacing:.3px;
}

.footer b{
    color:var(--orange);
}

.footer-link{
    color:#ff7a00;
    text-decoration:none;
    font-weight:600;
}

.footer-link:hover{
    text-decoration:underline;
}

/* MOBILE */
@media(max-width:580px){

    .footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-right{
        text-align:left;
    }

}


/* EMAIL PILL */
/* Email ko pill badge style me dikhane ke liye. */

.email-pill{
    display:inline-block;
    background:#fff1e6;
    color:#cf4c00;
    border:1px solid #ffc49a;
    border-radius:999px;
    padding:10px 16px;
    font-weight:900;
    margin:14px 0 0;
}


/* HERO LAYOUT OVERRIDE */
/* Hero section me content aur slideshow ko side-by-side set karne ke liye. */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    padding:80px 8%;
    min-height:60vh;
    flex-wrap:wrap;
}

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

.hero-slideshow{
    flex:1;
    min-width:320px;
    max-width:520px;
    height:520px;
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.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;
}


/* PDF BUTTONS */
/* Team/testimonial PDF download buttons ke liye. */

.team-pdf-btn{
    text-align:center;
    margin-top:35px;
}

.pdf-btn{
    padding:14px 30px;
    font-size:18px;
    border-radius:12px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.pdf-btn:hover{
    transform:translateY(-3px);
    opacity:0.92;
}

.testimonial-pdf-btn{
    text-align:center;
    margin-top:35px;
}

.tpdf-btn{
    padding:14px 30px;
    font-size:18px;
    border-radius:12px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.tpdf-btn:hover{
    transform:translateY(-3px);
    opacity:0.92;
}


/* MAP BUTTON / MAP BOX */
/* Contact page ke Google map button aur embedded map box ke liye. */

.map-btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 18px;
    background:#ff7a00;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-size:15px;
    transition:0.3s ease;
}

.map-btn:hover{
    opacity:0.9;
    transform:translateY(-2px);
}

.map-box{
    margin-top:18px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}


/* DYNAMIC GALLERY IMAGE */
/* JS se load hone wali gallery images ke liye. */

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

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

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


/* TYPING TEXT */
/* Homepage typing animation heading ke liye. */

#typing-text{
    font-size:42px;
    line-height:1.05;
    font-weight:800;
    min-height:40px;
    color:#ff6500;
}

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

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


/* TEAM HEADING */
/* Team page ke section heading ke liye. */

.team-heading{
    text-align:center;
    font-size:px;
    margin:35px 0 25px;
    color:#ff6500;
    font-weight:800;
}


/* RESPONSIVE - TABLET / ZOOM-IN MENU FIX */
/* 1180px ke neeche ya browser zoom-in par menu two-line nahi hoga; hamburger ban jayega. */

@media(max-width:1180px){

    .brand-row{
        flex-wrap:wrap;
    }

    .right-title{
        text-align:left;
    }

    .menu-btn{
        display:block;
        margin-left:auto;
    }

    .nav{
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:10px 5%;
        flex-wrap:nowrap;
        overflow:visible;
    }

    .nav.show{
        display:flex;
    }

    .nav a{
        width:100%;
        border-bottom:1px solid #f3e2d4;
        padding:13px 12px;
        font-size:15px;
        white-space:normal;
    }

    .datebox{
        margin:10px 0 0;
        display:block;
        text-align:center;
        white-space:normal;
    }

}


/* RESPONSIVE - DESKTOP MENU */
/* 1181px ke upar menu hamesha normal single-line desktop menu rahega. */

@media(min-width:1181px){

    .menu-btn{
        display:none;
    }

    .nav{
        display:flex !important;
        flex-direction:row;
        align-items:center;
        justify-content:center;
        flex-wrap:nowrap;
    }

}


/* RESPONSIVE - MEDIUM SCREENS */
/* Tablet screens par grid aur hero layout ko readable banane ke liye. */

@media(max-width:950px){

    .grid-2,
    .grid-3,
    .grid-4,
    .cam-grid,
    .gallery,
    .two-col{
        grid-template-columns:1fr 1fr;
    }

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

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

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-slideshow{
        width:100%;
        height:400px;
    }

}


/* RESPONSIVE - MOBILE SCREENS */
/* Mobile screens par all grids single column, text/image sizes adjust karne ke liye. */

@media(max-width:580px){

    .grid-2,
    .grid-3,
    .grid-4,
    .cam-grid,
    .gallery,
    .two-col,
    .stats{
        grid-template-columns:1fr;
    }

    .hero{
        min-height:430px;
        padding:45px 5%;
    }

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

    .hero h2{
        font-size:20px;
    }

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

    .brand-name b{
        font-size:18px;
    }

    .logo-mark{
        width:42px;
        height:42px;
    }

    .page-head h1{
        font-size:32px;
    }

    .section{
        padding:30px 5%;
    }

    .poster{
        padding:22px;
    }

    .poster h2{
        font-size:27px;
    }

    .helpline{
        font-size:23px;
        padding:12px 18px;
    }

    .title{
        font-size:25px;
    }

    #typing-text{
        font-size:34px;
        min-height:80px;
    }

}


/* PHOTO IMAGE OVERRIDE */
/* Actual image wali photo cards ko proper crop aur cover karne ke liye. */

.photo{
    position:relative;
    width:100%;
    height:320px;
    overflow:hidden;
    border-radius:18px;
}

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

.photo-text{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:18px;
    background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color:#fff;
    font-size:16px;
    line-height:1.6;
    font-weight:500;
}


/* LOGO IMAGE */
/* Logo image ko circle ke andar properly fit karne ke liye. */

.logo-mark{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:pointer;
}

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


/* LOGO POPUP */
/* Logo par click karne ke baad full-size popup show karne ke liye. */

.logo-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    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:white;
    padding:15px;
}

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

/* =========================================
   POSTER CENTER LOGO
========================================= */

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

.poster-logo img{
    width:130px;
    height:130px;
    object-fit:contain;

    border-radius:50%;

    background:#fff;

    padding:10px;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.15);

    border:4px solid rgba(255,255,255,0.6);
}

/* =========================================
   FACILITIES PHOTO CARD
========================================= */

/* ===================================================== */
/* FACILITY GALLERY IMAGE BOX */
/* ===================================================== */

/* ===================================================== */
/* FACILITY GALLERY IMAGE BOX */
/* ===================================================== */

.photo{
    position:relative;

    overflow:hidden;

    min-height:260px;

    padding:0;
    margin:0;

    border:none;
    border-radius:20px;

    line-height:0;
}

/* FULL IMAGE INSIDE COMPLETE BOX */
.photo img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    border:none;

    margin:0;
    padding:0;
}

/* ===================================================== */
/* IMAGE NAME TEXT */
/* ===================================================== */

.photo span{

    /* IMAGE KE UPAR */
    position:absolute;

    /* CENTER BOTTOM */
    left:50%;
    bottom:25px;

    transform:translateX(-50%);

    z-index:2;

    color:#fff;

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

    text-align:center;

}

/* WEBSITE BASIC PROTECTION LAYER - added without changing layout/design */
html, body, body *{
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-touch-callout:none;
}
input, textarea, [contenteditable="true"], input *, textarea *, [contenteditable="true"] *{
    -webkit-user-select:text;
    -moz-user-select:text;
    -ms-user-select:text;
    user-select:text;
}
img, picture, svg{
    -webkit-user-drag:none;
    pointer-events:auto;
}

/* RESPONSIVE SUPPORT UPGRADE - added without changing content/theme/protection */
html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img,
svg,
video,
iframe{
    max-width:100%;
}

.topbar{
    transition:transform .35s ease;
    will-change:transform;
}

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

.brand-row,
.nav,
.hero,
.section,
.footer{
    width:100%;
}

.brand,
.brand-name,
.right-title,
.card,
.poster,
.photo,
.feature,
.value,
.program,
.contact-box,
.gallery-title,
.hero-content,
.hero-slideshow{
    min-width:0;
}

.brand-name b,
.brand-name small,
.right-title small,
.card,
.poster,
.value,
.program{
    overflow-wrap:anywhere;
    word-break:normal;
}

.hero h1{
    font-size:clamp(36px,4.2vw,70px);
}

#typing-text{
    font-size:clamp(32px,3.2vw,48px);
}

.hero-slideshow{
    height:clamp(320px,31vw,560px);
}

.map-box iframe{
    width:100%;
}

@media(min-width:1600px){
    .brand-row,
    .nav,
    .hero,
    .section,
    .footer{
        padding-left:8%;
        padding-right:8%;
    }
}

@media(max-width:1180px){
    .topbar.topbar-hide{
        transform:translateY(-100%);
    }

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

    .brand{
        flex:1 1 100%;
    }

    .right-title{
        flex:1 1 100%;
    }
}

@media(max-width:760px){
    body{
        font-size:16px;
    }

    .brand-row{
        gap:12px;
        padding:12px 4.5%;
    }

    .brand{
        align-items:flex-start;
    }

    .right-title b{
        font-size:18px;
    }

    .right-title small{
        font-size:13px;
    }

    .hero-content{
        min-width:0;
        width:100%;
    }

    .hero-slideshow{
        min-width:0;
        width:100%;
        height:clamp(260px,72vw,420px);
    }

    .btn,
    .pdf-btn,
    .tpdf-btn{
        max-width:100%;
        text-align:center;
    }
}

@media(max-width:420px){
    .brand-name b{
        font-size:16px;
        line-height:1.25;
    }

    .brand-name small{
        font-size:11px;
    }

    .menu-btn{
        width:100%;
    }

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

    .hero-btns .btn{
        width:100%;
    }
}
