/* ==================== Reset & Base Styles ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --primary: #00d4aa;
  --primary-dark: #00b894;
  --secondary: #ff6b9d;
  --secondary-dark: #e05282;
  --accent: #6c5ce7;
  --dark: #01312f;
  --dark-light: #023834;
  --light: #f8f9fa;
  --white: #ffffff;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b9d 0%, #e05282 100%);
  --gradient-accent: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  --gradient-hero: linear-gradient(135deg, #01312f 0%, #023834 50%, #01312f 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 30px rgba(0, 212, 170, 0.3);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background: var(--light);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==================== Navigation ==================== */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.custom-navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.logo {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 8px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.btn-cta {
  background: var(--gradient-secondary);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
  color: white;
}

/* ==================== Hero Section ==================== */
.hero-section {
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%);
  animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-pill {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(0, 212, 170, 0.15);
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-secondary);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.hero-buttons .btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 212, 170, 0.5);
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

/* Hero Image with Floating Elements */
.hero-image-wrapper {
  position: relative;
  height: 500px;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pulse-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 170, 0.3);
}

.pulse-1 {
  width: 200px;
  height: 200px;
  animation: pulse-animation 3s ease-in-out infinite;
}

.pulse-2 {
  width: 300px;
  height: 300px;
  animation: pulse-animation 3s ease-in-out infinite 1s;
}

.pulse-3 {
  width: 400px;
  height: 400px;
  animation: pulse-animation 3s ease-in-out infinite 2s;
}

@keyframes pulse-animation {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 2rem;
  color: var(--primary);
}

.card-label {
  font-size: 0.85rem;
  color: #666;
}

.card-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.floating-card-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 50%;
  right: 5%;
  animation-delay: 1s;
}

.floating-card-3 {
  bottom: 10%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ==================== Emergency Banner ==================== */
.emergency-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.emergency-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--primary);
  transition: transform 0.3s ease;
}

.emergency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.emergency-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.emergency-title i {
  color: var(--secondary);
}

.emergency-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-emergency {
  background: var(--gradient-secondary);
  border: none;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  transition: all 0.3s ease;
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
  color: white;
}

.btn-outline-emergency {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-emergency:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ==================== Sections ==================== */
.features-section,
.services-section,
.faq-section,
.contact-section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.badge-pill-dark {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== Features ==================== */
.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.feature-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-text {
  color: #666;
  line-height: 1.8;
}

/* ==================== Services ==================== */
.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.9), rgba(0, 184, 148, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay i {
  font-size: 4rem;
  color: white;
  animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.service-content {
  padding: 14px;
}

.service-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* ==================== Stats Section ==================== */
.stats-section {
  position: relative;
  padding: 100px 0;
  background: url('img/bg/patent.jpeg') center/cover;
  background-attachment: fixed;
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(1, 49, 47, 0.95), rgba(2, 56, 52, 0.95));
}

.stats-card {
  position: relative;
  z-index: 2;
}

.stats-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-secondary);
  margin-bottom: 10px;
}

.stats-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ==================== FAQ ==================== */
.accordion-item {
  border: none;
  background: white;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-button {
  background: white;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px 30px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 20px 30px;
  color: #666;
  line-height: 1.8;
}

/* ==================== Contact ==================== */
.contact-section {
  background: var(--gradient-hero);
}

.contact-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 60px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-item h5 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.contact-link {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  color: white;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-input {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
  outline: none;
}

.contact-form .btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  padding: 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

/* ==================== Footer ==================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer-logo {
  max-height: 60px;
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-emergency {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-emergency i {
  font-size: 24px;
  color: var(--primary);
}

.emergency-label {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.emergency-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-secondary);
}

.emergency-number:hover {
  color: var(--primary-dark);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 30px;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ==================== Scroll to Top ==================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* ==================== Responsive ==================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-image-wrapper {
    margin-top: 50px;
    height: 400px;
  }
  
  .floating-card {
    padding: 15px 20px;
  }
  
  .card-value {
    font-size: 1.1rem;
  }
  
  .contact-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-image-wrapper {
    display: none;
  }
  
  .contact-wrapper {
    padding: 30px 20px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}
.bottom>a{
  text-decoration: none;
  color: white;
  font-weight: 800;
}
.footer-links>li>a{
  text-decoration: none;
}

.fix-icon {
	display: inline-block;
	position: fixed;
	bottom: 90px;
	left: 10px;
	z-index: 999999;
  }
  
  #fix-icon {
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-name: example;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
  }
  
  @-webkit-keyframes mover {
	0% {
	  transform: translateY(0);
	}
  
	100% {
	  transform: translateY(-20px);
	}
  }
  
  .fix-icon-item img {
	width: 55px !important;
	height: 55px !important;
	background:
	#001f3f;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
  }
  
  .fix-icon-whataap {
	display: inline-block;
	position: fixed;
	bottom: 20px;
	left: 10px;
	z-index: 999999;
	transition: all0.5s ease-in-out;
	width: 55px !important;
	height: 55px !important;
  }
  
  .fix-icon-whataap-item img {
	border-radius: 50%;
	box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
	transition: box-shadow .2s;
	cursor: pointer;
	overflow: hidden;
	width: 55px !important;
	height: 55px !important;
	background:
	  #25d366 !important;
  }
  .top-emergency-bar{
  position: fixed;
  top: 0;
  width: 100%;
  background: #e60023;   /* unchanged */
  color: #fff;           /* unchanged */
  padding: 10px 0;        /* unchanged */
  z-index: 99999;        /* unchanged */
  font-size: 14px;       /* unchanged */
  font-weight: 500;      /* unchanged */
}

.top-emergency-bar a{
  color:#fff;            /* unchanged */
  text-decoration:none;  /* unchanged */
  font-weight:600;       /* unchanged */
}

.top-emergency-bar i{
  color:#fff;            /* unchanged */
}

.top-contacts a:hover{
  text-decoration:underline; /* unchanged */
}

/* Push body down so navbar doesn't hide */
body{
  padding-top:40px; /* unchanged */
}

/* If your navbar is fixed/sticky, keep it below bar */
.navbar{
  top:40px !important;
}

/* ✅ RESPONSIVE FIX (NO STYLE CHANGE, ONLY LAYOUT) */
@media (max-width: 768px){

  .top-emergency-bar{
    font-size: 13px; /* tiny adjustment for fit */
  }

  /* Make the container wrap nicely */
  .top-emergency-bar .container{
    gap: 6px;
    justify-content: center !important;
  }

  /* Location full width and centered */
  .top-location{
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
  }

  /* Contacts centered + wrap if needed */
  .top-contacts{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Bigger tap area without changing “look” */
  .top-contacts a{
    padding: 4px 6px;   /* improves tapping */
    line-height: 1.2;
  }

  /* Hide the "|" divider cleanly on wrap */
  .top-contacts span{
    display: none;
  }

  /* More space for fixed bar on phone */
  body{
    padding-top: 58px;  /* prevents overlap when bar becomes 2 lines */
  }

  .navbar{
    top:58px !important;
  }
}
.padding{
  padding:180px 0;
  padding-bottom: 80px;
  background:var(--gradient-hero)
}