:root{
  /* ===== NAVY BLUE + YELLOW THEME ===== */

  --blue:#0b1f3b;        /* Navy Blue (primary) */
  --sky:#1e3a8a;         /* Deep Royal Blue */
  --green:#facc15;       /* Yellow accent */

  --ink:#0b1f3b;         /* Text navy */
  --muted:#64748b;       /* Cool gray */
  --card:#ffffff;
  --soft:#fffbea;        /* Very soft yellow tint */

  --shadow: 0 18px 45px rgba(11,31,59,0.18);
  --shadow2: 0 16px 35px rgba(11,31,59,0.12);
  --radius: 18px;
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x: hidden;}
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

/* ---------- Topbar ---------- */
.topbar{
  background: linear-gradient(
    90deg,
    rgba(5, 15, 35, .98),   /* very dark navy */
    rgba(10, 35, 85, .96),  /* deep blue */
    rgba(14, 72, 180, .94)  /* bright dark-blue accent */
  );
  color:#fff;
}
.topbar a{ color:#fff; text-decoration:none; }
.topbar a:hover{ text-decoration: underline; }
.topbar-item{
  display:flex; align-items:center; gap:.5rem;
  font-size: .95rem;
}
.topbar-item i{ opacity:.95; }
.sep{ opacity:.55; margin: 0 .5rem; }
.muted-link{ opacity:.85; }

/* ---------- Navbar ---------- */
.header{ z-index: 999; }
.nav-glass{
  background: rgba(5, 15, 35, .78); /* dark navy glass */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 160, 255, .18); /* subtle blue border */
}
.navbar-brand{
  font-family: "Sora", "Poppins", sans-serif;
}
.brand-mark{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(90, 160, 255, .22),  /* soft blue glow */
    rgba(14, 72, 180, .28)    /* deep blue */
  );
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(90, 160, 255, .18);
  color:#fff;
}
.brand-title{ display:block; font-weight:800; letter-spacing:.5px; line-height:1; }
.brand-subtitle{ display:block; font-size:.82rem; opacity:.9; margin-top:2px; }

.navbar .nav-link{
  color: rgba(255,255,255,.86);
  font-weight: 500;
  padding: .55rem .8rem;
  border-radius: 12px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active{
  color:#fff;
  background: rgba(90, 160, 255, .14); /* dark-blue hover/active */
}

.brand-logo {
  height: 60px; /* adjust as needed */
  width: auto;
  background-color: #fff;
  border-radius: 20px;
}

.brand-title {
  font-weight: 600;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 12px;
  opacity: 0.85;
}


/* Buttons */
.btn-brand{
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border: none;
  color: #fff;
  box-shadow: 0 14px 30px rgba(10,79,255,.18);
}
.btn-brand:hover{
  filter: brightness(1.03);
  color:#fff;
}
.btn-outline-brand{
  border: 1px solid rgba(34,193,255,.55);
  color:#032938;
}
.btn-outline-brand:hover{
  background: rgba(34,193,255,.12);
  color:#056592;
  border-color: rgba(34,193,255,.75);
}

/* ---------- Hero ---------- */
.hero { position: relative; }

/* Softer background so image becomes the hero */
.hero-slide{
  position: relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  overflow:hidden;

  /* reduce background contrast */
  background:
    radial-gradient(1200px 500px at 15% 25%, rgba(34,193,255,.12), transparent 65%),
    radial-gradient(900px 450px at 85% 25%, rgba(28,200,138,.10), transparent 65%),
    linear-gradient(135deg, rgba(11,18,32,.65), rgba(10,79,255,.18));
}

.hero-slide-2{
  background:
    radial-gradient(1200px 500px at 15% 25%, rgba(28,200,138,.11), transparent 65%),
    radial-gradient(900px 450px at 85% 25%, rgba(34,193,255,.11), transparent 65%),
    linear-gradient(135deg, rgba(11,18,32,.62), rgba(34,193,255,.16));
}

.hero-slide-3{
  background:
    radial-gradient(1200px 500px at 15% 25%, rgba(34,193,255,.11), transparent 65%),
    radial-gradient(900px 450px at 85% 25%, rgba(10,79,255,.11), transparent 65%),
    linear-gradient(135deg, rgba(11,18,32,.62), rgba(28,200,138,.14));
}

/* Make image more visible + crisp */
.hero-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;

  /* Increase visibility */
  opacity: .68;

  /* Make it look clearer */
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
  transform: scale(1.03);
}

