:root {
  --color-primary: #2f3a40;
  --color-secondary: #697683;
  --color-accent: #f4b183;
  --color-light: #f8f9fb;
  --color-dark: #1b2226;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --transition-fast: 0.25s ease;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #222;
  background-color: #ffffff;
}

/* Top Bar */

.top-bar {
  background: var(--color-dark);
  color: #e4e7ec;
  font-size: 0.85rem;
}

.top-bar a {
  color: #e4e7ec;
  text-decoration: none;
}

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

/* Navbar */

.site-logo {
  height: 50px;          /* adjust as needed */
  width: auto;
  object-fit: contain;
  margin-right:10px;
  display: block;
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;  /* stylish modern font */
    letter-spacing: 0.5px;
   
}

.main-nav {
  background: linear-gradient(
    to right,
    rgba(47, 58, 64, 0.97),
    rgba(105, 118, 131, 0.98)
  );
}

.navbar-brand .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

.navbar-brand .brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.navbar-brand .brand-tagline {
  font-size: 0.75rem;
  opacity: 0.9;
}

.navbar-nav .nav-link {
  color: #f4f4f4;
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.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: #ffffff;
}

/* Buttons */

.btn-cta {
  background: var(--color-accent);
  border: none;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(244, 177, 131, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.btn-cta:hover {
  background: #f09b56;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(244, 177, 131, 0.5);
  color: #161616;
}

.btn-cta-outline {
  border-radius: 999px;
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 500;
  background: transparent;
  transition: var(--transition-fast);
}

.btn-cta-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.55rem 1.6rem;
}

/* Hero Section */

.hero-section {
  position: relative;
  margin-top: 0; /* navbar is not fixed, so no offset needed */
}

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

.hero-slide-1 {
  background-image: url("../img/image-1.jpg");
}

.hero-slide-2 {
  background-image: url("../img/image-2.jpg");
}

.hero-slide-3 {
  background-image: url("../img/image-3.jpg");
}


/* Softer overlay so the banner images are more visible */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 27, 31, 0.78),   /* darker only at bottom */
    rgba(22, 27, 31, 0.4),
    rgba(0, 0, 0, 0.05)       /* very light at top so image shows */
  );
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  right: 10%;
  max-width: 640px;
}

.carousel-caption .subtitle {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #f7f7f7;
}

.carousel-caption .heading {
  font-family: "Playfair Display", serif;
  margin: 0.6rem 0 0.9rem;
}

.carousel-caption p.lead {
  font-size: 1rem;
  max-width: 500px;
}

/* Sections */

.section-padding {
  padding: 4.5rem 0;
}

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

.section-heading .section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-secondary);
  font-weight: 600;
}

.section-heading .section-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 2rem;
}

.section-intro {
  max-width: 580px;
  margin: 0.75rem auto 0;
  color: #555;
}

/* About Section */

.about-image-wrapper {
  position: relative;
  min-height: 320px;
}

.about-main-img {
  border-radius: var(--radius-lg);
  background-image: url("../img/about.jpg");
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.about-floating-card {
  position: absolute;
  right: 5%;
  bottom: -52%;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-accent);
}

.about-floating-card h5 {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.about-floating-card p {
  font-size: 0.9rem;
  color: #555;
}

.about-floating-card ul li {
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.about-floating-card i {
  color: var(--color-primary);
  margin-right: 0.35rem;
}

.about-highlights .about-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(105, 118, 131, 0.2);
  transition: var(--transition-fast);
}

.about-highlights .about-card i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.about-highlights .about-card h5 {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.about-highlights .about-card p {
  font-size: 0.85rem;
  color: #555;
}

.about-highlights .about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}


.about-caption {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;                 /* bigger and stylish */
  font-weight: 700;                /* bold */
  color: #ffffff;                  /* looks premium on banners */
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
  width: 100%;
  margin-top: -130px;
  display: block;
}

.text-center-custom {
  text-align: center !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/* Responsive – slightly smaller on mobile */
@media (max-width: 768px) {
  .about-caption {
    font-size: 2.1rem;
  }
}




/* Services */

/* =========================
   SERVICES – STYLISH CARDS
   ========================= */

.service-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.7rem 1.5rem 1.5rem;
  border: 1px solid rgba(105, 118, 131, 0.18);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transform: translateY(0) translateZ(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* soft gradient glow in the corner */
.service-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle at center,
    rgba(244, 177, 131, 0.6),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* small accent line at the bottom */
.service-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #f4b183,
    #ffd2a5
  );
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* hover effect on the entire card */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  border-color: rgba(47, 58, 64, 0.28);
  background: linear-gradient(
    135deg,
    rgba(47, 58, 64, 0.03),
    rgba(105, 118, 131, 0.02)
  );
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ICON CONTAINER WITH 360° HOVER SPIN */

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(244, 177, 131, 0.9),
    rgba(47, 58, 64, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.35);
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* thin ring around icon */
.service-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.7;
}

/* actual Bootstrap icon */
.service-icon i {
  font-size: 1.6rem;
  color: #ffffff;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 360° rotation on hover */
.service-card:hover .service-icon {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.45);
}

.service-card:hover .service-icon i {
  transform: rotate(360deg) scale(1.05);
}

/* TEXT INSIDE SERVICE CARD */

.service-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--color-primary);
}

