/* ==============================================
   SOFACARE – Main Stylesheet
   Theme: Yellow (#f5c518) | Black (#1a1a1a) | White
   Font: Playfair Display (headings) | Poppins (body)
   ============================================== */

/* ---- Root Variables ---- */
:root {
  --yellow: #f5c518;
  --yellow-dark: #d4a800;
  --black: #1a1a1a;
  --black-soft: #2b2b2b;
  --white: #ffffff;
  --light-bg: #f8f6f0;
  --text-muted-sc: #6b6b6b;
  --border-sc: #e8e2d5;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ---- Utility ---- */
.text-yellow { color: var(--yellow) !important; }
.bg-yellow   { background-color: var(--yellow) !important; }
.bg-light-sc { background-color: var(--light-bg) !important; }

.section-padding { padding: 90px 0; }

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.section-label.light { color: var(--yellow); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-sub {
  color: var(--text-muted-sc);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
}

.title-line {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ==============================================
   NAVBAR
   ============================================== */
#mainNavbar {
  background: rgb(255 255 255 / 90%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--yellow);
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1050;
}

.logo-img {
  /* filter: brightness(0) invert(1); */
  height: 80px;
  transition: var(--transition);
}

#mainNavbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

#mainNavbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: var(--yellow) !important;
}

#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
  width: 70%;
}

.btn-phone {
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 2px solid var(--yellow);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-phone:hover {
  background: transparent;
  color: var(--yellow) !important;
}

/* ==============================================
   HERO SLIDER
   ============================================== */
.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-1 {
  background-image: url('../images/slide-2.jpg');
  background-color: #1a1a1a;
}
.slide-2 {
  background-image: url('../images/slide-1.jpg');
  background-color: #1a1a1a;
}
.slide-3 {
  background-image: url('../images/slide-3.jpg');
  background-color: #1a1a1a;
}

/* Decorative yellow glow over the image */
.slide-1::before,
.slide-2::before,
.slide-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 75%, rgba(245,197,24,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.carousel-item.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 20px 0;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.btn-hero {
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--yellow);
  transition: var(--transition);
  display: inline-block;
}
.btn-hero:hover {
  background: transparent;
  color: var(--yellow) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.3);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow) !important;
  transform: translateY(-2px);
}

/* Carousel animation */
.carousel-item {
  transition: opacity 0.8s ease;
}
.carousel-item .hero-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s 0.3s ease, transform 0.7s 0.3s ease;
}
.carousel-item.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-img-wrap {
  position: relative;
  padding: 20px 20px 40px 0;
}

.about-img-box {
  position: relative;
}

.about-main-img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--yellow) 0%, var(--black) 100%);
}

/* Fallback decorative box when image is missing */
.about-img-box::before {
  content: 'SOFACARE';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5c518 0%, #2b2b2b 100%);
  z-index: -1;
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -10px;
}

.about-badge {
  background: var(--yellow);
  color: var(--black);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}

.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-txt {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

.about-stat {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 4px;
}

.section-desc {
  color: var(--text-muted-sc);
  margin-bottom: 14px;
}

/* ==============================================
   SERVICES SECTION
   ============================================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border-sc);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(245,197,24,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--yellow);
}

.service-icon {
  font-size: 1.7rem;
  color: var(--yellow);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--black) !important;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  font-family: 'Poppins', sans-serif;
}

.service-desc {
  color: var(--text-muted-sc);
  font-size: 14px;
  margin-bottom: 16px;
}

.service-link {
  color: var(--yellow-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.service-link:hover { color: var(--black); gap: 4px; }

/* Service card dual-button group */
.service-btn-group {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-svc-call,
.btn-svc-enquire {
  flex: 1 1 0;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

/* Call Now – outlined yellow */
.btn-svc-call {
  background: transparent;
  border-color: var(--yellow);
  color: var(--yellow-dark);
}
.btn-svc-call:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(245,197,24,0.3);
}

/* Enquire Now – solid black */
.btn-svc-enquire {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-svc-enquire:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

/* ==============================================
   PRODUCTS SECTION
   ============================================== */
.product-tabs {
  gap: 8px;
  margin-bottom: 30px;
}

.product-tabs .nav-link {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--border-sc);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.product-tabs .nav-link:hover {
  border-color: var(--yellow);
  color: var(--yellow-dark);
}

.product-tabs .nav-link.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(245,197,24,0.3);
}

.product-item {
  background: var(--white);
  border: 1.5px solid var(--border-sc);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
  display: flex;
  align-items: center;
}

.product-item:hover {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

/* ==============================================
   WHY CHOOSE US SECTION
   ============================================== */
.why-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background: rgba(245,197,24,0.08);
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-6px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(245,197,24,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--yellow);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--yellow);
  color: var(--black);
}

.why-card h5 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin: 0;
}

