
/* common */
body{
  overflow-x: hidden;
}
.card-body
{
  text-align: center;
}
img.imgright {
    max-width: 100%;
    border-radius: 10px;
}
.d-flex{
  display: flex;
}

a {
    text-decoration: none!important;
}
/* /common */


/* hero */

/* ==========================
   GR Hero Section - FINAL FIXED VERSION
   ========================== */
/* Mobile tweaks */
/* ================================
   BASE HERO LAYOUT
==================================*/

.gr-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;  /* full screen */
    overflow: hidden;
    display: flex;
    align-items: center;   /* center block */
    justify-content: center;
}

.gr-hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 !important;
}

/* Fullscreen slides */
.gr-hero-section .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gr-hero-section .hero-slide.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Overlay */
.gr-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Centered text block */
.gr-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Remove extra hero padding around inner elements */
.gr-hero-content > * {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

/* ================================
   RESPONSIVE TEXT & IMAGE
==================================*/

/* Main heading */
.gr-hero-content h1,
.gr-hero-content .hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem); /* scales with viewport */
    line-height: 1.1;
    font-weight: 700;
}

/* Sub heading / tagline */
.gr-hero-content h2,
.gr-hero-content .hero-subtitle {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    line-height: 1.3;
    font-weight: 500;
}

/* Paragraph text */
.gr-hero-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.7rem);
    line-height: 1.6;
}

/* Buttons in hero */
.gr-hero-content .btn {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    padding: clamp(0.5rem, 1vw, 0.7rem) clamp(1.1rem, 2vw, 1.6rem);
    border-radius: 999px;
}

/* Optional hero image inside content (if you use <img>) */
.gr-hero-content img,
.gr-hero-image {
    max-width: min(80%, 480px);
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

/* ================================
   ARROWS
==================================*/

.gr-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 50px;
    padding: 8px 14px;
    backdrop-filter: blur(4px);
}

.gr-hero-arrow.left { left: 15px; }
.gr-hero-arrow.right { right: 15px; }

/* ================================
   DOTS (Navigator)
==================================*/

.gr-hero-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
}

.gr-hero-dots {
    display: flex;
    gap: 8px;
}

/* Dot style */
.gr-hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.gr-hero-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ================================
   MOBILE / TABLET TWEAKS
==================================*/

@media (max-width: 991px) {
    .gr-hero-section {
        height: 100vh;
    }

    .gr-hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {

  .gr-hero-section .hero-slide {
    height: 60vh;
  }

      .gr-hero-section {
        height: 60vh;
    }
    /* Show arrows again on mobile & move them above dots */
    .gr-hero-arrow {
        display: flex !important;
        position: absolute;
        top: auto;
        bottom: 65px;   /* above dots */
        transform: none;
        padding: 6px 12px;
        font-size: 14px;
        align-items: center;
        justify-content: center;
    }

    /* Center them horizontally */
    .gr-hero-arrow.left {
        left: 50%;
        transform: translateX(-60px); /* adjust spacing */
    }

    .gr-hero-arrow.right {
        right: 50%;
        transform: translateX(60px); /* adjust spacing */
    }

    /* Move dots slightly lower */
    .gr-hero-nav {
        bottom: 15px;
    }

    /* Slightly smaller texts on small phones (clamp already helps, this just tightens spacing) */
    .gr-hero-content h1,
    .gr-hero-content .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .gr-hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .gr-hero-content {
        padding: 0 18px;
    }

    .gr-hero-content img,
    .gr-hero-image {
        max-width: 85%;
    }
}

/* /hero */


/* section2 */
/* -------------------------------
   MODERN CARD DESIGN (Structure Only)
   No layout shift, NO BG change
-------------------------------- */

/* Card container (the colored box) */
.bg-theme-colored-darker2 {
  border-radius: 14px;                /* smooth card corners */
  padding: 0;                         /* keep original spacing */
  overflow: hidden;                   /* clean edges */
  transition: all 0.25s ease-in-out;  /* smooth hover */
  box-shadow: 0 8px 22px rgba(0,0,0,0.16); /* soft elevation */
  position: relative;
}


/* /section2 */

/* section3 */
/* ================================
   Modern About Section — PM Styles
   Pure CSS, responsive, accessible
   ================================ */

:root{
  --pm-max-width: 1180px;

  /* colors */
  --pm-bg: #fff;
  --pm-text: #0f1724;           /* heading/text */
  --pm-muted: #586175;          /* paragraph */
  --pm-accent: #ff6b6b;         /* accent color */
  --pm-accent-2: #ffb86b;       /* secondary accent */

  /* card */
  --pm-card-radius: 14px;
  --pm-card-shadow: 0 10px 30px rgba(15,23,36,0.08);
  --pm-card-hover-shadow: 0 18px 40px rgba(15,23,36,0.12);

  /* spacing */
  --pm-gap: 24px;
  --pm-gap-xs: 14px;
}

/* container helper */
.pm-container{
  max-width: var(--pm-max-width);
  margin: 0 auto;
  padding: 72px 20px;
  box-sizing: border-box;
}

/* Intro */
.pm-intro{
  text-align: center;
  margin-bottom: 28px;
}
.pm-title{
  font-size: 28px;
  line-height: 1.08;
  margin: 0 0 10px;
  color: var(--pm-text);
  font-weight: 700;
  letter-spacing: 0.6px;
}
.pm-accent{
  color: var(--pm-accent);
  display: inline-block;
  background: linear-gradient(90deg, rgba(255,107,107,0.12), rgba(255,184,107,0.08));
  padding: 2px 8px;
  border-radius: 6px;
}
.pm-lead{
  color: var(--pm-muted);
  max-width: 980px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 6px;
}

/* Cards grid */
.pm-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pm-gap);
  align-items: start;
}

/* Card */
.pm-card{
  display: flex;
  flex-direction: column;
  background: transparent; /* keep your existing bg color if applied by original class */
  border-radius: var(--pm-card-radius);
  overflow: visible;
  position: relative;
}

/* media area (image) */
.pm-card-media{
  display:block;
  width:100%;
  margin:0;
  overflow:hidden;
  border-radius: 12px;
  box-shadow: var(--pm-card-shadow);
}
.pm-img{
  display:block;
  width:100%;
  height: 200px;
  object-fit: cover;
  transform-origin: center center;
  transition: transform .45s cubic-bezier(.2,.9,.3,1);
  display:block;
}

