/* ================= ROOT ================= */
:root {
  --primary: #22c55e;        /* main green */
  --primary-dark: #16a34a;
  --secondary: #dcfce7;
  --dark: #0f172a;
  --muted: #64748b;
  --gradient: linear-gradient(135deg, #22c55e, #4ade80);
}
.logo-img {
  height: 42px;
  width: auto;
}
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}

@media (max-width: 768px) {
  .logo-img {
    height: 36px;
  }
}
/* ===== Navbar Scroll Effect ===== */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-link {
  color: #0f172a !important;
}

/* ================= GLOBAL ================= */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: var(--dark);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= NAVBAR ================= */
.glass-nav {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e5e7eb;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
}

.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
}

/* ================= BUTTONS ================= */
.btn {
  border-radius: 999px; /* SUPER CURVY */
  font-weight: 700;
  padding: 14px 32px;
}

.btn-primary {
  background: var(--gradient);
  border: none;
  color: #fff;
  box-shadow: 0 12px 30px rgba(34,197,94,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(34,197,94,0.45);
}

.btn-outline-dark {
  border: 2px solid var(--dark);
}

/* ================= HERO ================= */
.hero-section {
  min-height: 100vh;
  padding-top: 140px;

  /* IMAGE + GREEN OVERLAY */
  background:
    linear-gradient(
      /* rgba(34, 197, 94, 0.85), */
      rgba(34, 197, 94, 0.85)
    ),
    url('../../bg.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section {
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}


.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 20px;
}

/* ================= QUERY CARD ================= */
.glass-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.glass-card h5 {
  font-weight: 800;
}

/* ================= INPUTS ================= */
.form-control, select {
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

/* ================= FEATURES ================= */
.feature-card {
  background: #fff;
  border-radius: 26px;
  padding: 35px 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-card:hover {
  transform: translateY(-12px);
  background: var(--gradient);
  color: #fff;
}

.feature-card:hover i {
  color: #fff;
}

/* ================= STATS ================= */
.stat-card {
  background: #fff;
  border-radius: 26px;
  padding: 40px 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

.stat-card h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
}

/* ================= TESTIMONIAL ================= */
.testimonial-card {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

/* ================= CTA ================= */
.cta-section {
  background: var(--gradient);
  padding: 90px 20px;
  color: #fff;
  text-align: center;
}

/* ================= FOOTER ================= */
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 80px 0 40px;
}

.footer h5, .footer h6 {
  color: #fff;
}
/* ================= QUERY MODAL ================= */
.query-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.query-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.query-modal-content {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  animation: scaleIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* ================= FOOTER ================= */
.site-footer {
  background: #ffffff;
  padding: 90px 0 30px;
  border-top: 1px solid #e5e7eb;
}

.brand-name {
  font-weight: 800;
  font-size: 1.3rem;
}

.footer-text {
  font-size: 14px;
  color: #64748b;
  margin: 15px 0;
}

.verified-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: #ecfdf5;
  color: #16a34a;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #475569;
}

.footer-links a {
  color: #475569;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: #64748b;
  margin-right: 10px;
  text-decoration: none;
}

.back-top {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-left: 10px;
}
/* ================= CLEAN FOOTER ================= */
.footer-clean {
  /* background: #f8fafc; */
  padding: 90px 0 30px;
  border-top: 1px solid #e5e7eb;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.4rem;
}

.footer-brand span {
  color: var(--primary);
}

.footer-desc {
  font-size: 14px;
  color: #64748b;
  margin: 14px 0;
}

.footer-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  background: #ecfdf5;
  padding: 6px 14px;
  border-radius: 20px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}

.footer-list a {
  color: #475569;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--primary);
}

.footer-contact {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}

.footer-social {
  margin-top: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  border-radius: 50%;
  /* background: #e2e8f0; */
  color: #334155;
  font-size: 14px;
  transition: 0.25s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== bottom bar ===== */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}

.footer-legal a {
  font-size: 13px;
  color: #64748b;
  margin-right: 12px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-legal button {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
}
/* ================= MOBILE NAVBAR FIX ================= */
@media (max-width: 768px) {

  .navbar {
    background: #ffffff !important;
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .navbar-brand img {
    height: 36px;
  }

  .navbar-toggler {
    border: none;
    padding: 6px 10px;
  }

  .navbar-collapse {
    background: #ffffff;
    border-radius: 16px;
    margin-top: 12px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

  .nav-link {
    color: #0f172a !important;
    font-weight: 700;
    padding: 10px 0;
  }

  .navbar .btn {
    width: 100%;
    margin-top: 10px;
  }
}
/* ================= MOBILE HERO FIX ================= */
@media (max-width: 768px) {

  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: 14px;
    margin: 14px auto 0;
    opacity: 0.95;
  }

  .hero-section .btn {
    width: 100%;
    margin-bottom: 12px;
  }


}
.mobile-cta {
  background: #ffffff;
  color: #0f172a;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.mobile-cta p {
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-highlight {
  color: #ffffff;
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 12px;
  display: inline-block;
}
/* ================= MOBILE HERO FORM FIX ================= */
@media (max-width: 768px) {

  .hero-section {
    padding-bottom: 40px;
  }

  /* Center hero content */
  .hero-section .col-lg-7 {
    text-align: center;
  }

  /* FORM CARD BEHAVIOR */
  .hero-section .col-lg-5 {
    margin-top: 30px;
  }

  .hero-section .glass-card {
    margin: 0 auto;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  }

  /* Make form feel anchored */
  .hero-section .glass-card::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 999px;
  }

  /* Reduce excessive spacing */
  .hero-title {
    margin-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 20px;
  }
}
/* ===== MOBILE FEATURE CARD POLISH ===== */
@media (max-width: 768px) {

  .feature-card {
    padding: 26px 20px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }

  .feature-card i {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .feature-card h6 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .feature-card p {
    font-size: 13px;
    opacity: 0.85;
  }

  /* subtle lift on tap */
  .feature-card:active {
    transform: scale(0.98);
  }
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 10px;
  }

  .section .row {
    margin-top: 28px !important;
  }
}
@media (max-width: 768px) {

  .stat-card {
    padding: 32px 20px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  }

  .stat-card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
  }

  .stat-card p {
    font-size: 13px;
    opacity: 0.8;
  }
}
/* ================= SERVICE AREA ================= */

.area-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.area-pill {
  background: #f1f5f9;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-pill i {
  color: var(--primary);
}

.review-box {
  background: #f5f3ff;
  padding: 18px;
  border-radius: 16px;
}

.review-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px; /* height of navbar */
}

.map-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* MOBILE POLISH */
@media (max-width: 768px) {

  .map-card iframe {
    height: 280px;
  }

  .area-card {
    padding: 24px;
  }

}
button:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

```css
/* =========================================================
   ðŸ”¥ PREMIUM UI REDESIGN EXTENSION (SAFE ADD-ON)
   Paste at END of your existing style.css
========================================================= */


/* ===== GLOBAL POLISH ===== */
body{
  background:linear-gradient(180deg,#f8fafc,#eef2ff);
}

.section{
  position:relative;
}

/* soft section divider glow */
.section::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:4px;
  background:linear-gradient(90deg,#4f46e5,#22c55e);
  border-radius:999px;
  opacity:.12;
}


/* ===== NAVBAR PREMIUM ===== */
.navbar{
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.75)!important;
  border-bottom:1px solid rgba(0,0,0,.04);
}

.navbar.scrolled{
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}


/* ===== HERO UPGRADE ===== */
.hero-section{
  background:
    linear-gradient(135deg,rgba(79,70,229,.92),rgba(34,197,94,.92)),
    url('../../bg.png');
  background-size:cover;
  background-position:center;
}

/* floating gradient glow */
.hero-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#ffffff22,transparent);
  top:-200px;
  right:-120px;
}

.hero-section::after{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:radial-gradient(circle,#ffffff22,transparent);
  bottom:-150px;
  left:-120px;
}


/* ===== HERO BUTTONS ===== */
.hero-btn{
  backdrop-filter:blur(10px);
  border-radius:16px;
  font-weight:800;
  box-shadow:0 14px 40px rgba(0,0,0,.18);
}

.hero-btn:hover{
  transform:translateY(-4px) scale(1.02);
}


/* ===== GLASS CARD ENHANCED ===== */
.glass-card{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}


/* ===== FEATURE CARDS 3D ===== */
.feature-card{
  position:relative;
  overflow:hidden;
}

.feature-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#4f46e5,#22c55e);
  opacity:0;
  transition:.4s;
}

.feature-card:hover::before{
  opacity:1;
}

.feature-card *{
  position:relative;
  z-index:2;
}


/* ===== STATS GLOW ===== */
.stat-card{
  position:relative;
}

.stat-card::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:26px;
  background:linear-gradient(135deg,#4f46e5,#22c55e);
  z-index:-1;
  opacity:0;
  transition:.4s;
}

.stat-card:hover::after{
  opacity:.15;
}


/* ===== TESTIMONIAL POLISH ===== */
.testimonial-card{
  border:1px solid #eef2ff;
  transition:.3s;
}

.testimonial-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(0,0,0,.12);
}


/* ===== CTA GLASS ===== */
.cta-section{
  position:relative;
  overflow:hidden;
}

.cta-section::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle,#ffffff22,transparent);
  top:-200px;
  right:-200px;
}


/* ===== FOOTER PREMIUM ===== */
.footer-clean{
  background:linear-gradient(180deg,#020617,#020617);
}

.footer-clean a:hover{
  color:#22c55e;
}


/* ===== FLOAT BUTTONS ===== */
.float-btn{
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.float-btn:hover{
  transform:scale(1.12) rotate(3deg);
}


/* ===== QUERY MODAL UPGRADE ===== */
.query-modal-content{
  box-shadow:0 40px 120px rgba(0,0,0,.35);
  border-radius:26px;
}


/* ===== AREA CARDS ===== */
.area-card{
  transition:.3s;
}

.area-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(0,0,0,.12);
}


/* ===== MAP CARD ===== */
.map-card{
  border:1px solid #eef2ff;
  transition:.3s;
}

.map-card:hover{
  transform:scale(1.01);
}


/* ===== MOBILE MICRO-INTERACTIONS ===== */
@media(max-width:768px){

.feature-card:active,
.stat-card:active,
.testimonial-card:active{
  transform:scale(.97);
}

}


/* ===== SCROLLBAR PREMIUM ===== */
::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(#4f46e5,#22c55e);
  border-radius:999px;
}

::-webkit-scrollbar-track{
  background:#f1f5f9;
}
```
```css
/* ===================================================
   HERO UI REDESIGN FIX
=================================================== */

/* Remove banding → smooth gradient */
.hero-section{
  background:
    radial-gradient(circle at 20% 30%, #22c55e 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, #16a34a 0%, transparent 40%),
    linear-gradient(135deg,#16a34a,#22c55e);
}

/* Add premium overlay glow */
.hero-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(0,0,0,.18),transparent);
}

/* Heading polish */
.hero-title{
  font-weight:900;
  letter-spacing:-1px;
  text-shadow:0 8px 30px rgba(0,0,0,.25);
}

/* Gradient highlight fix */
.hero-gradient{
  background:linear-gradient(135deg,#60a5fa,#2563eb);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Subtitle contrast */
.hero-subtitle{
  color:#e5e7eb!important;
  font-size:1.05rem;
}

/* Badge glow */
.hero-badge{
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}


/* ===================================================
   FORM CARD PREMIUM
=================================================== */

.glass-card{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(20px);
  border-radius:28px;
  box-shadow:0 40px 100px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.4);
}

/* Inputs active feel */
.glass-card .form-control,
.glass-card select{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  transition:.25s;
}

.glass-card .form-control:focus{
  background:#fff;
  border-color:#22c55e;
  box-shadow:0 0 0 4px rgba(34,197,94,.18);
}


/* ===================================================
   BUTTON HIERARCHY FIX
=================================================== */

.hero-btn-blue{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  box-shadow:0 16px 40px rgba(37,99,235,.45);
}

.hero-btn-green{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  box-shadow:0 16px 40px rgba(34,197,94,.45);
}

.hero-btn:hover{
  transform:translateY(-4px) scale(1.03);
}


/* ===================================================
   FLOAT BUTTONS DEPTH
=================================================== */

.float-btn{
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.float-btn:hover{
  transform:scale(1.12);
}
```
```css
/* =====================================================
   PREMIUM NAVBAR REDESIGN
===================================================== */

/* NAVBAR BASE */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:9999;

  background:rgba(255,255,255,0.65) !important;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(0,0,0,0.05);
  transition:all .35s ease;
}

/* SCROLL EFFECT */
.navbar.scrolled{
  background:#ffffff !important;
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

/* CONTAINER SPACING */
.navbar .container{
  padding-top:4px;
  padding-bottom:4px;
}

/* LOGO */
.logo-img{
  height:46px;
  transition:.3s;
}

.navbar.scrolled .logo-img{
  height:42px;
}

/* NAV LINKS */
.nav-link{
  font-weight:600;
  color:#0f172a !important;
  position:relative;
  padding:8px 14px !important;
  transition:.25s;
}

/* UNDERLINE HOVER */
.nav-link::after{
  content:"";
  position:absolute;
  left:14px;
  bottom:2px;
  width:0%;
  height:2px;
  background:linear-gradient(90deg,#22c55e,#4ade80);
  transition:.3s;
  border-radius:999px;
}

.nav-link:hover::after{
  width:60%;
}

/* ACTIVE LINK */
.nav-link.active{
  color:#16a34a !important;
}


/* =====================================================
   CTA BUTTON FIX
===================================================== */

.navbar .btn-primary{
  background:linear-gradient(135deg,#22c55e,#16a34a);
  border:none;
  padding:10px 22px;
  font-weight:700;
  border-radius:999px;
  box-shadow:0 10px 30px rgba(34,197,94,.35);
  transition:.3s;
}

.navbar .btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 40px rgba(34,197,94,.45);
}


/* =====================================================
   MOBILE NAVBAR FIX
===================================================== */

@media(max-width:768px){

.navbar{
  background:#ffffff !important;
  backdrop-filter:none;
}

.navbar-collapse{
  background:#ffffff;
  padding:18px;
  border-radius:18px;
  margin-top:12px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.nav-link{
  padding:12px 4px !important;
  font-weight:700;
}

.navbar .btn-primary{
  width:100%;
  margin-top:10px;
}

}


/* =====================================================
   SCROLL JS SUPPORT
===================================================== */
```
