/* GLOBAL COLORS */
:root {
  --navy: #0a1a33;
  --navy-dark: #061024;
  --yellow: #f8d900;
  --yellow-soft: #ffe94a;
  --text-light: #ffffff;
  --text-muted: #94a3b8;
  --bg-alt: #f8f9fc;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --transition-fast: all 0.25s ease;
}

/* FONTS */
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2a2a2a;
  line-height: 1.6;
  background-color: #fff;
  scroll-behavior: smooth;
}

.brand-name,
.section-title,
.navbar-brand .brand-name,
.footer-title {
  font-family: 'Rajdhani', 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* TOP BAR */
.top-bar {
  background-color: var(--navy);
  font-size: 1.02rem;
}
.top-bar i {
  color: #ffffff;
  margin-right: 4px;
}

/* NAVBAR */
.navbar-brand .brand-icon {
  width: 44px;
  height: 44px;
  background-color: var(--navy);
  color: #2c466e;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(10, 26, 51, 0.4);
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.brand-tagline {
  font-size: 0.65rem;
  color: var(--navy);
}

.nav-link {
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: #2c466e;
}
.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background-color: #2c466e;
  animation: linkFade 0.25s ease forwards;
}
@keyframes linkFade {
  from { opacity: 0; width: 0; margin: 0 auto; }
  to   { opacity: 1; width: 100%; margin: 0; }
}

/* COMMON SECTIONS */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.bg-alt {
  background-color: var(--bg-alt);
}
.section-head .section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--navy);
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-title {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(1.4rem, 0.6vw + 1rem, 2rem);
  margin-top: 0.75rem;
}
.section-subtext {
  max-width: 600px;
  font-size: 0.9rem;
  color: #64748b;
}

/* BUTTONS */
.btn-yellow {
  background-color: #2c466e;
  color: #ffffff;
  border: 2px solid #2c466e;
}
.btn-yellow:hover {
  background-color: var(--navy);
  color: #2c466e;
  border-color: #2c466e;
}
.btn-outline-light:hover {
  background-color: #2c466e;
  border-color: #2c466e;
  color: var(--navy) !important;
}
.btn-outline-yellow {
  background-color: transparent;
  border: 2px solid #2c466e;
  color: var(--navy);
}
.btn-outline-yellow:hover {
  background-color: #2c466e;
  color: var(--navy);
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
}

/* Background */
.hero-slide-bg {
  height: clamp(420px, 35vw, 600px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay should sit BEHIND text */
.hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 70%);
  z-index: 1;              /* lower than caption */
  pointer-events: none;
}

/* Caption should be ABOVE overlay */
.carousel-caption {
  position: absolute;
  z-index: 3;              /* bring text above overlay */
  bottom: auto;
  top: 0;
  left: 0;
  right: 0;
  padding: min(4vw,3rem);
  max-width: 800px;
  color: #fff;
}

/* ABOUT */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
}
.about-img {
  border-radius: var(--radius-xl);
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--navy);
  color: #2c466e;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  min-width: 120px;
  text-align: center;
}
.badge-number {
  font-size: 1.6rem;
  line-height: 1;
  color: white;
}
.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.icon-box {
  width: 44px;
  height: 44px;
  background-color: #2c466e;
  color: #ffffff;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(248,217,0,0.45);
}

/* SERVICES */
.service-card {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-fast);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,26,51,0.15);
}
.service-title {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}
.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}



.sticky-top{
  background-color: #fbff07 ;
}





/* WHY CHOOSE US */
.choose-img-wrapper {
  position: relative;
}
.floating-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  min-width: 220px;
  display: inline-block;
  border: 2px solid #2c466e;
}
.floating-icon {
  background-color: #2c466e;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(248,217,0,0.4);
}
.why-box {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.05);
}
.why-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background-color: var(--navy);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

/* ACHIEVEMENTS */
.achievements-section {
  position: relative;
  background-image: linear-gradient(rgba(6,16,36,0.85), rgba(6,16,36,0.85)), url('');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.achievements-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(248,217,0,0.2) 0%, rgba(0,0,0,0) 60%);
}
.stat-box {
  position: relative;
  padding: 1rem 0;
}
.stat-number {
  font-family: 'Rajdhani', 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
}
.stat-label {
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* GALLERY */
.gallery-item {
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 30px rgba(10,26,51,0.1);
  overflow: hidden;
  position: relative;
}
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}
.gallery-item:hover .gallery-thumb {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,16,36,0.6);
  opacity: 0;
  transition: var(--transition-fast);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.view-btn {
  font-size: 0.8rem;
}

#lightboxImg {
  width: 100%;
  height: 80vh;        /* modal me fixed height */
  object-fit: contain; /* image ko distorting ke bina fit karega */
  background: #000;
}
#lightboxImg {
  width: 100%;
  height: 80vh;
  object-fit: contain;
  background: #000;
}
#lightboxImg {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  background: #000;
}