/* card body */
.pm-card-body{
  padding: 18px;
  border-radius: 0 0 var(--pm-card-radius) var(--pm-card-radius);
  background: rgba(255,255,255,0.02); /* subtle; doesn't override your intended bg if you had one */
  margin-top: -10px; /* slight overlap look between image and body (optional) */
  backdrop-filter: blur(0px);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* titles and text */
.pm-card-title {
    font-size: 18px;
    margin: 17px 0 9px;
    color: var(--pm-text);
    font-weight: 700;
    letter-spacing: 0.3px;
}
.pm-card-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Hover / focus effects (desktop) */
.pm-card:hover .pm-img,
.pm-card:focus-within .pm-img{
  transform: scale(1.06);
}
.pm-card:hover .pm-card-body,
.pm-card:focus-within .pm-card-body{
  transform: translateY(-6px);
  box-shadow: var(--pm-card-hover-shadow);
}

/* subtle accent bar (decorate without changing colors) */
.pm-card::before{
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 6px;
  height: 56px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--pm-accent), var(--pm-accent-2));
  opacity: 0.95;
  transform-origin: center;
}

/* responsive adjustments */
@media (max-width: 1000px){
  .pm-container{ padding: 28px 16px; }
  .pm-cards{ grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pm-img{ height: 180px; }
}
@media (max-width: 640px){
  .pm-cards{ grid-template-columns: 1fr; gap: var(--pm-gap-xs); }
  .pm-img{ height: 220px; }
  .pm-card-body{ padding: 14px; margin-top: -6px; }
  .pm-title{ font-size: 22px; }
  .pm-lead{ font-size: 14px; }
  .pm-card::before{ right: 12px; top: 12px; height: 46px; width: 5px; }
}

/* Accessibility: focus styles */
.pm-card:focus-within,
.pm-card a:focus{
  outline: 3px solid rgba(255,107,107,0.12);
  outline-offset: 6px;
}
/* Default card = hover style */
.pm-card .pm-img {
  transform: scale(1.06);   /* zoom always active */
}

.pm-card .pm-card-body {
  transform: translateY(-6px);
  box-shadow: var(--pm-card-hover-shadow); /* permanent hover shadow */
}

/* Optional: keep hover smooth but not required */
.pm-card:hover .pm-img,
.pm-card:focus-within .pm-img {
  transform: scale(1.06); /* no extra change */
}

.pm-card:hover .pm-card-body,
.pm-card:focus-within .pm-card-body {
  transform: translateY(-6px);
  box-shadow: var(--pm-card-hover-shadow);
}

/* /section3 */

/* service section 4 */
/* =========================
   Modern Services Gallery
   (Works with your existing HTML)
   ========================= */

:root{
  --svc-accent: #ff6b6b;
  --svc-accent-2:#ffb86b;
  --svc-card-radius:14px;
  --svc-shadow: 0 10px 30px rgba(12,18,30,0.08);
  --svc-hover-shadow: 0 18px 44px rgba(12,18,30,0.14);
  --svc-gap:20px;
  --svc-text:#0f1724;
  --svc-muted:#5b6470;
}

/* container reset for carousel fallback */
.owl-carousel-4col {
  display: flex;
  gap: var(--svc-gap);
  overflow-x: auto;
  padding: 12px 6px 18px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* Each card */
.owl-carousel-4col .gallery-item {
  scroll-snap-align: center;
  flex: 0 0 300px;                /* width of each card on small screens */
  max-width: 320px;
  border-radius: var(--svc-card-radius);
  overflow: visible;
  background: transparent;
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}

/* Desktop grid fallback (if carousel js active it will override) */
@media (min-width: 992px) {
  .owl-carousel-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--svc-gap) * 1.1);
    overflow: visible;
    padding: 0;
  }
  .owl-carousel-4col .gallery-item { flex: none; max-width: none; }
}

/* Thumbnail area */
.thumb {
  position: relative;
  border-radius: var(--svc-card-radius);
  overflow: hidden;
  box-shadow: var(--svc-shadow);
}

/* image cover */
.thumb .img-fullwidth {
  display:block;
  width:100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.9,.3,1);
  transform-origin: center center;
}

/* overlay gradient for readability */
.thumb .overlay-shade {
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.48) 100%);
  opacity: 1;
  transition: opacity .28s ease;
}

/* icon holder */
.icons-holder {
  position:absolute;
  inset: 12px auto auto 12px; /* top-left visual */
  z-index: 4;
  pointer-events: none;
}
.icons-holder-inner { pointer-events: auto; }

/* circular icon using existing markup */
.styled-icons.icon-theme-colored a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background: #ffffffdd;
  color: var(--svc-accent);
  font-size:16px;
  box-shadow: 0 6px 18px rgba(3,10,18,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

/* icons hover */
.styled-icons.icon-theme-colored a:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(135deg, var(--svc-accent), var(--svc-accent-2));
  color: #fff;
  box-shadow: var(--svc-hover-shadow);
}

/* service details */
.our-services-details {
  padding: 12px 14px 18px;
  background: white;
  border-radius: 0 0 calc(var(--svc-card-radius) - 4px) calc(var(--svc-card-radius) - 4px);
  margin-top: -6px; /* slight overlap for card look */
  box-shadow: 0 6px 22px rgba(3,10,18,0.03);
}

/* title and text */
.our-services-details .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--svc-text);
  margin: 8px 0 6px;
  line-height: 1.15;
}
.our-services-details p {
  color: var(--svc-muted);
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 1.5;
}

/* CTA button (replaces .btn-theme-colored look but keeps class) */
.our-services-details .btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--svc-accent), var(--svc-accent-2));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(255,107,107,0.12);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
  border: none;
}

/* subtle hover for CTA */
.our-services-details .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,107,107,0.18);
}

/* whole card hover lift (desktop) */
.owl-carousel-4col .gallery-item:hover .thumb,
.owl-carousel-4col .gallery-item:focus-within .thumb {
  transform: translateY(-6px);
  box-shadow: var(--svc-hover-shadow);
}
.owl-carousel-4col .gallery-item:hover .img-fullwidth,
.owl-carousel-4col .gallery-item:focus-within .img-fullwidth {
  transform: scale(1.06);
}
.owl-carousel-4col .gallery-item:hover .overlay-shade {
  opacity: 0.85;
}

/* small screens: adjust sizes */
@media (max-width: 640px) {
  .owl-carousel-4col .gallery-item { flex: 0 0 86%; max-width: 86%; }
  .thumb .img-fullwidth { height: 180px; }
  .our-services-details { padding: 12px; }
  .icons-holder { inset: 10px auto auto 10px; }
  .styled-icons.icon-theme-colored a { width:40px;height:40px;font-size:15px; }
}