.service-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #555;
}

/* OPTIONAL: subtle stagger animation when section reveals */

#services.revealed .service-card {
  opacity: 1;
  transform: translateY(0);
}

#services .service-card {
  opacity: 0;
  transform: translateY(18px);
}

/* small delay per card for a nice wave effect */
#services.revealed .service-card:nth-child(1) { transition-delay: 0.05s; }
#services.revealed .service-card:nth-child(2) { transition-delay: 0.1s; }
#services.revealed .service-card:nth-child(3) { transition-delay: 0.15s; }
#services.revealed .service-card:nth-child(4) { transition-delay: 0.2s; }
#services.revealed .service-card:nth-child(5) { transition-delay: 0.25s; }
#services.revealed .service-card:nth-child(6) { transition-delay: 0.3s; }
#services.revealed .service-card:nth-child(7) { transition-delay: 0.35s; }
#services.revealed .service-card:nth-child(8) { transition-delay: 0.4s; }
#services.revealed .service-card:nth-child(9) { transition-delay: 0.45s; }


/* Why Choose Us */

.why-list li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #444;
}

.why-list i {
  color: var(--color-accent);
  margin-right: 0.35rem;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.1rem;
  text-align: center;
  border: 1px solid rgba(105, 118, 131, 0.18);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

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

/* Achievements */

.achievement-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(105, 118, 131, 0.15);
}

.achievement-card i {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.achievement-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.achievement-card p {
  font-size: 0.85rem;
  color: #555;
}

/* Gallery */
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast),
    box-shadow var(--transition-fast);
}

/* Hover effect */
.gallery-grid .gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 34, 38, 0.8),
    rgba(27, 34, 38, 0)
  );
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.8rem;
  color: #ffffff;
  transition: opacity var(--transition-fast);
}

.gallery-overlay h6 {
  font-size: 0.9rem;
  margin: 0;
}

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




/* Prevent scroll when lightbox open */
body.no-scroll {
  overflow: hidden;
}

/* Lightbox overlay */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 18, 0.92);
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1400;
}

.gallery-lightbox.show {
  display: flex;
  animation: lightbox-fade-in 0.3s ease-out;
}

/* Clickable backdrop (close on click) */
.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

/* Inner container */
.lightbox-inner {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* The big image – auto-adjust for all sizes */
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 0.9rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  object-fit: contain;     /* keeps full image visible */
  background: #0b1014;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover {
  transform: translateY(-1px) scale(1.02);
  background: var(--color-primary);
}

/* Lightbox animation */
@keyframes lightbox-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive tweak for very small screens */
@media (max-width: 575.98px) {
  .lightbox-inner {
    max-width: 100vw;
    max-height: 100vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}



/* VIDEO CARDS FIXED HEIGHT WITH CLEAN LOOK */

.video-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(105, 118, 131, 0.18);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fixed height + natural proportions */
.video-element {
  width: 100%;
  height: 380px;          /* FIXED HEIGHT ADDED */
  object-fit: contain;    /* keeps original proportions */
  background: #000;       /* for letterbox areas only */
  border-radius: inherit;
}

/* Hover effect */
.video-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

/* Mobile responsiveness */
@media (max-width: 575.98px) {
  .video-element {
    height: 260px;        /* smaller for mobile */
  }
}



/* Contact */

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0.8rem;
  border-color: rgba(105, 118, 131, 0.4);
  font-size: 0.9rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.12rem rgba(47, 58, 64, 0.18);
}

