/* Root Variables */
:root {
  --sb-primary: #0b1120; /* navy/dark blue */
  --sb-primary-light: #1d2840;
  --sb-secondary: #1d4ed8; /* blue */
  --sb-accent: #60a5fa;
  --sb-gray-dark: #111827;
  --sb-gray: #4b5563;
  --sb-gray-light: #e5e7eb;
  --sb-silver: #f3f4f6;
  --sb-bg-light: #f9fafb;
  --sb-white: #ffffff;
  --sb-border: rgba(148, 163, 184, 0.4);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.25);
}

/* Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--sb-gray-dark);
  background-color: var(--sb-bg-light);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 600;
  color: var(--sb-gray-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--sb-secondary);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(
    90deg,
    var(--sb-primary),
    var(--sb-primary-light)
  );
  color: var(--sb-silver);
  font-size: 0.85rem;
}

.top-bar a {
  color: #e0f2fe;
}

.top-bar a:hover {
  color: var(--sb-accent);
}

.top-bar i {
  margin-right: 6px;
}

.top-bar-tagline {
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Navbar */
.main-header .navbar {
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
}

.navbar-brand {
  color: var(--sb-white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #60a5fa, #1d4ed8);
  color: var(--sb-white);
  box-shadow: 0 0 18px rgba(96, 165, 250, 0.8);
}

.logo-icon i {
  font-size: 1.2rem;
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.75rem;
  opacity: 0.7;
}

.navbar-nav .nav-link {
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 0.8rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sb-accent), var(--sb-secondary));
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--sb-white);
}


/* Navbar Logo Styling */
.navbar-logo {
  height: 66px;        /* desktop size */
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* Slight hover effect (optional but classy) */
.navbar-logo:hover {
  transform: scale(1.05);
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .navbar-logo {
    height: 55px;
  }
}


/* Brand Button */
.btn-brand {
  background: linear-gradient(135deg, var(--sb-secondary), #1e40af);
  color: var(--sb-white);
  border-radius: 999px;
  border: none;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    background 0.18s ease-out;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.7);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: var(--sb-white);
}

/* Sections */
.section-padding {
  padding: 4.5rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sb-secondary);
  font-weight: 600;
}

.section-heading h2 {
  margin-top: 0.5rem;
  font-size: 2rem;
}

.section-description {
  max-width: 540px;
  margin: 0.5rem auto 0;
  color: var(--sb-gray);
}

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

.hero-slide {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide-1 {
  background-image: linear-gradient(
      120deg,
      rgba(11, 15, 25, 0.45),
      rgba(15, 23, 42, 0.35)
    ),
    url("../img/banner-1.jpg");
}

.hero-slide-2 {
  background-image: linear-gradient(
      120deg,
      rgba(11, 15, 25, 0.45),
      rgba(15, 23, 42, 0.35)
    ),
    url("../img/banner-2.jpg");
}

.hero-slide-3 {
  background-image: linear-gradient(
      120deg,
      rgba(11, 15, 25, 0.45),
      rgba(15, 23, 42, 0.35)
    ),
    url("../img/banner-3.jpg");
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(96, 165, 250, 0.3),
    transparent
  );
}

.carousel-caption {
  bottom: unset;
  top: 50%;
  left: 7%;
  right: 7%;
  transform: translateY(-50%);
  text-align: left;
}

.carousel-caption h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  color: var(--sb-white);
  margin-bottom: 1rem;
}

.carousel-caption p {
  max-width: 520px;
  color: #e5e7eb;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #bfdbfe;
  margin-bottom: 0.75rem;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(7px);
}

.hero-buttons .btn {
  font-size: 0.9rem;
}

/* About */
.section-about {
  background: radial-gradient(circle at top left, #e5e7eb, #f9fafb);
}

.about-image-wrapper {
  position: relative;
  padding: 1.25rem;
}

.about-main-image {
  border-radius: 28px;
  min-height: 260px;
  background-image: linear-gradient(
      120deg,
      rgba(15, 23, 42, 0.2),
      rgba(15, 23, 42, 0.6)
    ),
    url("../img/about.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

.about-floating-card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  background: linear-gradient(135deg, #1f2937, #0f172a);
  color: var(--sb-silver);
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-floating-card i {
  font-size: 1.6rem;
  color: #fde68a;
}

.about-pattern {
  position: absolute;
  inset: 6%;
  border-radius: 28px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  pointer-events: none;
  transform: translate(10px, 10px);
}

.about-card {
  background: var(--sb-white);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid var(--sb-border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.about-card i {
  font-size: 1.5rem;
  color: var(--sb-secondary);
  margin-bottom: 0.4rem;
}

.about-card h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--sb-gray);
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.call-text {
  font-size: 0.9rem;
  color: var(--sb-gray);
}

.abt-crd-text{
color: #3b7aff;
}



/* Services */
.section-services {
  background: linear-gradient(
    180deg,
    var(--sb-silver),
    var(--sb-bg-light)
  );
}

.service-card {
  background: var(--sb-white);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--sb-border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  height: 100%;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
    border-color 0.2s ease-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  border-color: rgba(37, 99, 235, 0.6);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 20%, #bfdbfe, #1d4ed8);
  color: var(--sb-white);
  margin-bottom: 0.7rem;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.8);
}

.service-card h5 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--sb-gray);
}

/* ===== Services (Image + 360 rotate hover) ===== */
.service-card-rotate{
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}

.service-card-rotate:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  border-color: rgba(29, 78, 216, 0.55);
}

.service-media{
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #0b1120;
}

.service-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
  will-change: transform;
}