/* accessibility focus */
.owl-carousel-4col .gallery-item a:focus,
.owl-carousel-4col .gallery-item .btn:focus {
  outline: 3px solid rgba(255,107,107,0.14);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Defensive: avoid horizontal overflow from large paddings */
.container, .owl-carousel-4col, .gallery-item { box-sizing: border-box; }

.our-services-gallery .gallery-item .icons-holder .icons-holder-inner {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: -18px 0 0 -50%;
    display: none;
}
/* /service */


/* our fecilities section */
/* Facilities accordion + image (6 / 6) */
/* Paste after your main CSS so it overrides where needed */

/* ---------- variables (easy to tweak) ---------- */
:root{
  --pm-acc-bg: rgba(255,255,255,0.04); /* subtle inner background for accordion bodies on colored column */
  --pm-acc-border: rgba(255,255,255,0.09);
  --pm-acc-accent: #ff6b6b; /* summary accent (chevron) */
  --pm-acc-radius: 10px;
  --pm-acc-gap: 10px;
  --pm-acc-summary-color: #ffffff; /* white on colored left column */
  --pm-image-min-height: 360px;
}

/* ---------- layout helpers ---------- */
#features-facilities .row.equal-height { align-items: stretch; }

/* keep your left column color and text as-is, only style inner accordion */
#features-facilities .col-md-6.bg-theme-colored {
  padding: 0; /* inner block handles padding */
}

/* ensure the right column image covers nicely */
.pm-facility-image {
  width: 100%;
  min-height: var(--pm-image-min-height);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  padding:0;
}

/* pick background from data-bg-img attribute using inline style fallback in JS-less approach
   we use CSS here: if server renders style attribute for data-bg-img, it will work.
   If not, optionally set background via inline style or keep .bg-img-cover class working */
#features-facilities .pm-facility-image[data-bg-img] {
  background-image: url('');
}
/* If your template engine outputs `style="background-image: url(...)"` on the element (common), no further action needed.
   If not, you can add this small script to set the background from data-bg-img (optional). */

/* ---------- ACCORDION (pure CSS using <details>) ---------- */
.pm-accordion {
  margin-top: 14px;
  margin-bottom: 16px;
  display: block;
}

/* style details summary blocks */
.pm-accordion details {
  background: transparent;
  border: 1px solid transparent;
  margin-bottom: var(--pm-acc-gap);
  border-radius: var(--pm-acc-radius);
  overflow: hidden;
}

/* Summary - the clickable row */
.pm-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--pm-acc-summary-color);
  font-weight: 600;
  letter-spacing: 0.4px;
  background: transparent;
  border-bottom: 0;
  outline: none;
}

/* remove default triangle in some browsers */
.pm-accordion summary::-webkit-details-marker { display: none; }

/* custom chevron (right side) */
.pm-accordion summary::after {
  content: "\25BE"; /* downwards small triangle */
  font-size: 14px;
  transform: rotate(0deg);
  transition: transform .25s ease, color .25s ease;
  color: var(--pm-acc-accent);
}

/* open state rotates chevron */
.pm-accordion details[open] > summary::after {
  transform: rotate(180deg);
}

/* body content */
.pm-acc-body {
  padding: 12px 14px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  line-height: 1.6;
  background: var(--pm-acc-bg);
  border-top: 1px solid var(--pm-acc-border);
}

/* small visual separator — subtle */
.pm-accordion details:not(:last-child) { box-shadow: inset 0 -1px 0 rgba(255,255,255,0.02); }

/* focus-visible for keyboard nav */
.pm-accordion summary:focus-visible {
  outline: 3px solid rgba(255,107,107,0.12);
  outline-offset: 3px;
  border-radius: 6px;
}

/* keep link-style items inside content */
.pm-acc-body a { color: #fff; text-decoration: underline; }

/* ---------- responsive adjustments ---------- */
@media (max-width: 991px) {

  /* Remove negative margins on mobile if any (defensive) */
  #features-facilities .col-md-6 { min-height: auto !important; margin-top: 0 !important; }

  /* stack: Facilities above image on mobile */
  #features-facilities .row.equal-height { flex-direction: column; }
  #features-facilities .col-md-6 { width: 100%; max-width: 100%; }

  .pm-facility-image { min-height: 260px; }
  .pm-accordion summary { padding: 12px; font-size: 15px; }
  .pm-acc-body { padding: 10px 12px; font-size: 14px; }
}

/* ---------- small helper: ensure container paddings are sane ---------- */
#features-facilities .p-50 { padding: 30px; }
#features-facilities .p-50 .title { margin-bottom: 12px; }

/* Premium Glow Accordion Effect */
.pm-accordion details {
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .35s ease;
  overflow: hidden;
}

/* glow on open */
.pm-accordion details[open] {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 20px rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* summary */
.pm-accordion summary {
  padding: 14px 16px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: transparent;
  transition: 0.3s ease;
}

/* chevron */
.pm-accordion summary::after {
  content: "\f078";
  font-family: "FontAwesome";
  font-size: 14px;
  color: #ffef9e;
  transition: transform .35s ease;
}

.pm-accordion details[open] summary::after {
  transform: rotate(180deg);
}

/* Hover brightness */
.pm-accordion summary:hover {
  color: #ffe2a7;
}

/* Body */
.pm-acc-body {
  padding: 14px 16px;
  color: rgba(255,255,255,0.9);
  animation: pmSlide .45s ease;
}

/* slide animation */
@keyframes pmSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- optional: script to set background from data-bg-img (if your server not injecting style) ----------
   You can include this tiny script if needed (optional). If your template already renders style/background, skip it.
<script>
  document.addEventListener('DOMContentLoaded', function(){
    document.querySelectorAll('.pm-facility-image[data-bg-img]').forEach(function(el){
      var url = el.getAttribute('data-bg-img');
      if(url) el.style.backgroundImage = 'url('+url+')';
    });
  });
</script>
--------------------------------------------------------------------- */

/* /our fecilities section */


/* our servies section */

/* ---------------------------
  Modern visuals ONLY — no layout changes
  (Do NOT change sizes, widths, flex or grid)
----------------------------*/

/* Variables for easy tuning */
:root{
  --pm-card-radius: 14px;
  --pm-card-shadow: 0 10px 28px rgba(2,6,23,0.30);
  --pm-card-hover-shadow: 0 18px 46px rgba(2,6,23,0.42);
  --pm-accent-1: #ff6b6b;
  --pm-accent-2: #ffb86b;
  --pm-white-95: rgba(255,255,255,0.95);
  --pm-white-85: rgba(255,255,255,0.85);
  --pm-muted: rgba(255,255,255,0.8);
}

/* Card appearance — preserve layout (no changes to display or sizing) */
.pricing.table-horizontal {
  border-radius: var(--pm-card-radius);
  overflow: hidden; /* clean rounded corners */
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  box-shadow: var(--pm-card-shadow);
  transition: box-shadow .28s ease, transform .28s ease;
  will-change: transform;
}

/* Keep internal structure exactly the same; only add visual polish */
.pricing.table-horizontal .thumb {
  border-top-left-radius: var(--pm-card-radius);
  border-bottom-left-radius: var(--pm-card-radius);
  overflow: hidden;
  position: relative;
  background: #111; /* fallback while image loads */
}

/* Ensure image covers box visually (does not change image element size) */
.pricing .thumb .img-fullwidth {
  display:block;
  width:100%;
  height:100%;
  object-fit: cover; /* improves crop without altering layout */
  transition: transform .6s cubic-bezier(.2,.9,.3,1);
}

/* Subtle zoom on hover (visual only) */
.pricing.table-horizontal:hover .thumb .img-fullwidth,
.pricing.table-horizontal:focus-within .thumb .img-fullwidth {
  transform: scale(1.06);
}

/* Decorative diagonal sheen (visual overlay) */
.pricing .thumb::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  transform: skewX(-12deg);
  opacity: .9;
}

/* Details panel polish (no size changes) */
.pricing .p-30 {
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.04));
  padding: 28px !important; /* maintain original spacing but ensure visual consistency */
  border-top-right-radius: calc(var(--pm-card-radius) - 4px);
  border-bottom-right-radius: calc(var(--pm-card-radius) - 4px);
  transition: transform .28s ease, box-shadow .28s ease;
}

