/* ============================================
   DHARMASTHALA PACKERS & MOVERS - GLOBAL CSS
   Brand Color: #012b5a | Accent: #f4a100
   ============================================ */

:root {
  --primary: #012b5a;
  --primary-dark: #011d3e;
  --primary-light: #0a3f80;
  --accent: #f4a100;
  --accent-dark: #d48900;
  --white: #ffffff;
  --light-bg: #f0f4f9;
  --text-dark: #1a1a2e;
  --text-gray: #6c757d;
  --border: #dee2e6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ====== TOPBAR ====== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar span { color: rgba(255,255,255,0.85); }
.topbar i { color: var(--accent); }
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; margin-left: 10px; transition: color 0.2s; }
.topbar a:hover { color: var(--accent); }

/* ====== NAVBAR ====== */
.main-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(1,43,90,0.12);
/*  padding: 0 0;*/
}
.logo-icon {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}
.brand-name { font-size: 17px; font-weight: 900; color: var(--primary); line-height: 1.1; letter-spacing: -0.3px; }
.brand-sub { font-size: 10px; color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.navbar-nav .nav-link {
  color: var(--primary) !important;
  font-weight: 700;
  padding: 22px 15px !important;
  font-size: 16px;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover { color: var(--accent) !important; }
.navbar-nav .nav-link.active { color: var(--accent) !important; }

.btn-primary-custom {
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 800;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.3px;
}
.btn-primary-custom:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,161,0,0.4);
}

