:root{
    --primary:#e95525;
    --secondary:#0f766e;
    --dark:#212529;
    --light:#ffffff;
    --accent:#f7b733;
    --ink:#14202f;
    --muted:#667386;
    --surface:#f6f3ee;
    --border:#e7ded2;
    --shadow:0 18px 45px rgba(20,32,47,.1);
    --radius:8px;
}

*{box-sizing:border-box}
body{
    margin:0;
    color:var(--ink);
    background:
        linear-gradient(180deg,#fff 0%,#fff 48%,#f8f4ee 100%);
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.65;
}
a{color:inherit;text-decoration:none}
a:hover{color:var(--primary)}
img,video{max-width:100%;height:auto}
.container{width:min(1180px,calc(100% - 32px));max-width:1180px;margin-inline:auto}

/* Local Bootstrap-style fallback so the template remains clean without CDN access. */
.d-flex{display:flex!important}
.grid{display:grid!important}
.flex-wrap{flex-wrap:wrap!important}
.align-items-center{align-items:center!important}
.align-items-end{align-items:flex-end!important}
.justify-content-between{justify-content:space-between!important}
.justify-content-center{justify-content:center!important}
.gap-2{gap:.5rem!important}
.gap-3{gap:1rem!important}
.gap-4{gap:1.5rem!important}
.mb-0{margin-bottom:0!important}
.mb-3{margin-bottom:1rem!important}
.mt-3{margin-top:1rem!important}
.mt-4{margin-top:1.5rem!important}
.w-100{width:100%!important}
.h-100{height:100%!important}
.row{display:flex;flex-wrap:wrap;margin-inline:-.75rem}
.row>*{width:100%;max-width:100%;padding-inline:.75rem}
.g-3{row-gap:1rem}
.g-4{row-gap:1.5rem}
.col-6{width:50%}
.col-12{width:100%}
.navbar{display:flex;align-items:center}
.navbar>.container{display:flex;align-items:center;gap:1rem}
.navbar-brand{display:inline-flex;align-items:center;flex:0 0 auto}
.navbar-nav{display:flex;align-items:center;gap:.2rem;padding-left:0;margin:0;list-style:none}
.navbar-collapse{display:flex;align-items:center;flex:1 1 auto}
.ms-auto{margin-left:auto!important}
.ms-lg-2{margin-left:.5rem!important}
.nav-item{list-style:none}
.dropdown{position:relative}
.dropdown-menu{display:none;position:absolute;top:100%;left:0;z-index:1050;margin:0;list-style:none}
.dropdown:hover>.dropdown-menu,.dropdown-menu.show{display:block}
.dropdown-item{display:flex;width:100%;clear:both}
.carousel{position:relative}
.carousel-inner{position:relative;width:100%;overflow:hidden;}
.carousel-item{display:none;position:relative;width:100%}
.carousel-item.active{display:block}
.carousel-control-prev,.carousel-control-next{position:absolute;z-index:2;display:grid;place-items:center;border:0}
.carousel-control-prev-icon,.carousel-control-next-icon{width:1.4rem;height:1.4rem;display:block}
.carousel-control-prev-icon::before{font-size:2.1rem;line-height:1;color:#101722}
.carousel-control-next-icon::before{font-size:2.1rem;line-height:1;color:#101722}

.btn-closez{width:38px; height:38px; border:0; border-radius:50%; background:#eef1f5; position:relative; cursor:pointer; transition:all .3s ease;}
.btn-closez:hover{background:#dfe5ec; transform:rotate(90deg);}
.btn-closez:active{transform:rotate(90deg) scale(.9);}
.btn-closez::before,.btn-closez::after{content:"";position:absolute;left:11px;right:11px;top:18px;height:2px;background:var(--ink);transition:all .3s ease;}
.btn-closez::before{transform:rotate(45deg);}
.btn-closez::after{transform:rotate(-45deg);}

.offcanvas{position:fixed;inset:0 auto 0 0;z-index:1080;width:min(86vw,360px);transform:translateX(-105%);transition:transform .25s ease;background:#fff;box-shadow:0 30px 80px rgba(20,32,47,.22);visibility:hidden}
.offcanvas.show{transform:translateX(0);visibility:visible}
.offcanvas.mobile-menu.show{transform:translateX(0)!important;visibility:visible!important}
.offcanvas-header{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem;border-bottom:1px solid var(--border)}
.offcanvas-body{padding:1rem}
.modal{display:none}
.form-control,.form-select{display:block;width:100%}
.form-label{display:block;margin-bottom:.5rem;font-weight:800}
.input-group{display:flex}
.input-group>.form-control{flex:1 1 auto}
@media (min-width:768px){
    .col-md-4{width:33.333333%}
    .col-md-6{width:50%}
}
@media (min-width:992px){
    .col-lg-2{width:16.666667%}
    .col-lg-3{width:25%}
    .col-lg-4{width:33.333333%}
    .col-lg-5{width:41.666667%}
    .col-lg-6{width:50%}
    .col-lg-7{width:58.333333%}
}
@media (min-width:1200px){
    .col-xl-3{width:25%}
}

.page-loader{
    position:fixed;
    inset:0;
    z-index:2000;
    display:grid;
    place-items:center;
    background:var(--light);
    transition:opacity .35s ease,visibility .35s ease;
}
.page-loader span{
    width:46px;
    height:46px;
    border:4px solid var(--border);
    border-top-color:var(--primary);
    border-radius:50%;
    animation:spin .8s linear infinite;
}
body.loaded .page-loader{opacity:0;visibility:hidden}
@keyframes spin{to{transform:rotate(360deg)}}

.top-strip{
    background:linear-gradient(90deg,#101722,#202c3c);
    color:#fff;
    font-size:.9rem;
    padding:.5rem 0;
}
.top-strip i{color:var(--accent);margin-right:.35rem}
.top-links{display:flex;gap:1rem;flex-wrap:wrap}
.site-header{
    position:sticky;
    top:0;
    z-index:1040;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(231,222,210,.82);
    box-shadow:0 14px 42px rgba(20,32,47,.08);
}
.main-nav{padding:.72rem 0}
.navbar-brand img,.footer-logo{object-fit:contain}
.navbar-brand img{
    width:168px;
    height:auto;
    filter:drop-shadow(0 14px 24px rgba(20,32,47,.1));
}
.nav-link{
    position:relative;
    border-radius:999px;
    font-weight:800;
    color:var(--ink);
    padding:.55rem .85rem!important;
    transition:background .2s ease,color .2s ease,transform .2s ease;
}
.nav-link:hover{background:rgba(233,85,37,.09);transform:translateY(-1px)}
.nav-link.active,.nav-link:hover{color:var(--primary)}
.dropdown-menu{border:0;box-shadow:0 24px 70px rgba(20,32,47,.16);border-radius:18px;padding:.7rem;background:#fff}
.service-mega{min-width:320px}
.service-mega .dropdown-item{
    display:flex;
    gap:.8rem;
    align-items:center;
    border-radius:14px;
    padding:.8rem;
    white-space:normal;
}
.service-mega .dropdown-item i{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:14px;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
}
.service-mega .dropdown-item span{font-weight:900}
.service-mega .dropdown-item small{display:block;color:var(--muted);font-weight:700}
@media (min-width:992px){
    .desktop-hover:hover>.dropdown-menu{
        display:block;
        margin-top:0;
        animation:menuPop .18s ease both;
    }
    .desktop-hover:hover>.dropdown-toggle{color:var(--primary);background:rgba(233,85,37,.09)}
}
@keyframes menuPop{from{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.45rem;
    min-height:42px;
    padding:.58rem 1rem;
    border-radius:var(--radius);
    font-weight:800;
    line-height:1.1;
    text-align:center;
}
.btn-primary{
    background:linear-gradient(135deg,var(--primary),#ff7a35);
    border-color:var(--primary);
    color:#fff;
    box-shadow:0 14px 28px rgba(233,85,37,.24);
}
.btn-light{background:#fff;color:var(--ink);border:1px solid rgba(255,255,255,.76)}
.btn-icon{
    width:42px;
    height:42px;
    display:inline-grid;
    place-items:center;
    border:1px solid var(--border);
    background:var(--light);
    color:var(--ink);
}
.btn-icon .fa-magnifying-glass:empty::before{content:"⌕";font-family:Arial,sans-serif;font-size:1.25rem;font-weight:900}
.mobile-actions{display:none;align-items:center;gap:.5rem}
.navbar-toggler{
    width:42px;
    height:42px;
    display:inline-grid;
    place-items:center;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
}
.navbar-toggler-icon{
    position:relative;
    display:block;
    width:20px;
    height:14px;
    border-top:2px solid var(--ink);
    border-bottom:2px solid var(--ink);
}
.navbar-toggler-icon::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:4px;
    height:2px;
    background:var(--ink);
}
.mobile-menu{width:min(86vw,360px)}
.mobile-menu .navbar-nav{
    display:grid;
    align-items:stretch;
    gap:.35rem;
}
.mobile-menu .nav-link{
    display:flex;
    align-items:center;
    gap:.5rem;
    width:100%;
    border-radius:12px;
    padding:.8rem .9rem!important;
}
.mobile-menu .nav-link.active,
.mobile-menu .nav-link:hover{
    background:rgba(233,85,37,.1);
}

.hero-slider{
    position:relative;
    background:
        radial-gradient(circle at 16% 15%,rgba(247,183,51,.28),transparent 28%),
        radial-gradient(circle at 82% 10%,rgba(15,118,110,.32),transparent 27%),
        linear-gradient(135deg,#101722 0%,#1c2c3d 58%,#0f766e 100%);
}
.hero-slider .carousel{
    overflow:hidden;
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 34px 90px rgba(0,0,0,.3);
}
.hero-media{
    width:100%;
    height:clamp(360px,52vw,680px);
    object-fit:cover;
    background:#101722;
    display:block;
}
.hero-slider .carousel-control-prev,.hero-slider .carousel-control-next,
.testimonial-section .carousel-control-prev,.testimonial-section .carousel-control-next{
    width:38px;
    height:38px;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background:#eef1f5;
    opacity:0;
    visibility:hidden;
    transition:opacity .2s ease,visibility .2s ease,transform .2s ease;
}
.hero-slider .carousel:hover .carousel-control-prev,.hero-slider .carousel:hover .carousel-control-next,
.testimonial-section .carousel:hover .carousel-control-prev,.testimonial-section .carousel:hover .carousel-control-next{
    opacity:1;
    visibility:visible;
}
.hero-slider .carousel-control-prev{left:1rem}
.hero-slider .carousel-control-next{right:1rem}
.carousel-control-prev-icon,.carousel-control-next-icon{filter:invert(1)}

.section{padding:86px 0}
.muted-section{background:linear-gradient(180deg,#fff8ef 0%,#f6f3ee 100%)}
.app-feel-section{
    background:
        radial-gradient(circle at 8% 8%,rgba(247,183,51,.16),transparent 28%),
        linear-gradient(180deg,#fff 0%,#fff7ed 100%);
}
.section-kicker{
    display:inline-flex;
    color:var(--primary);
    font-size:.78rem;
    font-weight:900;
    letter-spacing:.08em;
    margin-bottom:.7rem;
    text-transform:uppercase;
}
h1,h2,h3{line-height:1.15;color:var(--ink);font-weight:900;letter-spacing:0}
h1{font-size:clamp(2.1rem,4vw,4rem)}
h2{font-size:clamp(1.8rem,3vw,3rem)}
h3{font-size:1.15rem}
p{color:var(--muted)}
.section-heading{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:1.5rem;
    margin-bottom:2rem;
}
.section-heading h2{max-width:760px;margin:0}

.glass-panel{
    padding:2rem;
    border:1px solid rgba(255,255,255,.72);
    border-radius:var(--radius);
    background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(255,248,237,.68));
    box-shadow:0 26px 70px rgba(20,32,47,.12);
    backdrop-filter:blur(18px);
}
.check-list{padding:0;margin:1rem 0 0;list-style:none}
.check-list li{position:relative;padding-left:1.8rem;margin:.8rem 0}
.check-list li:before{
    content:"\f00c";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:var(--secondary);
    position:absolute;
    left:0;
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
    margin-top:1.5rem;
}
.stats-grid div,.mini-card,.feature-card,.service-card,.blog-card,.team-card,.contact-info-card{
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--light);
    box-shadow:0 18px 45px rgba(20,32,47,.08);
}
.stats-grid div{padding:1rem;background:linear-gradient(180deg,#fff,#fff9f1)}
.stats-grid strong{display:block;font-size:2rem;color:var(--primary)}
.stats-grid span{color:var(--muted);font-size:.88rem}

.service-card,.blog-card,.feature-card,.team-card{
    position:relative;
    overflow:hidden;
    padding:1.25rem;
    transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
    border-radius:18px;
}
.service-card::before,.blog-card::before,.feature-card::before,.team-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:4px;
    background:linear-gradient(90deg,var(--primary),var(--accent),var(--secondary));
}
.service-card:hover,.blog-card:hover,.feature-card:hover,.team-card:hover{transform:translateY(-8px);border-color:rgba(233,85,37,.32);box-shadow:0 26px 70px rgba(20,32,47,.16)}
.service-thumb,.blog-thumb,.blog-detail-image{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:1rem;
    box-shadow:0 16px 34px rgba(20,32,47,.12);
}
.service-card>i,.feature-card>i{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(233,85,37,.14),rgba(15,118,110,.14));
    color:var(--primary);
    font-size:1.35rem;
    margin-bottom:1rem;
}
.service-card a,.read-more,.back-link{font-weight:800;color:var(--primary)}

.ad-type-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.2rem;
    perspective:1200px;
}
.ad-type-card{
    overflow:hidden;
    border:1px solid rgba(231,222,210,.95);
    border-radius:20px;
    background:#fff;
    box-shadow:0 22px 60px rgba(20,32,47,.12);
    transform-style:preserve-3d;
    transition:transform .25s ease,box-shadow .25s ease;
}
.ad-type-card:hover{transform:translateY(-10px);box-shadow:0 32px 90px rgba(20,32,47,.2)}
.ad-type-card img{width:100%;aspect-ratio:16/11;object-fit:cover;display:block}
.ad-type-body{padding:1.15rem}
.ad-type-body span{
    display:inline-flex;
    padding:.28rem .65rem;
    border-radius:999px;
    background:rgba(15,118,110,.1);
    color:var(--secondary);
    font-size:.78rem;
    font-weight:900;
    margin-bottom:.75rem;
}
.ad-type-body h3{margin-bottom:.35rem}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
}
.gallery-grid.compact{grid-template-columns:repeat(6,1fr)}
.gallery-grid.masonry{grid-template-columns:repeat(auto-fit,minmax(230px,1fr));align-items:start}
.gallery-item{
    border:0;
    padding:0;
    border-radius:var(--radius);
    overflow:hidden;
    background:var(--surface);
    box-shadow:0 18px 45px rgba(20,32,47,.1);
    cursor:pointer;
}
.gallery-item img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
    transition:transform .3s ease;
}
.masonry .gallery-item:nth-child(3n+1) img{aspect-ratio:3/4}
.gallery-item:hover img{transform:scale(1.04)}
.gallery-modal .modal-body{position:relative;padding:0;background:#06080c;text-align:center}
.gallery-modal-image{max-height:76vh;width:100%;object-fit:contain}
.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    z-index:2;
}
.gallery-nav.prev{left:1rem}
.gallery-nav.next{right:1rem}

.logos-strip{
    display:flex;
    gap:1rem;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:1.2rem;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:#fff;
    box-shadow:0 18px 45px rgba(20,32,47,.08);
}
.logos-strip span{color:var(--muted);font-weight:800}
.testimonial-card{
    display:grid;
    grid-template-columns:108px 1fr;
    gap:1.25rem;
    align-items:center;
    padding:1.5rem;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:0 24px 70px rgba(20,32,47,.13);
}
.testimonial-card img{
    width:108px;
    height:108px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 14px 34px rgba(24,33,47,.16);
}
.rating{color:#f4b000;margin-bottom:.5rem}
.testimonial-section blockquote{
    margin:0;
    font-size:1.25rem;
    font-weight:700;
}
.testimonial-section cite{display:block;margin-top:1rem;color:var(--ink);font-size:.95rem;font-weight:900}
.testimonial-section cite span{display:block;color:var(--muted);font-weight:700}
.testimonial-section .carousel-control-prev{left:-.7rem}
.testimonial-section .carousel-control-next{right:-.7rem}
.cta-band{background:linear-gradient(110deg,#e95525,#f7b733 52%,#0f766e);color:#fff}
.cta-band .container{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.cta-band h2,.cta-band p,.cta-band .section-kicker{color:#fff}
.contact-form,.map-frame{
    padding:1.5rem;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--light);
    box-shadow:0 22px 60px rgba(20,32,47,.1);
}
.form-control,.form-select{border-radius:var(--radius);min-height:48px}
.map-frame{padding:0;overflow:hidden}
.map-frame iframe{width:100%;height:420px;border:0;display:block}

.page-hero{
    padding:72px 0;
    color:#fff;
    background:linear-gradient(115deg,rgba(20,32,47,.88),rgba(233,85,37,.62)),url("../../data/gallery/train_banner.jpeg") center/cover;
}
.page-hero h1{color:#fff;margin:0}
.breadcrumb a,.breadcrumb-item.active{color:#fff}
.breadcrumb-item+.breadcrumb-item::before{color:rgba(255,255,255,.65)}
.image-stack{position:relative}
.image-stack img{border-radius:var(--radius);box-shadow:var(--shadow);width:100%;aspect-ratio:4/3;object-fit:cover}
.image-stack .glass-panel{position:absolute;left:1.2rem;right:1.2rem;bottom:1.2rem;padding:1rem}
.image-stack strong{display:block}
.timeline{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
}
.timeline div,.process-grid div{
    padding:1.2rem;
    border-left:4px solid var(--primary);
    background:var(--surface);
    border-radius:var(--radius);
}
.mini-card{
    min-height:96px;
    display:flex;
    align-items:center;
    gap:1rem;
    padding:1rem;
    font-weight:800;
}
.mini-card i{color:var(--secondary)}
.process-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.process-grid strong{font-size:2rem;color:var(--primary);display:block}
.accordion-item{border-color:var(--border);background:var(--light)}
.accordion-button{font-weight:800;background:var(--light);color:var(--ink)}

.blog-card span{display:block;color:var(--secondary);font-weight:800;font-size:.82rem;margin-bottom:.8rem}
.blog-detail .narrow{max-width:820px}
.article-body{font-size:1.1rem}
.pagination-wrap{display:flex;gap:.5rem;justify-content:center;margin-top:2rem}
.pagination-wrap a{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border:1px solid var(--border);
    border-radius:var(--radius);
    font-weight:800;
}
.pagination-wrap a.active{background:var(--primary);color:#fff}
.team-card{text-align:center}
.team-photo-wrap{
    position:relative;
    width:132px;
    height:132px;
    margin:0 auto 1rem;
    padding:6px;
    border-radius:34px;
    background:linear-gradient(135deg,var(--primary),var(--secondary),var(--accent));
    box-shadow:0 18px 45px rgba(13,110,253,.18);
}
.team-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    border:4px solid #fff;
    border-radius:28px;
}
.team-designation{
    display:block;
    min-height:46px;
    color:var(--muted);
    font-weight:700;
    margin:-.4rem 0 1rem;
}
.social-links{display:flex;gap:.65rem;align-items:center}
.social-links a{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(13,110,253,.1);
    color:var(--primary);
}
.brand-socials a{color:#fff;background:var(--primary)}
.brand-socials a.facebook{background:#1877f2}
.brand-socials a.instagram{background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4)}
.brand-socials a.linkedin{background:#0a66c2}
.brand-socials a.youtube{background:#ff0000}
.brand-socials a.email{background:#198754}
.brand-socials a:hover{color:#fff;transform:translateY(-3px)}
.contact-info-card{padding:1.5rem}
.contact-info-card p{display:flex;gap:.75rem;margin-bottom:1rem}
.contact-info-card i{color:var(--primary);padding-top:.25rem}
.empty-state{padding:2rem;border:1px dashed var(--border);border-radius:var(--radius);background:var(--surface);text-align:center}

.site-footer{background:#101722;color:#dce4ef;padding:70px 0 0}
.site-footer h2{color:#fff;font-size:1rem;margin-bottom:1rem}
.site-footer p,.site-footer li{color:#aeb9c8}
.site-footer ul{padding:0;margin:0;list-style:none}
.site-footer li{margin:.55rem 0}
.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
    margin-top:3rem;
    padding:1.2rem 0;
    border-top:1px solid rgba(255,255,255,.12);
}
.floating-left{
    position:fixed;
    left:1rem;
    bottom:1rem;
    z-index:1050;
    display:flex;
    flex-direction:column;
    gap:.6rem;
}
.floating-left a,.back-to-top{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border:0;
    border-radius:50%;
    color:#fff;
    background:var(--primary);
    box-shadow:var(--shadow);
}
.floating-left a:last-child{background:#25d366}
.floating-left .fa-phone:empty::before{content:"☎";font-family:Arial,sans-serif}
.floating-left .fa-whatsapp:empty::before{content:"WA";font-family:Arial,sans-serif;font-size:.72rem;font-weight:900}
.back-to-top{
    position:fixed;
    right:1rem;
    bottom:1rem;
    z-index:1050;
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
}
.back-to-top.show{opacity:1;visibility:visible}

@media (max-width:991.98px){
    .desktopNav{display:none}
    .mobile-actions{display:flex;margin-left:auto}
    .navbar-collapse{display:none!important}
    .section{padding:64px 0}
    .section-heading{display:block}
    .section-heading a{display:inline-flex;margin-top:1rem}
    .gallery-grid,.gallery-grid.compact{grid-template-columns:repeat(2,1fr)}
    .ad-type-grid{grid-template-columns:repeat(2,1fr)}
    .stats-grid,.timeline,.process-grid{grid-template-columns:1fr}
    .cta-band .container{display:block}
    .cta-band .btn{margin-top:1rem}
}

@media (max-width:575.98px){
    .top-strip .container{justify-content:center!important;text-align:center}
    .top-links{justify-content:center}
    .navbar-brand img{width:132px;height:auto}
    .hero-media{height:300px;object-fit:contain}
    .gallery-grid,.gallery-grid.compact{grid-template-columns:1fr}
    .ad-type-grid{grid-template-columns:1fr}
    .testimonial-card{grid-template-columns:1fr;text-align:center}
    .testimonial-card img{margin:0 auto}
    .glass-panel,.contact-form{padding:1.1rem}
}

/* Final polish layer: app-style menu, stable headings, richer sections. */
.carousel-control-prev-icon::before{font-size:1.5rem;font-weight:900}
.carousel-control-next-icon::before{font-size:1.5rem;font-weight:900}
.btn-icon svg,
.floating-left svg,
.back-to-top svg{
    width:20px;
    height:20px;
    display:block;
    fill:currentColor;
}
.btn-icon{
    align-self:center;
    padding:0;
    line-height:1;
    border-radius:12px;
}
.search-trigger svg{transform:translateY(0)}
.top-strip .container{min-height:28px}
.top-strip p,.top-strip a{display:inline-flex;align-items:center;gap:.35rem}
.main-nav .container{min-height:76px}
.service-mega{
    min-width:370px;
    padding:12px;
    border:1px solid rgba(231,222,210,.9);
}
.service-mega .dropdown-item:hover{
    background:#fff4ed;
    color:var(--primary);
}
.desktop-hover.is-open>.dropdown-menu{
    display:block;
    animation:menuPop .18s ease both;
}
.modal.show{
    position:fixed;
    inset:0;
    z-index:1090;
    display:flex!important;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(16,23,34,.56);
    overflow:auto;
}
.modal-dialog{
    width:min(100%,540px);
    margin:auto;
}
.modal-content{
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 30px 90px rgba(20,32,47,.26);
    overflow:hidden;
}
.modal-header,
.modal-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:18px;
}
.modal-body{padding:18px}
.modal-title{margin:0}
.modal-open{overflow:hidden}
.section-heading{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:end;
    gap:24px;
    text-align:left;
}
.heading-copy{
    max-width:760px;
}
.section-heading h2{
    max-width:none;
    text-align:left;
}
.section-heading>a{
    display:inline-flex;
    align-items:center;
    gap:.45rem;
    justify-self:end;
    min-width:max-content;
    padding:.7rem 1rem;
    border:1px solid var(--border);
    border-radius:999px;
    background:#fff;
    color:var(--ink);
    font-weight:900;
    box-shadow:0 14px 35px rgba(20,32,47,.07);
}
.about-intro{
    background:
        radial-gradient(circle at 82% 16%,rgba(15,118,110,.1),transparent 28%),
        linear-gradient(180deg,#fff 0%,#fffaf3 100%);
}
.about-intro h1{
    max-width:640px;
    font-size:clamp(2.05rem,2.25vw,2.45rem);
    line-height:1.08;
}
.about-intro p{max-width:640px}
.about-visual-board{
    position:relative;
    display:grid;
    grid-template-columns:1fr .42fr;
    gap:14px;
    min-height:520px;
    padding:14px;
    border:1px solid rgba(231,222,210,.9);
    border-radius:28px;
    background:#fff;
    box-shadow:0 30px 80px rgba(20,32,47,.14);
}
.about-main-image,
.about-side-images img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
}
.about-side-images{
    display:grid;
    gap:14px;
}
.capability-panel{
    position:absolute;
    left:34px;
    right:34px;
    bottom:34px;
    padding:1.35rem;
    background:rgba(255,255,255,.9);
}
.capability-panel h2{
    font-size:clamp(1.35rem,2.2vw,2.2rem);
}
.check-list li::before{
    content:"";
    width:9px;
    height:9px;
    top:.58rem;
    border-radius:50%;
    background:var(--secondary);
    box-shadow:0 0 0 5px rgba(15,118,110,.12);
}
.ad-type-card img,.service-thumb,.blog-thumb{
    background:#101722;
}
.ad-type-card:nth-child(1),.service-card:nth-child(1){--card-accent:#e95525}
.ad-type-card:nth-child(2),.service-card:nth-child(2){--card-accent:#0f766e}
.ad-type-card:nth-child(3),.service-card:nth-child(3){--card-accent:#f7b733}
.ad-type-card:nth-child(4),.service-card:nth-child(4){--card-accent:#3454d1}
.ad-type-card{
    border-top:4px solid var(--card-accent,var(--primary));
}
.service-card>i,.feature-card>i{
    color:#fff;
    background:linear-gradient(135deg,var(--card-accent,var(--primary)),var(--secondary));
}
.mobile-menu{
    max-width:400px;
    border-right:1px solid rgba(231,222,210,.9);
    overflow-y:auto;
}
.mobile-menu .offcanvas-header{
    padding:22px 18px;
    background:
        radial-gradient(circle at 15% 15%,rgba(247,183,51,.18),transparent 30%),
        #fff;
}
.mobile-menu .offcanvas-header img{
    width:156px;
    height:auto;
}
.mobile-menu .offcanvas-body{
    padding:16px;
}
.mobile-menu-panel{
    display:grid;
    gap:10px;
}
.mobile-menu-card{
    position:relative;
    display:grid;
    grid-template-columns:42px minmax(0,1fr);
    align-items:center;
    gap:10px;
    width:100%;
    min-height:68px;
    padding:12px 14px;
    border:1px solid transparent;
    border-radius:16px;
    background:#fff;
    color:var(--ink);
    text-align:left;
    box-shadow:0 12px 30px rgba(20,32,47,.06);
}
.mobile-menu-card:hover,
.mobile-menu-card.active{
    color:var(--primary);
    border-color:rgba(233,85,37,.18);
    background:linear-gradient(135deg,#fff2ec,#fff);
}
.mobile-menu-card span{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    border-radius:14px;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    font-size:.78rem;
    font-weight:900;
}
.mobile-menu-card strong,
.mobile-menu-card small{
    display:block;
}
.mobile-menu-card strong{font-size:1rem}
.mobile-menu-card small{
    grid-column:2;
    color:var(--muted);
    font-size:.76rem;
    font-weight:800;
}
.mobile-service-toggle{
    border:0;
    font:inherit;
    cursor:pointer;
}
.mobile-service-toggle b{
    position:absolute;
    right:14px;
    top:20px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#fff;
    box-shadow:inset 0 0 0 1px var(--border);
}
.mobile-service-toggle b::before{
    content:"+";
    display:grid;
    place-items:center;
    height:100%;
    color:var(--primary);
    font-weight:900;
}
.mobile-service-group.is-open .mobile-service-toggle b::before{content:"-"}
.mobile-service-submenu{
    display:none;
    gap:8px;
    margin:8px 0 4px 52px;
}
.mobile-service-group.is-open .mobile-service-submenu{
    display:grid;
}
.mobile-service-submenu a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#fffaf5;
}
.mobile-service-submenu i{
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    flex:0 0 auto;
    border-radius:12px;
    color:#fff;
    background:var(--secondary);
}
.mobile-service-submenu span,
.mobile-service-submenu small{display:block}
.mobile-service-submenu span{font-weight:900}
.mobile-service-submenu small{color:var(--muted);font-size:.75rem}
.mobile-menu-actions{
    display:grid;
    gap:10px;
    margin-top:16px;
}
.btn-whatsapp{
    background:#25d366;
    color:#fff;
    box-shadow:0 14px 28px rgba(37,211,102,.25);
}
.footer-cta{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:24px;
    margin-bottom:28px;
    padding:28px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:22px;
    background:
        radial-gradient(circle at 90% 10%,rgba(247,183,51,.26),transparent 32%),
        linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
}
.footer-cta h2{
    max-width:760px;
    margin:0;
    color:#fff;
}
.footer-cta p{
    max-width:720px;
    margin:.7rem 0 0;
    color:#b8c4d2;
}
.footer-metrics{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-bottom:36px;
}
.footer-metrics div{
    padding:18px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    background:rgba(255,255,255,.05);
}
.footer-metrics strong{
    display:block;
    color:var(--accent);
    font-size:1.6rem;
    line-height:1;
}
.footer-metrics span{
    display:block;
    margin-top:8px;
    color:#b8c4d2;
    font-weight:800;
}
.site-footer{
    background:
        radial-gradient(circle at 16% 4%,rgba(233,85,37,.22),transparent 26%),
        linear-gradient(180deg,#101722 0%,#0d141f 100%);
}
.site-footer a:hover{color:#fff}
.floating-left a,
.back-to-top{
    box-shadow:0 16px 34px rgba(20,32,47,.2);
}
.floating-left .whatsapp-float{background:#25d366}
@media (max-width:991.98px){
    .top-strip{display:none}
    .main-nav .container{min-height:68px}
    .site-header{top:0}
    .section-heading{
        grid-template-columns:1fr;
        gap:12px;
    }
    .section-heading>a{
        justify-self:start;
        min-width:0;
    }
    .about-visual-board{
        min-height:auto;
        grid-template-columns:1fr;
    }
    .about-main-image{
        aspect-ratio:16/10;
    }
    .about-side-images{
        grid-template-columns:1fr 1fr;
    }
    .about-side-images img{
        aspect-ratio:1.5/1;
    }
    .capability-panel{
        position:static;
        margin-top:0;
    }
    .footer-cta,
    .footer-metrics{
        grid-template-columns:1fr;
    }
}
@media (max-width:575.98px){
    .container{width:min(100% - 28px,1180px)}
    h2{font-size:clamp(1.55rem,7vw,2.2rem)}
    .section{padding:54px 0}
    .mobile-actions .btn{display:none}
    .navbar-brand img{width:126px}
    .section-heading>a{
        width:100%;
        justify-content:center;
    }
    .about-intro h1{font-size:2.15rem}
    .stats-grid{gap:.7rem}
    .about-visual-board{
        padding:10px;
        border-radius:20px;
    }
    .about-main-image,
    .about-side-images img{border-radius:14px}
    .about-side-images{grid-template-columns:1fr}
    .mobile-menu{
        width:min(88vw,390px);
    }
    .footer-cta{padding:20px}
    .footer-metrics div{padding:14px}
}