/* Title & text treatment (visual only) */
.pricing h3 {
  color: var(--pm-white-95);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.pricing p {
  color: var(--pm-muted);
  margin-bottom: 12px;
  line-height: 1.45;
}

/* CTA Buttons — visual only (keeps their inline-block sizing) */
.pricing .btn {
  border-radius: 999px;
  padding: 8px 12px;
  font-weight:700;
  letter-spacing: .4px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

/* Primary CTA (Call Now) */
.pricing .btn-theme-colored {
  background: linear-gradient(90deg, var(--pm-accent-1), var(--pm-accent-2));
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(255,107,107,0.12);
}
.pricing .btn-theme-colored:hover,
.pricing .btn-theme-colored:focus {
  transform: translateY(-3px);
  box-shadow: var(--pm-card-hover-shadow);
}

/* Secondary CTA (Free Quote) */
.pricing .btn-dark {
  background: rgba(255,255,255,0.06);
  color: var(--pm-white-95);
  border: 1px solid rgba(255,255,255,0.06);
}
.pricing .btn-dark:hover,
.pricing .btn-dark:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

/* subtle hover lift for the whole card (visual only) */
.pricing.table-horizontal:hover {
  box-shadow: var(--pm-card-hover-shadow);
  transform: translateY(-8px);
}

/* Make inline "Read More" link pop (visual only) */
.pricing p a.text-white-f1 {
  color: var(--pm-white-85);
  font-weight: 700;
  text-decoration: underline;
}
.pricing p a.text-white-f1:hover { color: #fff; }

/* Accessibility focus outline */
.pricing.table-horizontal:focus-within {
  outline: 3px solid rgba(255,107,107,0.10);
  outline-offset: 6px;
  border-radius: var(--pm-card-radius);
}

/* Defensive: keep everything box-sizing */
#pricing, #pricing * { box-sizing: border-box; }

/* End of visual-only CSS */
.pricing.table-horizontal, .pricing {
    background: var(--secondary-gradient) !important;
    min-height: auto!important;
}

.mypt-4 {
    padding-top: 2rem!important;
}
/*/ our servies section */



/* gallery */
/* .work-gallery:hover .gallery-thumb .gallery-overlay {

    display: none;
}

.work-gallery:hover .gallery-thumb .gallery-contect {

    display: none;
} */

/* ---------- Modern Gallery Styles ---------- */
/* Place after your main CSS */

:root{
  --g-gap: 18px;
  --g-radius: 12px;
  --g-shadow: 0 10px 30px rgba(3,10,18,0.18);
  --g-accent: linear-gradient(90deg,#ff6b6b,#ffb86b);
}

/* grid container (fallback if isotope not active) */
#grid.gallery-isotope {
  display: flex;
  flex-wrap: wrap;
  gap: var(--g-gap);
  margin-left: -6px; margin-right: -6px; /* offset inner padding */
}

/* each item */
#grid .gallery-item {
  width: calc(33.333% - var(--g-gap));
  box-sizing: border-box;
  padding: 6px;
  scroll-margin-top: 120px;
}

/* responsive */
@media (max-width: 992px){
  #grid .gallery-item { width: calc(50% - var(--g-gap)); }
}
@media (max-width: 640px){
  #grid .gallery-item { width: calc(100% - var(--g-gap)); }
}

/* work gallery card */
.work-gallery {
  border-radius: var(--g-radius);
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: var(--g-shadow);
  transition: transform .32s cubic-bezier(.2,.9,.3,1), box-shadow .32s ease;
}


.service-block .thumb .price, .service-block .thumb .desc, .team-block .team-thumb .team-overlay, .team-block .team-thumb .styled-icons, .work-gallery .gallery-thumb .gallery-overlay {
    background: transparent!important;
}
/* thumbnail */
.gallery-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  background: #111;
}

/* image */
.gallery-thumb .img-fullwidth {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.9,.3,1);
}

/* overlay that darkens image */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45) 100%);
  transition: opacity .28s ease;
  pointer-events: none;
}

/* center icons container (hidden until hover) */
.gallery-contect {
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events: none;
}

/* icon list style */
.styled-icons.icon-bordered.icon-circled.icon-sm {
  display:flex;
  gap:12px;
  transform: translateY(6px);
  opacity: 0;
  transition: all .28s ease;
  list-style:none;
  margin:0;
  padding:0;
}

/* icon button */
.styled-icons.icon-bordered.icon-circled.icon-sm li a {
  /* display:inline-flex; */

display: none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background: rgba(255,255,255,0.92);
  color:#222;
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration:none;
  pointer-events:auto; /* allow clicks */
  transition: transform .22s ease, background .22s ease, color .22s ease;
  box-shadow: 0 6px 18px rgba(2,6,23,0.12);
}

/* hover states */
.work-gallery:hover,
.work-gallery:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(2,6,23,0.28);
}

.work-gallery:hover .img-fullwidth,
.work-gallery:focus-within .img-fullwidth {
  transform: scale(1.06);
}

.work-gallery:hover .gallery-overlay,
.work-gallery:focus-within .gallery-overlay {
  opacity: 1;
}