/* Softer overlay so image stays visible */
.hero-overlay{
  position:absolute; inset:0;

  /* lighter overlay than before */
  background: linear-gradient(
    90deg,
    rgba(11,18,32,.55),
    rgba(11,18,32,.25),
    rgba(11,18,32,.50)
  );
}

/* Keep text readable while image visible */
.hero-content{
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
  color:#fff;
}

/* Slight text shadow improves readability without dark overlay */
.hero-title{
  font-family:"Sora","Poppins",sans-serif;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.12;
  font-size: clamp(2.0rem, 1.2rem + 2.2vw, 3.3rem);
  text-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.hero-text{
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 58ch;
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

/* pill also slightly more visible */
.pill{
  display:inline-flex; align-items:center;
  gap:.5rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: .92rem;
}

/* Mobile spacing stays fine */
.hero-mobile-card{
  transform: translateY(-55px);
  margin-bottom: -55px;
}


/* ---------- Sections ---------- */
.section-pad{ padding: 80px 0; }
.section-tint{ background: linear-gradient(180deg, #ffffff, var(--soft)); }
/* .section-head{ max-width: 720px; } */
.section-kicker{
  display:inline-block;
  font-weight:700;
  color: var(--blue);
  background: rgba(34,193,255,.10);
  border: 1px solid rgba(34,193,255,.22);
  padding: .35rem .7rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.kicker-light{ color:#fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }
.section-title{
  font-family:"Sora","Poppins",sans-serif;
  font-weight: 800;
  letter-spacing: .2px;
}
.section-subtitle{ color: var(--muted); }

/* About */
.about-points .point{
  display:flex; gap: 1rem;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,79,255,.07);
  margin-bottom: .9rem;
}
.about-points .point i{
  font-size: 1.4rem;
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,193,255,.22), rgba(28,200,138,.22));
  color: var(--blue);
}
.about-points h6{ margin:0; font-weight: 800; }
.about-points p{ margin: .2rem 0 0; color: var(--muted); }

.about-card{
  position:relative;
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(10,79,255,.08);
  box-shadow: var(--shadow2);
  overflow:hidden;
  padding: 1.25rem;
}
.about-card-top{
  display:flex; align-items:center; gap: 1rem;
}
.about-icon{
  width: 52px; height: 52px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10,79,255,.16), rgba(34,193,255,.16), rgba(28,200,138,.16));
  color: var(--blue);
  font-size: 1.4rem;
}
.about-card-title{ font-weight: 900; font-family:"Sora","Poppins",sans-serif; }
.addr-title{ font-weight: 800; }
.addr-text{ color: var(--muted); }

.info-chip{
  display:flex; align-items:center; gap: .65rem;
  padding: .75rem .9rem;
  border-radius: 16px;
  border: 1px solid rgba(34,193,255,.20);
  background: rgba(34,193,255,.06);
  text-decoration:none;
  color: var(--ink);
  font-weight: 600;
}
.info-chip i{ color: var(--blue); }

.about-card-glow{
  position:absolute; inset:auto -160px -160px auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(34,193,255,.28), rgba(28,200,138,.18), transparent 65%);
  filter: blur(5px);
}


.about-image-wrap{
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(10,79,255,.10);
  background: linear-gradient(135deg, rgba(34,193,255,.10), rgba(28,200,138,.08));
}

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

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

/* soft overlay */
.about-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(11,18,32,.15), rgba(34,193,255,.08), rgba(28,200,138,.10));
  pointer-events:none;
}

/* floating badges */
.about-float-badge{
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,79,255,.12);
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
  font-weight: 800;
  color: var(--ink);
  z-index: 2;
}

.about-float-badge i{
  color: var(--blue);
  font-size: 1.05rem;
}

.badge-one{
  top: 16px;
  left: 16px;
}

.badge-two{
  bottom: 16px;
  right: 16px;
}

/* responsive */
@media (max-width: 991.98px){
  .about-image{ height: 380px; }
}
@media (max-width: 575.98px){
  .about-image{ height: 280px; }
}


/* Services */
.service-card{
  height:100%;
  background:#fff;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(10,79,255,.08);
  box-shadow: var(--shadow);
  overflow:hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card::after{
  content:"";
  position:absolute;
  inset:auto -80px -80px auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(34,193,255,.18), rgba(28,200,138,.12), transparent 65%);
  filter: blur(2px);
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(10,79,255,.16);
}

