/* ============================
   SATYA COMPUTERS - style.css
   ============================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2448;
  --accent: #e85d04;
  --accent-light: #f48c06;
  --light-bg: #f4f7fc;
  --dark-text: #1a1a2e;
  --muted: #6c7a89;
  --white: #ffffff;
  --border: #dce3ef;
  --shadow: 0 4px 24px rgba(26, 58, 107, 0.10);
  --shadow-hover: 0 8px 36px rgba(26, 58, 107, 0.18);
  --radius: 10px;
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Utility ---- */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.bg-light-blue {
  background: var(--light-bg);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--primary);
  position: relative;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 44px;
}

.title-underline {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 10px 0 14px;
}

.title-underline.center {
  margin: 10px auto 14px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.4px;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.25);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.32);
}

.btn-outline-custom {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 11px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--accent);
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 18px rgba(26, 58, 107, 0.10);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.brand-logo-circle {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-circle span {
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-text .brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  display: block;
}

.brand-text .brand-tag {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--dark-text) !important;
  padding: 18px 14px !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 28px);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(20%) sepia(80%) saturate(500%) hue-rotate(200deg);
}

/* Top Info Bar */
.top-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 7px 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

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

.top-bar i {
  color: var(--accent-light);
  margin-right: 5px;
}

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

.carousel-item {
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: brightness(0.52);
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 780px;
  z-index: 10;
}

.carousel-caption-custom .hero-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 18px;
}

.carousel-caption-custom h1 {
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.carousel-caption-custom p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 2vw, 1.08rem);
  margin-bottom: 28px;
}

.carousel-caption-custom .hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
}

.carousel-indicators .active {
  background: var(--accent);
}

/* ========================
   STATS BAR
   ======================== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 36px 0;
  margin-top: -1px;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  height: 50px;
  align-self: center;
}

/* ========================
   SERVICES
   ======================== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  border-radius: 4px 0 0 4px;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.service-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(26, 58, 107, 0.08), rgba(232, 93, 4, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.service-img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  margin: -32px -24px 24px;
}

.service-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

/* ========================
   ABOUT
   ======================== */
.about-img-wrap {
  position: relative;
  padding: 0 0 32px 32px;
}

.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.about-badge {
  position: absolute;
  bottom: 10px;
  left: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.3);
  text-align: center;
  min-width: 130px;
}

.about-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge .badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light-bg);
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.about-feature-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-feature-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.about-feature-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ========================
   CLIENTS
   ======================== */
.clients-section {
  background: var(--light-bg);
}

.client-logo-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.client-logo-wrap:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.client-logo-wrap span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  text-align: center;
  transition: var(--transition);
}

.client-logo-wrap:hover span {
  color: var(--accent);
}

/* ========================
   GALLERY
   ======================== */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 58, 107, 0.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

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

/* ========================
   WHY CHOOSE US
   ======================== */
.why-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.why-icon i {
  font-size: 1.6rem;
  color: var(--white);
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.why-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ========================
   CTA BANNER
   ======================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.12);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

/* ========================
   CONTACT
   ======================== */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 40px 32px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 1.4rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  color: var(--accent-light);
  font-size: 1.2rem;
}

.contact-detail-text .label {
  font-size: 0.75rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text p {
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  margin: 0;
}

.contact-detail-text a:hover {
  color: var(--accent-light);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-form-card h3 {
  color: var(--primary);
  margin-bottom: 28px;
  font-size: 1.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--dark-text);
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.10);
  outline: none;
}

/* ========================
   PAGE HERO
   ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-item a {
  color: var(--accent-light);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-brand .brand-tag {
  color: var(--accent-light);
}

.footer p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact li i {
  color: var(--accent-light);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 18px 0;
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: var(--accent-light);
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease both;
}

.animate-delay-1 {
  animation-delay: 0.15s;
}

.animate-delay-2 {
  animation-delay: 0.3s;
}

.animate-delay-3 {
  animation-delay: 0.45s;
}

/* ========================
   SCROLL TO TOP
   ======================== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
}

#scrollTop:hover {
  transform: translateY(-3px) scale(1.08);
}

#scrollTop.show {
  display: flex;
}

/* ========================
   MAP EMBED
   ======================== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 991.98px) {
  .carousel-item img {
    height: 420px;
  }

  .about-img-wrap img {
    height: 300px;
  }

  .stat-divider {
    display: none;
  }

  .navbar-nav .nav-link {
    padding: 10px 14px !important;
  }

  .navbar-nav .nav-link::after {
    bottom: 2px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 56px 0;
	overflow-x: hidden;
	
  }

  .carousel-item img {
    height: 320px;
  }

  .carousel-caption-custom h1 {
    font-size: 1.5rem;
  }

  .carousel-caption-custom p {
    font-size: 0.85rem;
  }

  .stats-bar .row>div:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .top-bar .d-md-flex {
    display: none !important;
  }

  .about-img-wrap {
    padding: 0 0 24px 18px;
  }

  .about-badge {
    padding: 12px 16px;
  }

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

@media (max-width: 575.98px) {

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 22px;
    font-size: 0.88rem;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 22px 16px;
  }

  .footer {
    padding: 40px 0 0;
  }
}

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

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

/* Call Button */
.call-btn {
  background: #007bff;
}

.call-btn:hover {
  background: #0056b3;
  transform: scale(1.1);
}

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

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
}
@media(max-width:374px)
{
	.navbar-brand{
		margin-right:0px;
	}
	
}