.work-gallery:hover .styled-icons.icon-bordered.icon-circled.icon-sm,
.work-gallery:focus-within .styled-icons.icon-bordered.icon-circled.icon-sm {
  opacity: 1;
  transform: translateY(0);
}

/* small polishing */
.gallery-thumb .gallery-contect .fa { font-size: 14px; }
/* /gallery */



/* contact */
/* =========================
   Modern Contact Section CSS
   (No HTML changes, no layout shifts)
   ========================= */

:root{
  --pm-contact-accent-1: #ff6b6b;
  --pm-contact-accent-2: #ffb86b;
  --pm-contact-bg: #ffffff;
  --pm-contact-muted: #6b7280;
  --pm-card-radius: 12px;
  --pm-card-shadow: 0 12px 30px rgba(2,6,23,0.12);
  --pm-focus: 0 0 0 4px rgba(255,107,107,0.12);
}

/* Section padding/spacing (respects your classes) */
#contact .container {
  padding-top: 28px;
  padding-bottom: 28px;
}

/* Heading style (modern) */
#contact h3.line-bottom {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 18px;
  position: relative;
  color: #0b1220;
}

/* subtle bottom line */
#contact h3.line-bottom::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 64px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pm-contact-accent-1), var(--pm-contact-accent-2));
  opacity: .95;
}

/* Map column container: add card look to iframe */

#contact .col-md-5 iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: calc(var(--pm-card-radius) + 6px);
  box-shadow: var(--pm-card-shadow);
  transition: transform .28s ease, box-shadow .28s ease;
  display:block;
}

/* subtle hover (visual only) */
#contact .col-md-5 iframe:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(2,6,23,0.16);
}

/* Form column wrapper */
#contact .col-md-7 {
  display: block;
}

/* Form inner card look (keeps original spacing) */
#contact form#contact_form {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 18px;
  border-radius: calc(var(--pm-card-radius) + 2px);
  box-shadow: 0 8px 26px rgba(2,6,23,0.06);
}

/* Inputs & textarea modern look */
#contact .form-control {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(15,23,36,0.08);
  border-radius: 8px;
  color: #0b1220;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Placeholder color */
#contact .form-control::placeholder {
  color: #9aa3ad;
  opacity: 1;
}

/* Input focus */
#contact .form-control:focus {
  border-color: var(--pm-contact-accent-1);
  box-shadow: var(--pm-focus);
  transform: translateY(-1px);
}

/* Textarea specific */
#contact textarea.form-control {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Form-group spacing */
#contact .form-group { margin-bottom: 14px; }

/* Submit button modern */
#contact .button_submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--pm-contact-accent-1),var(--pm-contact-accent-2));
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(255,107,107,0.12);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

/* Button hover/focus */
#contact .button_submit:hover,
#contact .button_submit:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(255,107,107,0.16);
  outline: none;
}

/* make small screens stack nicely (keeps your col classes) */
@media (max-width: 991px) {
  #contact .col-md-5, #contact .col-md-7 {
    width: 100%;
    max-width: 100%;
  }
  #contact .col-md-5 { margin-bottom: 18px; }
  #contact .container { padding-left: 14px; padding-right: 14px; }
  #contact .col-md-7 .p-sm-40 { padding: 0; }
  #contact iframe { height: 260px; }
}

/* Accessibility: focus-visible */
#contact .form-control:focus-visible,
#contact .button_submit:focus-visible {
  outline: 3px solid rgba(255,107,107,0.12);
  outline-offset: 4px;
  border-radius: 8px;
}

/* small helper: reduce visual noise on very small devices */
@media (max-width:480px) {
  #contact h3.line-bottom { font-size: 18px; }
  #contact .button_submit { width: 100%; justify-content: center; padding: 12px; }
}

/* keep box-sizing defensive */
#contact, #contact * { box-sizing: border-box; }

/* /contact */


/* services page */

/* ================================
   Modern Sidebar (visual-only)
   Applies to: .sidebar .widget, .services-list, included form
   No layout/width changes — visual polishing only
   ================================ */

:root{
  --pm-sb-bg: #ffffff;
  --pm-sb-card-radius: 12px;
  --pm-sb-shadow: 0 10px 30px rgba(2,6,23,0.06);
  --pm-sb-accent: linear-gradient(90deg,#ff6b6b,#ffb86b);
  --pm-sb-text: #0f1724;
  --pm-sb-muted: #596170;
  --pm-sb-gap: 14px;
}

/* Sidebar wrapper visual reset */
.sidebar {
  box-sizing: border-box;
  padding: 0;
}

/* Each widget becomes a subtle card */
.sidebar .widget {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--pm-sb-card-radius);
  box-shadow: var(--pm-sb-shadow);
  padding: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

/* small lift on hover/focus (visual only) */
.sidebar .widget:hover,
.sidebar .widget:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(2,6,23,0.08);
}

/* Widget title (line-bottom look) */
.widget-title {
  font-size: 16px!important;
  font-weight: 700;
  color: var(--pm-sb-text);
  margin: 0 0 12px;
  position: relative;
  padding-bottom: 8px;
}

/* subtle accent bar under title */
.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: var(--pm-sb-accent);
  opacity: 0.95;
}

/* SERVICES LIST */
.services-list .list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-list .list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(15,23,36,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* keep active highlighted */
.services-list .list li.active {
  background: var(--secondary-gradient) !important;
  border-radius: 8px;
}

/* link style */
.services-list .list li a {
  color: var(--pm-sb-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  transition: color .18s ease, transform .18s ease;
}

/* arrow indicator using pseudo element (angle-double-right look) */
.services-list .list li a::after {
  content: "\00BB"; /* » as subtle indicator */
  float: right;
  color: var(--pm-sb-muted);
  font-size: 13px;
  transform: translateX(6px);
  transition: transform .18s ease, color .18s ease;
}

/* hover states */
.services-list .list li:hover a,
.services-list .list li a:focus {
  color: #ff6b6b;
  transform: translateX(2px);
}
.services-list .list li:hover a::after,
.services-list .list li a:focus::after {
  transform: translateX(0);
  color: #ffb86b;
}

/* quick-contact form (included partial) — modern inputs */
.sidebar .quick-contact-form,
.sidebar form {
  margin: 0;
}

/* input controls */
.sidebar .form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,36,0.08);
  background: #fff;
  font-size: 14px;
  color: var(--pm-sb-text);
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
  outline: none;
}

/* textarea */
.sidebar textarea.form-control {
  min-height: 86px;
  resize: vertical;
  line-height: 1.6;
}

/* input focus */
.sidebar .form-control:focus {
  border-color: #ff6b6b;
  box-shadow: 0 6px 20px rgba(255,107,107,0.06);
  transform: translateY(-1px);
}