/* Top image */
.service-img-wrap{
  position: relative;
  height: auto;
  overflow: hidden;
}

.service-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
  filter: saturate(1.05) contrast(1.02);
}

/* slight overlay for premium look */
.service-img-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(10,79,255,.06), rgba(34,193,255,.04), rgba(28,200,138,.06));
  pointer-events:none;
}

.service-card:hover .service-img-wrap img{
  transform: scale(1.08);
}

/* Body padding */
.service-body{
  padding: 1.1rem 1.25rem 1.25rem;
}

/* Icon */
.service-icon{
  width: 52px; height: 52px;
  display:grid;
  place-items:center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10,79,255,.15), rgba(34,193,255,.15), rgba(28,200,138,.12));
  color: var(--blue);
  font-size: 1.35rem;
  margin-top: -28px;            /* makes icon overlap image slightly (looks premium) */
  margin-bottom: .8rem;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  transition: transform .6s ease; /* for rotation */
}

/* ✅ 360 degree rotation on hover */
.service-card:hover .service-icon{
  transform: rotate(360deg);
}

.service-card h5{
  font-family:"Sora","Poppins",sans-serif;
  font-weight: 800;
  margin-bottom:.35rem;
}

.service-card p{
  color: var(--muted);
  margin:0;
}

/* Responsive */
@media (max-width: 575.98px){
  .service-img-wrap{ height: 165px; }
}


/* Why */
.why-list .why-item{
  display:flex; gap: .9rem;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(10,79,255,.08);
  box-shadow: var(--shadow);
  margin-bottom: .9rem;
}
.why-item i{
  font-size: 1.25rem;
  color: var(--green);
}
.why-item h6{ margin:0; font-weight: 900; }
.why-item p{ margin:.2rem 0 0; color: var(--muted); }

.cta-strip{
  display:flex; align-items:center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(10,79,255,.10), rgba(34,193,255,.10), rgba(28,200,138,.10));
  border: 1px solid rgba(34,193,255,.20);
}
.cta-title{ font-weight: 900; font-family:"Sora","Poppins",sans-serif; }
.cta-sub{ color: var(--muted); font-size: .95rem; }

.why-card{
  position:relative;
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  min-height: 420px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(11,18,32,.95), rgba(10,79,255,.55));
  color:#fff;
}
.why-card-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 400px at 15% 25%, rgba(34,193,255,.28), transparent 60%),
    radial-gradient(900px 400px at 85% 65%, rgba(28,200,138,.22), transparent 60%);
  opacity: .95;
}
.why-card-content{ position: relative; z-index: 2; padding: 1.4rem; }

.stat-tile{
  display:flex; gap: .75rem; align-items:center;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}
.stat-icon{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,193,255,.22), rgba(28,200,138,.22));
}
.stat-title{ font-weight: 900; }
.stat-sub{ font-size: .9rem; color: rgba(255,255,255,.78); }

/* Achievements */
.section-gradient{
  background:
    radial-gradient(900px 420px at 20% 25%, rgba(34,193,255,.28), transparent 60%),
    radial-gradient(900px 420px at 80% 65%, rgba(28,200,138,.22), transparent 60%),
    linear-gradient(135deg, rgba(11,18,32,.98), rgba(10,79,255,.55));
}
.counter-card{
  text-align:center;
  padding: 1.2rem 1rem;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.counter-card i{ font-size: 1.6rem; }
.counter{
  font-family:"Sora","Poppins",sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-top: .4rem;
}
.counter-label{ color: rgba(255,255,255,.78); }

/* Gallery */
.gallery-toolbar{
  display:flex; gap:.6rem; flex-wrap:wrap; justify-content:center;
}
.toolbar-pill{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.5rem .85rem;
  border-radius:999px;
  background: rgba(34,193,255,.08);
  border:1px solid rgba(34,193,255,.18);
  color: var(--ink);
  font-weight: 600;
}
.gallery-item{
  position:relative;
  border-radius: calc(var(--radius) + 4px);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,79,255,.08);
  background: #fff;
}
.gallery-item img{
  width:100%;
  height: 240px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-cap{
  position:absolute;
  inset:auto 12px 12px 12px;
  padding: .55rem .8rem;
  border-radius: 14px;
  background: rgba(11,18,32,.55);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
  font-weight: 700;
  display:flex; justify-content: space-between; align-items:center;
}
.gallery-cap i{ opacity:.9; }

/* Contact */
.card-soft{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(10,79,255,.08);
  box-shadow: var(--shadow2);
}
.contact-card{
  display:flex; align-items:center; gap: .9rem;
  padding: .95rem 1rem;
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  border: 1px solid rgba(10,79,255,.08);
  box-shadow: var(--shadow);
  text-decoration:none;
  color: var(--ink);
  transition: transform .2s ease;
  margin-bottom: .75rem;
}
.contact-card:hover{ transform: translateY(-4px); }
.cc-icon{
  width: 46px; height: 46px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(34,193,255,.12);
  color: var(--blue);
  font-size: 1.25rem;
}
.cc-whatsapp{ background: rgba(28,200,138,.14); color: var(--green); }
.cc-title{ font-weight: 900; }
.cc-sub{ color: var(--muted); font-weight: 600; }

.address-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 8px;
}

