/* :root {
    --primary: hsl(244, 100%, 51%);
    --secondary: hsl(244, 100%, 51%);
    --accent: hsl(244, 100%, 51%);
    --dark: #263238;
    --light: #ECEFF1;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.hero-section {
    background: --primary;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: --primary;
    z-index: 0;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(38, 50, 56, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-light:hover {
    color: var(--dark);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-card .quote-icon {
    font-size: 60px;
    color: rgba(76, 175, 80, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.location-card {
    border-left: 4px solid var(--primary);
}

.tool-card .badge {
    background-color: var(--primary);
}


.cta-section {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 1) 0%, rgba(var(--bs-primary-rgb), 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
  background-size: cover;
  opacity: 0.1;
}

.floating-tools {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-tools i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 24px;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}
blog-hero {
    background-color: #f8f9fa;
    background-image: linear-gradient(to bottom, rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.7)), 
                      url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -1px; 
}

.blog-hero h1 {
    color: #212529;
}

.blog-hero p {
    color: #495057;
}


.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}


.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}


.newsletter input::placeholder {
    color: #adb5bd;
}


footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #adb5bd !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


.nav-link.active {
    position: relative;
    color: #0d6efd !important;
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: #0d6efd;
}


@media (max-width: 767.98px) {
    .blog-hero {
        text-align: center;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .blog-hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header .btn-link {
        margin-top: 1rem;
    }
}

.gearease-registration {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
  }
  
  .registration-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }
  
  .registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ff7b00 0%, #ff9500 50%, #ffaa00 100%);
  }
  
 
  .progress-steps {
    position: relative;
  }
  
  .progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
  }
  
  .step {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
  }
  
  .step.active .step-circle {
    background-color: #0d6efd;
    color: white;
  }
  
  .step-label {
    font-size: 0.875rem;
    color: #6c757d;
  }
  
  .step.active .step-label {
    color: #0d6efd;
    font-weight: 500;
  }
  
 
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  

  .user-type-selector .btn {
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
  
  .user-type-selector .btn-check:checked + .btn {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
  }
  
  .user-type-selector .btn i {
    color: #6c757d;
  }
  
  .user-type-selector .btn-check:checked + .btn i {
    color: #0d6efd;
  }
  

  .document-upload-card, .payment-method-card {
    border: 1px dashed #dee2e6;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
  }
  
  .dropzone {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dropzone:hover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
  }
  
  
  .password-strength .progress {
    background-color: #e9ecef;
  }
  
  .password-strength .progress-bar {
    transition: width 0.3s ease;
  }
  
  
  .success-animation {
    margin: 0 auto 30px;
  }
  
  .checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    margin: 0 auto;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  }
  
  .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  @keyframes stroke {
    100% { stroke-dashoffset: 0; }
  }
  
  @keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
  }
  
  @keyframes fill {
    100% { box-shadow: inset 0 0 0 100px rgba(75, 183, 27, 0); }
  }

  .gearease-contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #ff7b00 0%, #ff9500 50%, #ffaa00 100%);
}
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0d6efd;
    font-size: 24px;
}
.contact-info-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}
.contact-info-item:hover {
    transform: translateY(-5px);
}
.contact-info-item h5 {
    margin-bottom: 10px;
}
.contact-info-item p {
    margin-bottom: 0;
}
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(255, 149, 0, 0.25);
}
.btn-primary {
    background-color: #0d6efd;
    border-color:rgb(13, 0, 255);
}
.btn-primary:hover {
    background-color:hsl(227, 100.00%, 50.00%);
    border-color: #ff7b00;
}
.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
} */

:root {
  --primary: hsl(244, 100%, 51%);
  --secondary: hsl(244, 100%, 51%);
  --accent: hsl(244, 100%, 51%);
  --dark: #263238;
  --light: #ECEFF1;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

strong, b {
  font-weight: 500;
}

.hero-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--primary);
  z-index: 0;
}

.navbar {
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar.scrolled {
  background-color: rgba(38, 50, 56, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline-light:hover {
  color: var(--dark);
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
  border-radius: 2px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-card .quote-icon {
  font-size: 60px;
  color: rgba(76, 175, 80, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
}

.location-card {
  border-left: 4px solid var(--primary);
}

.tool-card .badge {
  background-color: var(--primary);
  font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, rgba(var(--primary), 1) 0%, rgba(var(--primary), 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
  background-size: cover;
  opacity: 0.1;
}

.floating-tools {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-tools i {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}

.blog-hero {
  background-color: #f8f9fa;
  background-image: linear-gradient(to bottom, rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.7)), 
                  url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -1px;
}

.blog-hero h1 {
  color: #212529;
  font-weight: 700;
}

.blog-hero p {
  color: #495057;
}

/* Card Styles */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.5rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Badge Styles */
.badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}

/* Featured Posts Section */
.section-header h2 {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

/* Newsletter Section */
.newsletter input::placeholder {
  color: #adb5bd;
  font-family: 'Montserrat', sans-serif;
}

/* Footer Styles */
footer a {
  transition: color 0.3s ease;
  font-weight: 500;
}

footer a:hover {
  color: #adb5bd !important;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Active Nav Link */
.nav-link.active {
  position: relative;
  color: var(--primary) !important;
  font-weight: 500;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background-color: var(--primary);
}

/* Registration Page Styles */
.gearease-registration {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
}

.registration-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.registration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #ff7b00 0%, #ff9500 50%, #ffaa00 100%);
}

.step-label {
  font-weight: 500;
}

.user-type-selector .btn {
  font-weight: 500;
}

/* Contact Page Styles */
.gearease-contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
}

.contact-info-item h5 {
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .blog-hero {
      text-align: center;
      padding-top: 3rem;
      padding-bottom: 3rem;
  }
  
  .blog-hero .btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
  }
  
  .section-header {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .section-header .btn-link {
      margin-top: 1rem;
  }
  
  h1 {
      font-size: 2rem;
  }
  
  h2 {
      font-size: 1.75rem;
  }
}