/* submit button */
.sidebar .btn-quick-contact,
.sidebar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  /* border-radius: 999px; */
  border: none;
  /* background: linear-gradient(90deg,#ff6b6b,#ffb86b); */
  color: #fff!important;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .18s ease;
}
.btn, .call-btn, .stats-section, .faq-bg{
    background: linear-gradient(90deg,#ff6b6b,#ffb86b) !important;
}

/* Left Arrow for Each Service Item */
.services-list .list li {
  padding: 10px 0 10px 26px;  /* space for arrow */
  position: relative;
  border-bottom: 1px dashed rgba(15,23,36,0.04);
}

/* Arrow icon (FontAwesome or text fallback) */
.services-list .list li::before {
  content: "\f105"; /* FA icon: angle-right */
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(15,23,36,0.35);
  transition: all 0.25s ease;
}

/* Hover effect – arrow glows + shifts forward */
.services-list .list li:hover::before {
  color: #ff6b6b;
  transform: translateY(-50%) translateX(4px);
}

/* Active item arrow highlighted */
.services-list .list li.active::before {
  color: #ff6b6b;
  font-weight: bold;
}

/* Link hover */
.services-list .list li:hover a {
  color: #ff6b6b;
  transform: translateX(2px);
}

/* Active link color */
.services-list .list li.active a {
  color: #ff6b6b;
}


/* small hover */
.sidebar .btn-quick-contact:hover,
.sidebar .btn-quick-contact:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,107,107,0.12);
}

/* compact spacing in widget footer */
.widget .form-group { margin-bottom: 12px; }

/* small devices: reduce left margin (your .ml-40) effect without changing layout */
@media (max-width: 991px) {
  .sidebar.ml-40 { margin-left: 0 !important; padding-left: 0; }
  .sidebar { margin-top: 18px; }
  .services-list .list li { padding: 10px 0; }
}

/* Accessibility */
.services-list .list li a:focus,
.sidebar .btn-quick-contact:focus,
.sidebar .form-control:focus {
  outline: 3px solid rgba(255,107,107,0.12);
  outline-offset: 4px;
  border-radius: 8px;
}

/* small decorative icon if you want angle-double-right visible on left (visual only) */
.services-list .list li::before {
  content: "\f101"; /* FontAwesome codepoint for angle-double-right may vary, fallback will show nothing */
  font-family: FontAwesome;
  margin-right: 8px;
  color: rgba(15,23,36,0.06);
  font-size: 12px;
}

/* Ensure all elements use border-box */
.sidebar, .sidebar * { box-sizing: border-box; }

.widget ul.list li, .widget .post {
 border: none!important;
}
/*/ services page */

/* footer */

.layer-overlay.overlay-dark-9::before {
    background-color: rgb(13 27 76)!important;
}

/* =========================
   Modern Footer + Contact Action
   Pure CSS (visual only — no layout changes)
   Paste after your main stylesheet
   ========================= */

/* ---------- Variables (easy to tweak) ---------- */
:root{
  --pm-footer-bg: rgba(3,6,18,0.92);
  --pm-footer-card: rgba(255,255,255,0.02);
  --pm-accent-1: #ff6b6b;
  --pm-accent-2: #ffb86b;
  --pm-white-95: rgba(255,255,255,0.95);
  --pm-muted-80: rgba(255,255,255,0.80);
  --pm-muted-60: rgba(255,255,255,0.60);
  --pm-radius: 12px;
  --pm-shadow: 0 12px 34px rgba(2,6,23,0.45);
  --pm-footer-gap: 22px;
  --pm-footer-bottom-bg: #07101a;
  --pm-scroll-size: 48px;
}

/* ---------- Footer wrapper visuals ---------- */
.footer.divider.layer-overlay {
  background: var(--pm-footer-bg);
  color: var(--pm-white-95);            /* keep text readable */
  padding-top: 40px;
  padding-bottom: 0;
  position: relative;
}

/* Ensure containers use box-sizing */
.footer, .footer * { box-sizing: border-box; }

/* Row niceness */
.footer .row.border-bottom {
  gap: var(--pm-footer-gap);
}

/* Widgets become subtle cards (visual only) */
.footer .widget {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: calc(var(--pm-radius) - 4px);
  padding: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.25);
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Widget hover lift (desktop) */
@media (hover: hover) {
  .footer .widget:hover {
    transform: translateY(-6px);
    box-shadow: var(--pm-shadow);
  }
}

/* Footer logo & intro */
.footer .widget.dark img {
  max-width: 180px;
  height: auto;
  display:block;
  margin-bottom: 12px;
  filter: invert(2);

}

/* paragraph in widget */
.footer .widget.dark p {
  color: var(--pm-muted-80);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* links in footer */
.footer a {
  color: var(--pm-white-95);
  text-decoration: none;
  transition: color .18s ease, transform .12s ease;
}
.footer a:hover { color: var(--pm-accent-1); transform: translateX(3px); }

/* ---------- Useful Links & Services list ---------- */
.footer .list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.03);
  display: block;
}
.footer .list li a {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: var(--pm-muted-80);
}
.footer .list li a:hover { color: var(--pm-white-95); }

/* Opening hours list */
.opening-hours .list-border li {
  display: block;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--pm-muted-80);
  font-size: 14px;
}

/* Contact inline list */
.footer .list-inline li {
  display: inline-block;
  margin-right: 10px;
  color: var(--pm-muted-80);
  font-size: 14px;
}

/* Contact details (address etc) */
.footer .text-gray a { color: var(--pm-muted-80); font-weight: 700; }
.footer .text-gray a:hover { color: var(--pm-white-95); }

/* ---------- Social icons (Connect With Us) ---------- */
.styled-icons.icon-bordered.icon-sm li a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:8px;
  background: rgba(255,255,255,0.03);
  color: var(--pm-white-95);
  border: 1px solid rgba(255,255,255,0.04);
  margin-right: 8px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.styled-icons.icon-bordered.icon-sm li a:hover {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(90deg, var(--pm-accent-1), var(--pm-accent-2));
  color: #fff;
}

/* ---------- Footer bottom bar ---------- */
.footer-bottom.bg-black-333 {
  background: var(--pm-footer-bottom-bg);
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-bottom p { color: rgba(255,255,255,0.60); font-size: 12px; margin:0; }
.footer-bottom a { color: rgba(255,255,255,0.85); font-weight:700; }

/* Right-side inline list in footer bottom */
.footer-bottom .list-inline li { display: inline-block; margin-left: 8px; color: rgba(255,255,255,0.6); }

/* ---------- Scroll to top button ---------- */
.scrollToTop {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: var(--pm-scroll-size);
  height: var(--pm-scroll-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--pm-accent-1), var(--pm-accent-2));
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(2,6,23,0.28);
  z-index: 99999;
  transition: transform .18s ease, opacity .18s ease;
  text-decoration: none;
  font-size: 18px;
}
.scrollToTop:hover { transform: translateY(-6px); }