/* CONTACT */
.contact-card {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-icon {
  background-color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  display: grid;
  place-items: center;
}
.form-control-custom {
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}
.form-control-custom:focus {
  border-color: #2c466e;
  box-shadow: 0 0 0 0.15rem rgba(248,217,0,0.4);
  outline: none;
}

/* MAP */
.map-wrapper {
  height: 350px;
  overflow: hidden;
  filter: grayscale(0.2);
  border-top: 4px solid #2c466e;
}
.map-iframe {
  width: 100%;
  height: 100%;
}

/* FOOTER */
.text-black{
  color: #000;
}
.footer-section {
  background-color: #ffffff;
  background-image: radial-gradient(circle at 20% 20%, rgba(248,217,0,0.15) 0%, rgba(0,0,0,0) 60%);
  font-size: 0.9rem;
  border-top: 1px solid black;
}
.footer-icon {
  width: 44px;
  height: 44px;
  background-color: #000000;
  color: #ffffff;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(248,217,0,0.4);
}
.footer-title {
  font-weight: 700;
  font-size: 1rem;
  color: #000000;
  line-height: 1.1;
}
.text-yellow {
  color: #000000 !important;
}
.footer-links li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.footer-link {
  color: rgb(0, 0, 0);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}
.footer-link i {
  color: #000000;
  margin-right: 6px;
}
.footer-link:hover {
  color: #2c466e;
}
.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: #000;
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-icon:hover {
  background-color: #2c466e;
  color: var(--navy-dark);
}
.footer-divider {
  border-color: #000;
}

/* BACK TO TOP BTN */
.back-to-top {
  width: 42px;
  height: 42px;
  border: 0;
  background-color: #000000;
  color: #ffffff;
  font-size: 1rem;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition-fast);
}
.back-to-top.show {
  display: flex;
}
.back-to-top:hover {
  background-color: var(--navy);
  color: #2c466e;
}

/* UTILS */
.shadow-hover {
  transition: var(--transition-fast);
}
.shadow-hover:hover {
  box-shadow: 0 25px 50px rgba(10,26,51,0.18);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 767.98px) {
  .carousel-caption {
    max-width: 90%;
  }
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
  .carousel-caption .lead {
    font-size: 0.9rem;
  }
  .hero-slide-bg {
    height: 420px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-tagline {
    font-size: 0.6rem;
  }
  .top-bar {
    font-size: 0.7rem;
  }
  .about-badge {
    min-width: 100px;
    padding: .8rem 1rem;
  }
  .badge-number {
    font-size: 1.4rem;
  }
  .floating-card {
    min-width: 180px;
  }
}





.service-card {
      background: #fff;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      
    }
    .service-card .btn {
      font-size: 0.9rem;
      transition: all 0.3s ease;
      --bs-btn-bg: #2c466e;
      --bs-btn-color: #ffffff;
      padding: 10px;
    }
    .service-card .btn:hover {
      transform: scale(1.05);
    }




 /* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Common Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
    transition: 0.3s ease-in-out;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366;
}

/* Call Button */
.call-btn {
    background-color: #25D366;
}

/* Hover Effects */
.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0px 6px 18px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media(max-width: 480px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}






/* SECTION BACKGROUND */
.premium-services-2 {
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

/* TITLE */
.section-tag {
    font-size: 14px;
    padding: 6px 16px;
    background: #2C466E;
    color: #fff;
    border-radius: 30px;
    display: inline-block;
}

.section-title {
    margin-top: 14px;
    font-size: 36px;
    font-weight: 700;
    color: #2C466E;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #D4A853;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* SERVICE CARD */
.service-box {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: 0.4s;
    border: 1px solid #dcdfe6;
    position: relative;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* IMAGE */
.s-img img {
    width: 100%;
    height: 250px;
    transition: 0.4s ease;
}

.service-box:hover .s-img img {
    transform: scale(1.06);
}

/* CONTENT */
.s-content {
    padding: 25px;
    text-align: center;
}

.s-content h4 {
    font-size: 21px;
    font-weight: 600;
    color: #2C466E;
}

.s-content p {
    margin: 10px 0;
    font-size: 14px;
    color: #6f6f6f;
}

/* BUTTON */
.s-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 40px;
    background: #2C466E;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.s-btn:hover {
    background: #D4A853;
    color: #fff;
}

/* ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards ease-out;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#callme {
        position: fixed;
        right: 15px;
        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);}
    }
@media(max-width:991px)
{
	.sticky-top{
		position:relative;
	}
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntrr{
		justify-content:center!important;
	}
}

@media(max-width:600px)
{
	.cu-fnt-em{
		font-size:12px;
	}
}