.contact-info-card {
  background: var(--color-primary);
  color: #e8edf3;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.contact-info-card h5 {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-info-card h6 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: #e8edf3;
  text-decoration: none;
}

.contact-info-card i {
  margin-right: 0.4rem;
  color: var(--color-accent);
}

.contact-info-card .social-links a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-right: 0.35rem;
  color: #ffffff;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.contact-info-card .social-links a:hover {
  background: #ffffff;
  color: var(--color-primary);
}

/* Map */
/* =============================
   Stylish Geo Map Section
   ============================= */
/* Map Section */
.map-section {
  position: relative;
  padding: 80px 0;
}

.map-container {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(95%);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: brightness(100%);
}

/* Map Overlay Card */
.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
  background: rgba(47, 58, 64, 0.90);
  padding: 18px 22px;
  border-radius: 12px;
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  max-width: 280px;
}

.map-overlay h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.map-overlay p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.4;
}


/* Footer */

.footer-section {
  background: #161b1f;
  color: #d1d5db;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-text {
  color: #9ca3af;
}

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
}

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

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--color-accent);
}

.footer-contact a {
  color: #d1d5db;
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.32);
}

.dev-highlight {
  color: var(--color-accent);
}

/* Floating Buttons */

.floating-btn {
  position: fixed;
  right: 18px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.7);
  cursor: pointer;
  z-index: 999;
  border: none;
  animation: pulse-glow 1.8s infinite;
}

.whatsapp-btn {
  bottom: 90px;
  background: #25d366;
}

.call-btn {
  bottom: 30px;
  background: #0d6efd;
  animation-delay: 0.4s;
}

.floating-btn:hover {
  transform: translateY(-1px);
}

/* Back to top */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 150px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  cursor: pointer;
  z-index: 998;
  font-size: 1.1rem;
}

.back-to-top.show {
  display: flex;
}

/* Scroll Reveal */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Counters */

.counter {
  font-size: 1.8rem;
}

/* Animations */

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive */

@media (max-width: 991.98px) {
  .hero-slide {
    height: 75vh;
  }

  .carousel-caption {
    top: 55%;
    left: 8%;
    right: 8%;
  }

  .carousel-caption .heading {
    font-size: 1.9rem;
  }

  .about-floating-card {
    position: static;
    margin-top: 1rem;
  }

  .top-bar {
    /* display: none !important; */
  }

  .main-nav {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
}
#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: 767.98px) {
  .section-padding {
    padding: 3.5rem 0;
  }

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

  .hero-slide {
    height: 70vh;
  }

  .carousel-caption .heading {
    font-size: 1.6rem;
  }

  .carousel-caption p.lead {
    font-size: 0.9rem;
  }

  .btn-cta,
  .btn-ghost {
    padding-inline: 1.2rem;
    font-size: 0.85rem;
  }

  .back-to-top {
    right: 16px;
    bottom: 140px;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand .brand-name {
    font-size: 0.95rem;
  }

  .navbar-brand .brand-tagline {
    display: none;
  }

  .section-heading .section-title {
    font-size: 1.6rem;
  }
}



/* =========================
   TESTIMONIALS
   ========================= */

.testimonials-section {
  background: radial-gradient(circle at top left, #eef2f7, #ffffff);
}

.testimonial-card {
  max-width: 760px;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem 1.8rem 1.6rem;
  border: 1px solid rgba(105, 118, 131, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  position: relative;
}

/* decorative quotes */
.testimonial-card::before {
  content: "“";
  position: absolute;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: rgba(148, 163, 184, 0.25);
  top: -18px;
  left: 22px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f3a40, #697683);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.testimonial-meta .stars i {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-right: 1px;
}

.testimonial-meta .dot {
  margin: 0 0.35rem;
}

.badge-new {
  background: #e5f3ff;
  color: #2563eb;
  border-radius: 999px;
  padding: 0.08rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.testimonial-text {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #374151;
}

/* Carousel controls & indicators */
#testimonialsCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background-color: rgba(107, 114, 128, 0.45);
}

#testimonialsCarousel .carousel-indicators .active {
  width: 28px;
  background: #2f3a40;
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}
@media(max-width:991px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
}
/* Responsive */
@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 1.4rem 1.2rem 1.3rem;
    border-radius: 1.1rem;
  }

  .testimonial-card::before {
    font-size: 3.2rem;
    top: -16px;
    left: 16px;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }
}
@media(max-width:600px)
{
	.brand-text {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}
}