/* small device adjust for scrollToTop */
@media (max-width: 480px) {
  .scrollToTop { right: 12px; bottom: 12px; width: 44px; height: 44px; font-size: 16px; }
}

/* ---------- Floating Contact Action (phone & whatsapp) ---------- */
.contact-action {
  position: fixed;
  right: 18px;
  bottom: 16;
  z-index: 99998;
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* ensure ul has no default styles */
.contact-action ul { list-style:none; margin:0; padding:0; }

/* individual buttons */
.contact-action li {
  margin:6px;
  display:block;
  margin:0;
}
.contact-action li a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:50%;
  color:#fff;
  text-decoration:none;
  box-shadow: 0 12px 28px rgba(2,6,23,0.28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  font-size:18px;
}

/* phone button */
.contact-action li.call a {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.contact-action li.call a:hover { transform: translateY(-6px); filter:brightness(1.03); }

/* whatsapp button */
.contact-action li.whatsapp a {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.contact-action li.whatsapp a:hover { transform: translateY(-6px); filter:brightness(1.03); }

/* small screens adjust so action doesn't overlap fixed footer */
@media (max-width: 640px) {
  .contact-action { right: 12px; bottom: 90px; }
}

/* Accessibility focus states */
.contact-action li a:focus, .scrollToTop:focus, .footer a:focus {
  outline: 3px solid rgba(255,107,107,0.12);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ---------- Minor helpers ---------- */
.footer .widget .value { color: var(--pm-muted-80); font-weight:700; }
.widget .mb-20 { margin-bottom: 20px; }

/* Defensive: ensure overlay images and scripts can't create horizontal scroll */

/* End of footer visuals */

/* /footer */

/* contact */
 /* =========================
   Modern Contact Section UI
   Gradient Theme Applied
   ========================= */

:root{
  --pm-accent-grad: linear-gradient(135deg, #ff512f 0%, #dd2476 50%, #ff512f 100%);
  --pm-accent-1: #ff512f;
  --pm-accent-2: #dd2476;

  --pm-surface: #ffffff;
  --pm-muted: #6b7280;
  --pm-ink: #1f2937;

  --pm-shadow-1: 0 6px 18px rgba(221,36,118,0.18);
  --pm-shadow-2: 0 10px 30px rgba(221,36,118,0.25);

  --pm-radius: 14px;
  --pm-transition: 220ms cubic-bezier(.25,.95,.25,1);
}

/* ======================
   LEFT ICON INFORMATION
   ====================== */

#contact .icon-box.left.media {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 22px;
  border-radius: var(--pm-radius);
  box-shadow: var(--pm-shadow-1);
  transition: var(--pm-transition);
  border: 1px solid rgba(0,0,0,0.05);
}

#contact .icon-box.left.media:hover {
  transform: translateY(-6px);
  box-shadow: var(--pm-shadow-2);
}

/* ICON */
#contact .icon-box .media-left {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 16px;
  background: var(--pm-accent-grad);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(255,81,47,0.35);
}

/* TEXT */
#contact .icon-box .media-body strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--pm-ink);
  letter-spacing: .4px;
  margin-bottom: 4px;
  display: block;
}

#contact .icon-box .media-body p,
#contact .icon-box .media-body a {
  margin: 0;
  color: var(--pm-muted);
  font-size: 14px;
  transition: var(--pm-transition);
}

#contact .icon-box .media-body a:hover {
  color: var(--pm-accent-1);
}

/* ======================
   FORM DESIGN
   ====================== */

#contact_form .form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--pm-radius);
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-size: 15px;
  color: var(--pm-ink);
  transition: var(--pm-transition);
}

#contact_form .form-control:focus {
  border-color: var(--pm-accent-1);
  box-shadow: 0 8px 22px rgba(255,81,47,0.15);
  transform: translateY(-2px);
}

/* TEXTAREA */
#contact_form textarea.form-control {
  min-height: 140px;
}

/* ======================
   SUBMIT BUTTON
   ====================== */

#contact_form .button_submit {
  background: var(--pm-accent-grad);
  padding: 14px 24px;
  border: none;
  border-radius: var(--pm-radius);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(255,81,47,0.35);
  transition: var(--pm-transition);
  cursor: pointer;
}

#contact_form .button_submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(255,81,47,0.45);
}

#contact_form .button_submit:active {
  transform: translateY(0);
}

/* ======================
   MOBILE FRIENDLY
   ====================== */

@media (max-width: 767px) {

.service-card .card-title {
    font-size: 1.5rem;
}

.card-text {
    font-size: 1.2rem;
}
.service-card .card-img-top {
    height: 297px;
    object-fit: cover;
    object-position: bottom;
}

  #contact .icon-box.left.media {
    padding: 18px;
    gap: 14px;
  }
  #contact .icon-box .media-left {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  #contact_form .button_submit {
    width: 100%;
  }
}

/*/contact */


/* latest */
.dropdown
{
   visibility: visible;
}
/* =============================================
   GR Audio Visual - Custom Stylesheet
   Bootstrap 5.3 Theme
============================================= */
/* Slider helper - minimal & non-invasive; preserves visual styles */

/* Slider helper - minimal & non-invasive; preserves visual styles */
.hero-slider, .testimonial-slider {
  position: relative;
  overflow: hidden;
}

.enquire-btn{
   display: none!important;
}



/* Slide visibility */
.hero-slide, .testi-slide {
  display: none;
  width: 100%;
  box-sizing: border-box;
}
.hero-slide.active, .testi-slide.active {
  display: block;
}

/* Controls positioning - unobtrusive and matches your existing btn styles */
.hero-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 4;
  pointer-events: none;
}
.hero-nav .btn { pointer-events: auto; }

/* Place arrows at left/right inside the hero, but visually subtle */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: auto;
  opacity: 0.95;
}
.hero-arrow.left { left: 18px; }
.hero-arrow.right { right: 18px; }