.address-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.address-item strong {
    color: #111827;
}


/* Map */
.map-wrap iframe{
  width:100%;
  height: 420px;
  border: 0;
  display:block;
}

/* Footer */
.footer{
  background: #0b1220;
  color:#fff;
  padding: 60px 0 20px;
}
.footer-title{
  font-weight: 900;
  font-family:"Sora","Poppins",sans-serif;
  margin-bottom: .9rem;
}
.footer-links{
  list-style:none; padding:0; margin:0;
  display:grid; gap:.45rem;
}
.footer-links a{
  color: rgba(255,255,255,.72);
  text-decoration:none;
}
.footer-links a:hover{ color:#fff; text-decoration: underline; }
.footer-contact{
  list-style:none; padding:0; margin:0;
  display:grid; gap:.55rem;
}
.footer-contact i{ margin-right:.55rem; }
.footer-contact a{ color: rgba(255,255,255,.80); text-decoration:none; }
.footer-contact a:hover{ color:#fff; text-decoration: underline; }
.footer-hr{ border-color: rgba(255,255,255,.12); }

.footer-website-link{
  color: rgba(255,255,255,.85);
  font-weight: 600;
  text-decoration: none;
}

.footer-website-link:hover{
  color: #22c1ff;
  text-decoration: underline;
}


/* Floating buttons */
.fab-wrap{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.fab{
  display:flex;
  align-items:center;
  gap: .6rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  text-decoration:none;
  color:#fff;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.18);
  transform: translateZ(0);
  animation: floaty 2.7s ease-in-out infinite;
}
.fab i{ font-size: 1.15rem; }
.fab-whatsapp{
  background: linear-gradient(135deg, #14b86a, var(--green));
  box-shadow: 0 0 0 rgba(28,200,138,.0);
  animation: floaty 2.7s ease-in-out infinite, glowGreen 1.7s ease-in-out infinite;
}
.fab-call{
  background: linear-gradient(135deg, var(--blue), var(--sky));
  animation: floaty 2.7s ease-in-out infinite, glowBlue 1.7s ease-in-out infinite;
}

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}
@keyframes glowGreen{
  0%,100%{ box-shadow: 0 0 0 rgba(28,200,138,.0); }
  50%{ box-shadow: 0 0 22px rgba(28,200,138,.45); }
}
@keyframes glowBlue{
  0%,100%{ box-shadow: 0 0 0 rgba(34,193,255,.0); }
  50%{ box-shadow: 0 0 22px rgba(34,193,255,.45); }
}

/* Back to top */
.backtotop{
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(10,79,255,.12);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  display:grid;
  place-items:center;
  color: var(--blue);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
}
.backtotop.show{
  opacity:1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px){
  .hero-slide{ min-height: 74vh; }
  .section-pad{ padding: 70px 0; }
  .sticky-top{
	  position:relative;
  }
}
@media(max-width:767px)
{
	.mb-ds-nn{
		display:none!important
		
	}
	.jf-cnt-cntr{
		justify-content: center ! Important;
	}
}
@media (max-width: 575.98px){
  .hero-content{ padding: 2.9rem 0; }
  .gallery-item img{ height: 200px; }
  .fab{ padding: .8rem .9rem; }
  
}

@media(max-width:425px)
{
	.topbar a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
}

#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);}
    }