/* ====== HERO SLIDER ====== */
.carousel { height: 470px; }
.carousel-inner, .carousel-item { height: 100%; }

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-1 {
  background-image: linear-gradient(135deg, #001a3a 0%, #012b5a 40%, #0a4080 100%);
}
.slide-1::before {
  content: '';
  position: absolute;
  right: -50px; top: 0; bottom: 0;
  width: 55%;
  background: url('images/banner/slide-1.jpg') center/cover;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
/*  opacity: 0.25;*/
opacity: 1;
}
.slide-2 {
  background-image: linear-gradient(135deg, #011d3e 0%, #023167 40%, #0d4d96 100%);
}
.slide-2::before {
  content: '';
  position: absolute;
  right: -50px; top: 0; bottom: 0;
  width: 55%;
  background: url('images/banner/slide-2.jpg') center/cover;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
/*  opacity: 0.25;*/
  opacity: 1;
}
.slide-3 {
  background-image: linear-gradient(135deg, #001528 0%, #012b5a 40%, #073d7a 100%);
}
.slide-3::before {
  content: '';
  position: absolute;
  right: -50px; top: 0; bottom: 0;
  width: 55%;
  background: url('images/banner/slide-3.jpg') center/cover;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
/*  opacity: 0.25;*/
opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
/*  background: rgba(1,43,90,0.55);*/
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(244,161,0,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns .btn { font-weight: 800; font-size: 15px; padding: 12px 28px; border-radius: 6px; }
.btn-outline-light { border-width: 2px; }

/* ====== STATS BAR ====== */
.stats-bar {
  background: var(--primary);
  padding: 0;
}
.stat-item {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== SECTION COMMONS ====== */
.section-pad { padding: 60px 0; }
.bg-light-custom { background: var(--light-bg); }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-gray);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

/* ====== SERVICE CARDS ====== */
.service-card {
  background: white;
  border-radius: 14px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.35s;
  border: 2px solid transparent;
  box-shadow: 0 2px 16px rgba(1,43,90,0.06);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(1,43,90,0.15);
}
.service-icon {
  width: 65px; height: 65px;
  background: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--accent); color: var(--primary); }
.service-card h5 { font-weight: 800; color: var(--primary); margin-bottom: 12px; font-size: 18px; }
.service-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.read-more { color: var(--accent); font-weight: 800; font-size: 13px; text-decoration: none; letter-spacing: 0.5px; }
.read-more:hover { color: var(--accent-dark); }
.read-more i { transition: transform 0.2s; }
.read-more:hover i { transform: translateX(4px); }

/* ====== WHY STRIP ====== */
.why-strip {
  background: var(--primary);
}
.text-white-75 { color: rgba(255,255,255,0.75); }
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
}
.why-card:hover { background: rgba(244,161,0,0.15); border-color: var(--accent); }
.why-card i { font-size: 24px; color: var(--accent); flex-shrink: 0; }
.why-card h6 { margin: 0; color: white; font-weight: 700; font-size: 14px; }

/* ====== PROCESS ====== */
.process-step {
  background: white;
  border-radius: 16px;
  padding: 36px 24px;
  box-shadow: 0 4px 20px rgba(1,43,90,0.08);
  position: relative;
  transition: all 0.3s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(1,43,90,0.14); }
.step-num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(1,43,90,0.06);
  line-height: 1;
  position: absolute;
  top: 10px; right: 18px;
  font-family: 'Playfair Display', serif;
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin: 0 auto 16px;
}
.process-step h6 { font-weight: 800; color: var(--primary); font-size: 16px; margin-bottom: 10px; }
.process-step p { color: var(--text-gray); font-size: 14px; line-height: 1.65; }

/* ====== TESTIMONIALS ====== */
.testimonial-section { background: var(--primary-dark); }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 50px 40px;
}
.stars { color: var(--accent); font-size: 18px; }
.testimonial-text {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.author-avatar {
  width: 54px; height: 54px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 16px;
  margin: 0 auto 12px;
}
.testimonial-author strong { color: white; font-size: 16px; }
.testimonial-author small { color: rgba(255,255,255,0.5); }

/* ====== CTA ====== */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #e08c00 100%);
/*  padding: 70px 0;*/
      padding: 45px 0;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.cta-section h2 span { color: var(--primary-dark); text-decoration: underline; }
.cta-section p { color: rgba(1,43,90,0.75); font-size: 16px; margin-bottom: 30px; }
.btn-white-custom {
  background: var(--primary);
  color: white;
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-white-custom:hover { background: var(--primary-dark); transform: translateY(-2px); color: white; }
.btn-outline-white {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 800;
  padding: 11px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline-white:hover { background: var(--primary); color: white; }

/* ====== FOOTER ====== */
.main-footer { background: #010e1f; }
.footer-brand .logo-icon { background: rgba(244,161,0,0.15); border: 1px solid rgba(244,161,0,0.3); }
.footer-brand .brand-name { color: white; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-right: 8px;
  font-size: 14px;
  transition: all 0.3s;
}
.social-links a:hover { background: var(--accent); color: var(--primary); }
.footer-heading { color: var(--accent); font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 16px; display: flex; gap: 10px; }
.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
/*  padding: 20px 0;*/
  padding: 10px 0;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
/*  padding: 80px 0 60px;*/
      padding: 40px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: white; }
.page-hero .breadcrumb { background: transparent; padding: 0; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 14px; }
.page-hero .breadcrumb-item a { color: var(--accent); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ====== ABOUT PAGE ====== */
.about-img-wrap { position: relative; }
.about-img-main { border-radius: 16px; width: 100%; object-fit: cover; }
.about-badge-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  font-weight: 900;
}
.about-badge-box .big { font-size: 40px; line-height: 1; }
.about-badge-box .small { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  margin: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.cert-badge i { color: var(--accent); font-size: 18px; }

/* ====== WHY US PAGE ====== */
.why-feature-card {
  background: white;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(1,43,90,0.07);
  border-bottom: 4px solid transparent;
  transition: all 0.35s;
  height: 100%;
}
.why-feature-card:hover { border-bottom-color: var(--accent); transform: translateY(-6px); }
.why-feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--accent);
  margin: 0 auto 20px;
}
.why-feature-card h5 { font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.why-feature-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }

.compare-table th { background: var(--primary); color: white; font-weight: 700; padding: 14px 20px; }
.compare-table td { padding: 13px 20px; font-size: 14px; vertical-align: middle; }
.compare-table .check { color: #22c55e; font-size: 16px; }
.compare-table .cross { color: #ef4444; font-size: 16px; }
.compare-table tr:nth-child(even) { background: var(--light-bg); }

/* ====== SERVICES PAGE ====== */
.service-detail-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(1,43,90,0.08);
  transition: all 0.35s;
  height: 100%;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(1,43,90,0.14); }
.service-card-header {
  background: var(--primary);
  padding: 30px 28px;
  position: relative;
}
.service-card-header .s-icon {
  width: 60px; height: 60px;
  background: rgba(244,161,0,0.15);
  border: 2px solid var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 14px;
}
.service-card-header h5 { color: white; font-weight: 800; font-size: 22px; margin: 0;text-align:center; }
.service-card-body { padding: 26px 28px; }
.service-card-body p { color: var(--text-gray); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; padding: 0; margin: 0; }
.service-features li { color: var(--text-gray); font-size: 14px; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--accent); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ====== GALLERY PAGE ====== */
.gallery-filter { margin-bottom: 36px; }
.filter-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-gray);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin: 4px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(1,43,90,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 36px; color: var(--accent); }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(1,43,90,0.9)); padding: 20px 16px 12px; color: white; font-size: 14px; font-weight: 700; }

/* ====== CONTACT PAGE ====== */
.contact-info-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 36px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.contact-icon {
  width: 50px; height: 50px;
  background: rgba(244,161,0,0.15);
  border: 1px solid var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h6 { color: rgba(255,255,255,0.6); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-weight: 700; }
.contact-info-item p { color: white; margin: 0; font-size: 14px; font-weight: 600; line-height: 1.5; }

.contact-form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(1,43,90,0.1);
}
.form-label { font-weight: 700; color: var(--primary); font-size: 14px; margin-bottom: 6px; }
.form-control, .form-select {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,43,90,0.1);
}
.btn-submit {
  background: var(--primary);
  color: white;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  width: 100%;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-submit:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }

.map-container { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(1,43,90,0.1); }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .carousel { height: 480px; }
  .hero-title { font-size: 36px; }
  .navbar-nav .nav-link { padding: 12px 8px !important; }
  .about-badge-box { right: 10px; bottom: 10px; }
}
@media (max-width: 767px) {
  .carousel { height: 420px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .section-title { font-size: 28px; }
  .topbar { display: none; }
  .stat-number { font-size: 28px; }
  .cta-section h2 { font-size: 26px; }
  .contact-form-card { padding: 24px; }
  .slide-1::before, .slide-2::before, .slide-3::before { display: none; }
}

.carousel-1{
  height: auto !important;
}



/* ===== NAVBAR RESPONSIVE FIX ===== */

.logo-img {
/*  height: 55px;*/
width: 40% !important;
  width: auto;
  display: block;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .logo-img {
    height: 130px;
    width: auto !important;
  }

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


@media (min-width: 200px) and (max-width: 767px) {
  
  .ul-mobi{
        align-items: unset !important;
  }

}


.float1{
   position: fixed;
    width: 55px;
    height: 54px;
        bottom: 95px;
    right: 30px;
    background-color: #007bff;
    color: #FFF;
    border-radius: 40px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float{
    margin-top: 12px;
    margin-left: 2px;
}

.my-float1{
    margin-top: 15px;
    margin-left: 1px;
}