/* Dots (hero & testimonial) */
.slider-dots {
  display: inline-flex;
  gap: 8px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.slider-dots button.active {
  background: var(--brand-red);
}

/* Testimonials controls */
.testimonial-controls {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:20px;
}
.testimonial-arrow.left { margin-right:6px; }
.testimonial-arrow.right { margin-left:6px; }

/* keep testimonial card spacing exactly like your original */
.testimonial-slider .row { margin: 0; }
.testimonial-slider .col-md-6 { padding: .75rem; box-sizing: border-box; }

/* Small touch target improvements */
.slider-btn {
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  padding:0;
}

/* Make sure hero overlay remains above slides as before */
.hero-section .hero-overlay { position:absolute; inset:0; z-index:1; }

/* Respect responsive behavior already present in your CSS */
@media (max-width: 767px) {
  .hero-arrow { display: none; } /* optional: hide hero side arrows on small screens if you prefer */
}


.hero-slider, .testimonial-slider {
  position: relative;
  overflow: hidden;
}

/* Keep slide content exactly as-is; we only toggle visibility */
.hero-slide, .testi-slide {
  display: none;
  width: 100%;
  box-sizing: border-box;
}

/* show active */
.hero-slide.active, .testi-slide.active {
  display: block;
}

/* keep original hero overlay stacking and look */
.hero-slider .hero-overlay, .hero-section .hero-overlay {
  position: absolute;
  inset: 0;
}

/* ensure testimonial cards maintain spacing */
.testimonial-slider .row { margin: 0; }
.testimonial-slider .col-md-6 { padding: .75rem; box-sizing: border-box; }

/* small accessibility focus style for control buttons if you enable them later */
.slider-control {
  background: transparent;
  border: 0;
  cursor: pointer;
}


/* ===== CSS Variables ===== */
:root {
    --brand-navy: #0d1b4c;
    --brand-red: #dc3545;
    --brand-gold: #ffc107;
    --brand-light: #f8f9fa;
    --text-muted: #6c757d;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--brand-navy);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--brand-gold);
}

/* ===== Navbar ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    margin-bottom:0;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-navy) !important;
    line-height: 1.2;
}

.brand-logo small {
    font-weight: 400;
    font-size: 0.9rem;
}

.navbar .nav-link {
    color: var(--brand-navy) !important;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--brand-red) !important;
}

.navbar .btn-danger {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
}

.navbar .btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('soundsystem/images/bg/bg3.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 27, 76, 0.7), rgba(13, 27, 76, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--brand-red);
    color: white;
    padding: 8px 24px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-outline-light:hover {
    color: var(--brand-navy);
}

/* ===== Section Titles ===== */
.section-title {
    color: var(--brand-navy);
    font-weight: 700;
    position: relative;
}

.section-title span {
    color: var(--brand-red);
}

/* ===== Service Cards ===== */
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}


.card {
    padding-bottom: inherit!important;
}



.service-card .card-title {
    color: var(--brand-red);
    font-weight: 700;
}

.call-now-btn {
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.call-now-btn:hover {
    color: var(--brand-navy);
    text-decoration: underline;
}

.text-navy {
    color: var(--brand-navy) !important;
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    background-color: var(--brand-navy);
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 36px;
    color: var(--brand-navy);
}

/* ===== Stats Section ===== */
.stats-section {
    background-color: var(--brand-red);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 32px;
    color: white;
    opacity: 0.75;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}


/* Mobile layout: icon above text */
@media (max-width: 575.98px) {
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    background: linear-gradient(135deg, #091338, #152254);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('soundsystem/images/works/12.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
    outline: none;
}

.contact-form .btn-primary {
    background-color: var(--brand-navy);
    border-color: var(--brand-navy);
}

.contact-form .btn-primary:hover {
    background-color: #152254;
    border-color: #152254;
}

/* ===== Gallery Section ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Testimonials Section ===== */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.stat-icon {
    font-size: 51px;
    color: white;
    opacity: 0.75;
    margin: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
}

.stars {
    color: var(--brand-gold);
}

.quote-icon {
    font-size: 40px;
    color: var(--brand-red);
    opacity: 0.25;
}

/* ===== Footer Section ===== */
.footer-section {
    background-color: var(--brand-navy);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-info i {
    flex-shrink: 0;
    margin-top: 3px;
}

.social-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.social-btn:hover {
    background-color: var(--brand-red) !important;
    border-color: var(--brand-red) !important;
}

.scroll-top {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
/* service section  */
        .service-area {
            background-color: #3f3f3f;
            color: #fff;
            padding: 40px 20px;
            border-radius: 8px;
        }
        .service-area h2 {
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
        }
        .service-list li {
            list-style: none;
            margin-bottom: 10px;
            font-size: 15px;
        }
        .service-list i {
            color: #4cd964;
            margin-right: 8px;
            font-size: 16px;
        }
        .contact-bar {
            text-align: center;
            margin-bottom: 20px;
            font-size: 15px;
        }
        .contact-bar span {
            background: #5b4ea2;
            color: #fff;
            padding: 8px 14px;
            border-radius: 6px;
            margin: 0 5px;
            display: inline-block;
        }
                .faq-section {
            background: #f5f5f5;
            padding: 50px 30px;
            border-radius: 8px;
        }
        .faq-title span {
            color: #c82333 !important;
            font-weight: 600;
        }
        .accordion-button {
            font-weight: 500;
            color: #c82333 !important;
        }
        .accordion-button::after {
            background-size: 1rem;
        }
        .accordion-item {
            border-radius: 6px;
            margin-bottom: 10px;
            border: none;
        }
        .accordion-button:not(.collapsed) {
            background: #ffffff;
            color: #c82333 !important;
            box-shadow: none;
        }
        .faq-image {
            /* background: #c82333 !important; */
            background: linear-gradient(90deg,#ff6b6b,#ffb86b) !important;
            color: #fff;
            height: 100%;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 700;
        }
        .faq-image small {
            display: block;
            font-size: 14px;
            font-weight: 400;
        }


/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .contact-section::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 14px;
        padding: 6px 16px;
    }

    .top-bar {
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 50vh;
    }

    .hero-section h1 br {
        display: none;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ===== Utility Classes ===== */
.bg-brand-navy {
    background-color: var(--brand-navy) !important;
}

.bg-brand-red {
    background-color: var(--brand-red) !important;
}

.text-brand-navy {
    color: var(--brand-navy) !important;
}

.text-brand-red {
    color: var(--brand-red) !important;
}

.text-brand-gold {
    color: var(--brand-gold) !important;
}


/* /latest */


/* call button */

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0px 15px;
    font-size: 1.0rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(145deg, #d62828, #b81f1f);
    color: #fff;
    border: none;
    letter-spacing: .5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all .25s
ease;
}
.call-btn i {
    font-size: 1.2rem;
    padding: 6px;
    border-radius: 50%;
    transition: all .25s ease;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    background: linear-gradient(145deg, #b81f1f, #a81818);
}



.call-btn:active {
    transform: scale(.96);
}

/* /call button */
