:root{
  /* Requested palette */
  --blue: #0b5ed7;
  --sky: #4da3ff;
  --silver: #c7cdd6;
  --gray: #6b7280;
  --light-gray: #f4f6f9;
  --pencil-gray: #374151;
  --shady-silver: #aeb7c4;

  --ink: #0f172a;
  --card: #ffffff;

  --radius-xl: 22px;
  --radius-lg: 16px;

  --shadow-soft: 0 12px 40px rgba(2, 8, 23, 0.10);
  --shadow-mid: 0 14px 50px rgba(2, 8, 23, 0.14);
}

*{ scroll-behavior:smooth; }

html, body{
  width: 100%;
  overflow-x: hidden !important;
}


body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, rgba(11,94,215,0.10), rgba(77,163,255,0.10));
  border-bottom: 1px solid rgba(55,65,81,0.10);
  font-size: 0.92rem;
}
.topbar-item{
  display:flex; align-items:center; gap:.55rem;
  color: var(--pencil-gray);
}
.topbar-item i{ color: var(--blue); }
.topbar a{ color: var(--pencil-gray); text-decoration:none; }
.topbar a:hover{ color: var(--blue); }

.btn-soft{
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: 999px;
}

/* Header */
.header{
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(55,65,81,0.10);
}
.navbar{
  padding: .8rem 0;
}
.brand-logo{
  width: 100%; height: 50px; object-fit: contain;
}
.brand-mark{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(11,94,215,0.14), rgba(77,163,255,0.18));
  border: 1px solid rgba(55,65,81,0.10);
  color: var(--blue);
}
.brand-mark.sm{ width: 38px; height: 38px; border-radius: 14px; }
.brand-name{ font-weight: 800; letter-spacing: 0.2px; }
.brand-tag{ font-size: .78rem; color: var(--gray); margin-top: -2px; }

.nav-link{
  font-weight: 600;
  color: var(--pencil-gray) !important;
  border-radius: 999px;
  padding: .5rem .9rem !important;
}
.nav-link:hover{
  background: rgba(11,94,215,0.08);
  color: var(--blue) !important;
}
.nav-link.active{
  background: rgba(11,94,215,0.12);
  color: var(--blue) !important;
}

.btn-cta{
  border-radius: 999px;
  padding: .6rem 1rem;
}

/* Hero */
.hero .carousel-item{
  position: relative;
}
.hero-slide{
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(11,94,215,0.75), rgba(15,23,42,0.58));
}
.min-vh-70{ min-height: 70vh; }

.badge-soft{
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  color:#fff;
  padding: .55rem .8rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-title{
  color:#fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 800;
}
.hero-subtitle{
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 44rem;
}

.hero-highlights{
  display:flex;
  flex-direction: column;
  gap:.6rem;
}
.highlight{
  display:flex; align-items:center; gap:.6rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.highlight i{ color: rgba(255,255,255,0.95); }

.glass{
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-mid);
  padding: 1.25rem;
}
.hero-card h5{ font-weight: 800; }
.chip{
  display:inline-flex; align-items:center;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(11,94,215,0.08);
  border: 1px solid rgba(11,94,215,0.12);
  font-size: .82rem;
  color: var(--pencil-gray);
}

/* Sections */
.section{
  padding: 80px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(244,246,249,0.75), rgba(255,255,255,1));
}
.section-badge{
  display:inline-flex;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(77,163,255,0.15);
  border: 1px solid rgba(77,163,255,0.25);
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: .9rem;
}
.section-title{
  font-weight: 800;
  letter-spacing: 0.2px;
}
.section-lead{
  color: var(--gray);
  max-width: 60ch;
}

/* About */
.info-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 992px){
  .info-grid{ grid-template-columns: 1fr; }
}
.info-card{
  display:flex; gap: .85rem;
  padding: 14px 14px;
  background: var(--card);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(2, 8, 23, 0.06);
}
.info-card i{
  color: var(--blue);
  font-size: 1.25rem;
  margin-top: .2rem;
}
.info-card h6{ margin: 0 0 3px 0; font-weight: 800; }
.info-card p{ margin: 0; color: var(--gray); font-size: .94rem; }

.about-panel{
  background: var(--card);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.about-panel-top{ padding: 10px 10px 0; }
.panel-badge{
  display:inline-flex; align-items:center;
  background: rgba(11,94,215,0.10);
  border: 1px solid rgba(11,94,215,0.14);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.timeline-list{ margin-top: 14px; }
.timeline-item{
  display:flex; gap: 12px;
  padding: 12px 10px;
  border-radius: 14px;
}
.timeline-item:hover{
  background: rgba(244,246,249,0.9);
}
.t-dot{
  width: 10px; height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 6px rgba(77,163,255,0.18);
}
.timeline-item h6{ margin: 0; font-weight: 800; }
.timeline-item p{ margin: 0; color: var(--gray); }

/* About Image Right Side */
.about-image-wrap{
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(55,65,81,0.12);
  box-shadow: var(--shadow-soft);
  background: rgba(244,246,249,0.65);
  min-height: 360px;
}

.about-image{
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.about-image-wrap:hover .about-image{
  transform: scale(1.06);
}

/* Soft overlay tint to match your theme */
.about-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(11,94,215,0.18), rgba(15,23,42,0.08));
  pointer-events:none;
}

/* Badge overlay */
.about-image-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(55,65,81,0.12);
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.10);
}