/* 360° rotation effect (smooth + premium) */
.service-card-rotate:hover .service-img{
  transform: rotate(360deg) scale(1.08);
}

/* Optional overlay for better text contrast on images */
.service-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(11,17,32,0.15),
    rgba(11,17,32,0.65)
  );
  pointer-events:none;
}

/* Icon badge on image */
.service-icon-badge{
  position:absolute;
  left: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(circle at 20% 20%, #60a5fa, #1d4ed8);
  color:#fff;
  box-shadow: 0 0 18px rgba(59,130,246,0.75);
  z-index: 2;
}

.service-body{
  padding: 1.15rem 1.15rem 1.25rem;
}

.service-body h5{
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.service-body p{
  font-size: .92rem;
  color: #4b5563;
  margin-bottom: 0;
}

/* Mobile tweaks */
@media (max-width: 575.98px){
  .service-media{ height: 170px; }
}


/* ===== Service Icon Rotation Effect ===== */

/* Keep card & image normal */
.service-card-rotate {
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Icon default state */
.service-icon-badge i {
  transition: transform .6s ease;
  transform-origin: center;
  will-change: transform;
}

/* 360° rotation ONLY icon on hover */
.service-card-rotate:hover .service-icon-badge i {
  transform: rotate(360deg);
}

/* Optional: slight glow boost on hover */
.service-card-rotate:hover .service-icon-badge {
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.9);
}


/* Why Choose Us */
.section-why-us {
  background: radial-gradient(circle at top, #1f2937, #020617);
  position: relative;
  overflow: hidden;
}

.section-why-us::before,
.section-why-us::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
  filter: blur(10px);
  opacity: 0.6;
}

.section-why-us::before {
  top: -80px;
  left: -80px;
}

.section-why-us::after {
  bottom: -80px;
  right: -80px;
}

.section-why-us h2 {
  color: #f9fafb;
}

.why-card {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7)
  );
  border-radius: 20px;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--sb-silver);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.8);
  height: 100%;
  transform: translateY(0);
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out,
    border-color 0.22s ease-out;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  border-color: rgba(59, 130, 246, 0.8);
}

.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 20%, #60a5fa, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.why-icon i {
  color: var(--sb-white);
}

.why-card h5 {
  color: #e5e7eb;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.why-card p {
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* Achievements */
.section-achievements .achievement-card {
  background: var(--sb-white);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--sb-border);
  text-align: center;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.achievement-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #93c5fd, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
  color: var(--sb-white);
}

.achievement-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.1rem;
  color: var(--sb-primary);
}

.achievement-card p {
  font-size: 0.9rem;
  color: var(--sb-gray);
}

/* Gallery */
.section-gallery {
  background: linear-gradient(
    180deg,
    var(--sb-bg-light),
    var(--sb-silver)
  );
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--sb-gray-dark);
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.6)
  );
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.6rem 0.7rem;
  color: var(--sb-silver);
  font-size: 0.78rem;
  transition: opacity 0.3s ease-out;
}

.gallery-overlay .icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #60a5fa, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sb-white);
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.modal-lightbox {
  background: linear-gradient(
    145deg,
    #020617,
    #020617
  );
  color: var(--sb-silver);
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Contact */
.section-contact {
  background: radial-gradient(circle at top left, #e5e7eb, #f9fafb);
}

.contact-info-list {
  margin-top: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.contact-info-item i {
  margin-top: 0.1rem;
  color: var(--sb-secondary);
  font-size: 1.2rem;
}

.contact-info-item h6 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--sb-gray);
}

.contact-form-card {
  background: var(--sb-white);
  border-radius: 18px;
  padding: 1.3rem 1.3rem 1.4rem;
  border: 1px solid var(--sb-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sb-gray-dark);
}

.form-control {
  border-radius: 12px;
  border-color: rgba(148, 163, 184, 0.6);
  font-size: 0.9rem;
}

.form-control:focus {
  border-color: var(--sb-secondary);
  box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.2);
}

.form-note {
  font-size: 0.75rem;
  color: var(--sb-gray);
}

/* Map */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

/* Footer */
.main-footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.88rem;
}

.footer-top {
  padding: 3rem 0 2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.8);
  padding: 0.9rem 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-title {
  color: #e5e7eb;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a,
.footer-links span {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--sb-accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-top: 0.1rem;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #e5e7eb;
}

.footer-contact a:hover {
  color: var(--sb-accent);
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  animation: pulseGlow 1.7s infinite;
}

.floating-whatsapp {
  bottom: 90px;
  background: radial-gradient(circle at 20% 20%, #22c55e, #16a34a);
  color: #e5f9f0;
}

.floating-call {
  bottom: 25px;
  background: radial-gradient(circle at 20% 20%, #2563eb, #1d4ed8);
  color: #e0f2fe;
}

.floating-btn i {
  font-size: 1.5rem;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 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);}
    }
/* Utilities & Responsive */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding-left: 0;
  }

  .carousel-caption {
    top: 52%;
  }

  .hero-slide {
    min-height: 70vh;
  }
  .cu-m-ds-nn{
	  display:none!important;
  }
  .cu-jf-cntr{
	  justify-content:center!important
  }
  .sticky-top{
	  position:relative;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 3.2rem 0;
  }

  .about-main-image {
    min-height: 220px;
  }

  .gallery-item img {
    height: 190px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    right: 12px;
  }
}

@media (max-width: 575.98px) {
  .carousel-caption h1 {
    font-size: 1.7rem;
  }

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

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
  }

  .about-floating-card {
    right: 8%;
  }
}
