/* Custom styles for SmartERP landing page */
.bg-light-pink {
    background-color: #FFC0CB;
}
.text-dark-pink {
    color: #C71585;
}
/* Navbar */
.navbar {
    background-color: rgb(0, 0, 0);
}
.nav-link {
	color: rgb(15, 188, 58);
}
.navbar-toggler-icon {
    color: rgb(15, 188, 58) !important;
}
  
/* Header */
header {
    background-image: url('public/img/background.jpg');
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 7rem 0;
}

header h1 {
    /* font-family: 'Courier New', Courier, monospace; */
    /* font-weight: bold; */
    font-size: 5rem;
    margin-bottom: 2rem;
}

header p {
    font-size: 1.5rem;
}



/* Features section */
#features {
    background-color: #f8f9fa;
    padding: 0 0;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1.2rem;
}

/* Contact section */
#contact {
    padding: 0rem 0;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 5px;
}

.contact-form h2 {
    margin-bottom: 2rem;
}

.contact-form label {
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-form textarea {
    resize: none;
}

/* Footer */
footer {
    background-color: rgb(0, 0, 0);
    color: rgb(10, 108, 34);
    padding: 1rem 0;
}

footer p {
    font-size: 1.2rem;
    text-align: center;
}
/* slider */
.swiper-container {
    margin: 0 auto;
    width: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide content vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }
 /* Set max width and height for images */
 .swiper-slide-img {
    max-width: 100%;
    max-height: 100%;
  }
      