/* ==============================================
   GALLERY SECTION
   ============================================== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--yellow);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ==============================================
   CONTACT SECTION
   ============================================== */
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border-sc);
  height: 100%;
  box-shadow: var(--shadow);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,197,24,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-sc);
  display: block;
  margin-bottom: 2px;
}

.contact-info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--black);
  transition: var(--transition);
}
.contact-info-item a:hover { color: var(--yellow-dark); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border-sc);
  box-shadow: var(--shadow);
}

.sc-input {
  border-radius: 8px !important;
  border: 1.5px solid var(--border-sc) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  transition: var(--transition) !important;
  font-family: 'Poppins', sans-serif !important;
}

.sc-input:focus {
  border-color: var(--yellow) !important;
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15) !important;
  outline: none !important;
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn-primary-sc {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--yellow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary-sc:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer-section {
  background: #111111;
  color: rgba(255,255,255,0.75);
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 300px;
}

.footer-heading {
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--yellow);
  font-size: 1.1rem;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--yellow); }

.footer-divider { border-color: rgba(255,255,255,0.08); margin: 0; }

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

/* ==============================================
   FLOATING BUTTONS
   ============================================== */
.float-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.float-whatsapp {
  background: #25d366;
  color: var(--white);
  bottom: 140px;
  right: 22px;
}
.float-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: scale(1.1);
}

.float-call {
  background: var(--yellow);
  color: var(--black);
  bottom: 80px;
  right: 22px;
}
.float-call:hover {
  background: var(--yellow-dark);
  color: var(--black);
  transform: scale(1.1);
}

.float-top {
  background: var(--black);
  color: var(--white);
  bottom: 22px;
  right: 22px;
}
.float-top:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-4px);
}

/* Pulse animation for call button */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,197,24,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(245,197,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,197,24,0); }
}
.float-call { animation: pulse-ring 2s infinite; }

/* ==============================================
   ENQUIRE NOW TAB & MODAL
   ============================================== */
.enquire-tab {
  position: fixed;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  z-index: 8999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px rgba(0,0,0,0.18);
  user-select: none;
}

.enquire-tab:hover,
.enquire-tab.visible {
  right: -62px;
}

.enquire-modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}

.enquire-modal-header {
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--yellow);
  padding: 20px 24px;
}

/* ==============================================
   RESPONSIVE ADJUSTMENTS
   ============================================== */
@media (max-width: 991.98px) {
  .section-padding { padding: 60px 0; }
  .hero-slide { height: 80vh; min-height: 500px; }
  .hero-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .about-img-wrap { padding: 0; margin-bottom: 20px; }
  .about-badge-box { right: 10px; }
  .contact-form-box { padding: 28px 20px; }
  .contact-info-box { padding: 28px 20px; }
}

@media (max-width: 767.98px) {
  .hero-slide { height: 75vh; min-height: 480px; }
  .hero-title { font-size: 1.9rem; }
  .hero-desc { font-size: 14px; }
  .btn-hero, .btn-hero-outline { padding: 11px 22px; font-size: 13px; }
  .product-tabs { gap: 6px; }
  .product-tabs .nav-link { padding: 7px 16px; font-size: 12px; }
  .float-whatsapp { bottom: 130px; right: 14px; width: 46px; height: 46px; font-size: 1.2rem; }
  .float-call { bottom: 76px; right: 14px; width: 46px; height: 46px; font-size: 1.2rem; }
  .float-top { bottom: 18px; right: 14px; width: 46px; height: 46px; font-size: 1.1rem; }
  .enquire-tab { right: -85px; font-size: 11px; padding: 8px 18px; }
  .enquire-tab:hover { right: -70px; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 575.98px) {
  .hero-badge { font-size: 10px; }
  .hero-title { font-size: 1.6rem; }
  .section-title { font-size: 1.7rem; }
  .service-card { padding: 26px 18px; }
  .why-card { padding: 28px 18px; }
}

/* ==============================================
   SCROLL SPY ACTIVE STATE
   ============================================== */
#mainNavbar .nav-link.active-scroll {
  color: var(--yellow) !important;
}
#mainNavbar .nav-link.active-scroll::after {
  width: 70%;
}

/* ==============================================
   FORM VALIDATION STATES
   ============================================== */
.sc-input.is-invalid {
  border-color: #dc3545 !important;
}
.sc-input.is-valid {
  border-color: #25d366 !important;
}

/* Alert after form submit */
.form-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  margin-top: 12px;
}
.form-alert.success {
  background: rgba(37,211,102,0.1);
  border: 1px solid #25d366;
  color: #155724;
  display: block;
}
.form-alert.error {
  background: rgba(220,53,69,0.1);
  border: 1px solid #dc3545;
  color: #721c24;
  display: block;
}




.navbar-toggler{
        background-color: rgb(0 0 0 / 100%) !important;
}