/* Mini info card overlay */
.about-image-mini{
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(55,65,81,0.12);
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.12);
  backdrop-filter: blur(10px);
}

.about-image-mini .mini-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(11,94,215,0.12);
  border: 1px solid rgba(11,94,215,0.14);
  color: var(--blue);
  font-size: 1.2rem;
}

.about-image-mini .mini-title{
  font-weight: 900;
  color: var(--pencil-gray);
  margin-bottom: 2px;
}

.about-image-mini .mini-text{
  color: var(--gray);
  font-weight: 600;
  font-size: .95rem;
}

/* Mobile adjustments */
@media (max-width: 991px){
  .about-image-wrap,
  .about-image{
    min-height: 280px;
  }
  .about-image-mini{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .about-image-badge{
    top: 12px;
    left: 12px;
  }
}


/* Services */
.service-card{
  background: var(--card);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 12px 35px rgba(2, 8, 23, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow:hidden;
}
.service-card::before{
  content:"";
  position:absolute;
  inset: -60px -60px auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(77,163,255,0.20), rgba(77,163,255,0));
  transform: rotate(18deg);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.14);
}
.service-icon{
  width: 52px; height: 52px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(11,94,215,0.14), rgba(77,163,255,0.18));
  border: 1px solid rgba(55,65,81,0.10);
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.checklist{
  list-style:none;
  padding-left: 0;
  margin: 0;
  display:grid;
  gap: .45rem;
}
.checklist li{
  position: relative;
  padding-left: 1.45rem;
  color: var(--pencil-gray);
  font-size: .95rem;
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--blue);
  font-weight: 800;
}

.cta-strip{
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}


/* ================================
   Service Icon 360° Rotation Effect
================================ */

/* Prepare icon for rotation */
.service-icon i{
  display: inline-block;
  transition: transform 0.7s ease-in-out;
  transform-origin: center;
}

/* Rotate icon when hovering the card */
.service-card:hover .service-icon i{
  transform: rotate(360deg);
}

/* Optional: slight scale + glow for premium feel */
.service-card:hover .service-icon{
  background: linear-gradient(
    135deg,
    rgba(11,94,215,0.22),
    rgba(77,163,255,0.30)
  );
  box-shadow: 0 0 0 6px rgba(77,163,255,0.15);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}



/* Why */
.why-panel{
  background: var(--card);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.why-list{ display:grid; gap: 12px; }
.why-item{
  display:flex; gap: 12px;
  background: rgba(244,246,249,0.85);
  border: 1px solid rgba(55,65,81,0.10);
  border-radius: var(--radius-lg);
  padding: 14px;
}
.why-icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(11,94,215,0.12);
  border: 1px solid rgba(11,94,215,0.12);
  color: var(--blue);
  font-size: 1.2rem;
}
.why-item h6{ margin: 0 0 4px 0; font-weight: 800; }
.why-item p{ margin: 0; color: var(--gray); font-size: .94rem; }

.mini-card{
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(55,65,81,0.12);
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.07);
  color: var(--pencil-gray);
  font-weight: 600;
  display:flex; align-items:center; gap: 8px;
}
.mini-card i{ color: var(--blue); }

.bg-soft{ background: rgba(244,246,249,0.85) !important; }
.big-icon{
  width: 46px; height: 46px; border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(77,163,255,0.16);
  border: 1px solid rgba(77,163,255,0.20);
  color: var(--blue);
}

/* Stats */
.stat-card{
  background: var(--card);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  text-align:center;
}
.stat-icon{
  width: 54px; height: 54px;
  margin: 0 auto 10px;
  border-radius: 20px;
  display:grid; place-items:center;
  background: rgba(11,94,215,0.12);
  border: 1px solid rgba(11,94,215,0.14);
  color: var(--blue);
  font-size: 1.35rem;
}
.stat-number{
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: .3px;
}
.stat-suffix{ font-size: 1.1rem; margin-left: 4px; color: var(--blue); }
.stat-label{ color: var(--gray); font-weight: 600; }

/* Gallery */
.gallery-item{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(55,65,81,0.12);
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.08);
  transition: transform .25s ease;
}
.gallery-item:hover{ transform: translateY(-4px); }
.gallery-item img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.05); }
@media (max-width: 575px){
  .gallery-item img{ height: 140px; }
}

/* Contact */
.contact-card{
  background: var(--card);
  border: 1px solid rgba(55,65,81,0.12);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.contact-item{
  display:flex; gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(244,246,249,0.85);
  border: 1px solid rgba(55,65,81,0.10);
  margin-bottom: 10px;
}
.contact-ico{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(11,94,215,0.12);
  border: 1px solid rgba(11,94,215,0.14);
  color: var(--blue);
  font-size: 1.2rem;
}
.contact-card a{ color: var(--blue); text-decoration:none; }
.contact-card a:hover{ text-decoration: underline; }

.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(55,65,81,0.18);
  padding: .7rem .85rem;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(11,94,215,0.50);
  box-shadow: 0 0 0 .25rem rgba(11,94,215,0.14);
}

.map-card{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid rgba(55,65,81,0.12);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.map-card iframe{
  width: 100%;
  height: 360px;
  border: 0;
}

/* Footer */
.footer{
  background: linear-gradient(180deg, rgba(15,23,42,0.95), rgba(15,23,42,0.98));
  color: rgba(255,255,255,0.86);
  padding: 70px 0 10px;
}
.footer-title{
  color:#fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-text{ color: rgba(255,255,255,0.75); }
.footer-links, .footer-contact{
  list-style:none;
  padding-left: 0;
  margin: 0;
  display:grid;
  gap: .55rem;
}
.footer-links a, .footer-contact a{
  color: rgba(255,255,255,0.78);
  text-decoration:none;
}
.footer-links a:hover, .footer-contact a:hover{ color: #fff; }
.footer-contact li{
  display:flex; gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,0.78);
}
.footer-contact i{ color: rgba(77,163,255,0.95); margin-top: 2px; }
.footer-hr{
  border-color: rgba(255,255,255,0.12);
}
.link-muted{ color: rgba(255,255,255,0.78); text-decoration:none; }
.link-muted:hover{ color:#fff; }

.social{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  text-decoration:none;
}
.social:hover{
  background: rgba(77,163,255,0.18);
  border-color: rgba(77,163,255,0.30);
}

/* Footer Logo Styling */
.footer-logo{
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Center logo nicely on mobile */
@media (max-width: 576px){
  .footer-logo{
    max-width: 150px;
    margin: 0 auto;
    display: block;
  }
}

.footer-logo{
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-logo:hover{
  transform: scale(1.05);
  opacity: 0.95;
}


/* Floating buttons */
.floating-actions{
  position: fixed;
  right: 12px;
  bottom: 12px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;

  /* ✅ keep them inside viewport always */
  max-width: calc(100vw - 24px);
}

/* ✅ crucial: contain pseudo element */
.fab{
  position: relative; /* IMPORTANT */
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration:none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.20);

  /* ✅ prevents width overflow issues */
  max-width: 100%;
  white-space: nowrap;
  overflow: visible;

  animation: floaty 3.5s ease-in-out infinite;
}

.fab i{ font-size: 1.2rem; }
.fab-label{ font-weight: 700; letter-spacing: .2px; }

.fab-call{
  background: linear-gradient(135deg, rgba(11,94,215,0.95), rgba(77,163,255,0.92));
}
.fab-whatsapp{
  background: linear-gradient(135deg, rgba(37,211,102,0.95), rgba(11,94,215,0.75));
  animation-delay: .35s;
}

/* ✅ Glow ring - safe inset */
.fab::after{
  content:"";
  position:absolute;
  inset: -5px;              /* smaller inset = less overflow risk */
  border-radius: 999px;
  border: 2px solid rgba(77,163,255,0.30);
  filter: blur(1px);
  opacity: .9;
  animation: pulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
.fab-whatsapp::after{
  border-color: rgba(37,211,102,0.35);
}

/* ✅ Mobile: make them ICON ONLY so no width can overflow */
@media (max-width: 576px){
  .floating-actions{
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .fab{
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }

  .fab::after{
    inset: -4px;
    border-radius: 50%;
  }
}

@keyframes pulse{
  0%,100%{ transform: scale(1); opacity: .75; }
  50%{ transform: scale(1.06); opacity: 1; }
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}


/* Back to top */
.back-to-top{
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(55,65,81,0.14);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 36px rgba(2, 8, 23, 0.18);
  display:none;
  z-index: 999;
}
.back-to-top i{ color: var(--blue); font-size: 1.2rem; }

/* Buttons */
.btn-primary{
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn-primary:hover{
  background-color: #0a53be;
  border-color: #0a53be;
}
.btn-outline-primary{
  border-color: rgba(11,94,215,0.35);
  color: var(--blue);
}
.btn-outline-primary:hover{
  background: rgba(11,94,215,0.10);
  border-color: rgba(11,94,215,0.45);
  color: var(--blue);
}
#callme {
        position: fixed;
        right: 10px;
        top: 190px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
/* Mobile tweaks */
@media (max-width: 991px){
  .section{ padding: 64px 0; }
  .hero-subtitle{ font-size: 1rem; }
  .navbar .btn-cta{ width: 100%; }
}
@media(max-width:767px)
{
	.cu-jf-cnt{
		justify-content:Center!important
	}
	.cu-mb-ds-nn{
		display:none!important
	}
}