@import url("https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
  --primary-color: #004c89;
  --secondary-color: #ed8023;
  --text-color: #495057;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background-color: whitesmoke !important;
}

h2 {
  color: var(--primary-color, #004c89) !important;
  font-family: "Anek Latin", sans-serif !important;
  font-weight: 400 !important;
}

h3 {
  color: var(--primary-color, #004c89) !important;
  font-family: "Lato", sans-serif !important;
  font-weight: 500 !important;
}

h4 {
  color: var(--primary-color, #004c89) !important;
  font-family: "Lato", sans-serif !important;
}

p {
  color: var(--text-color, #495057) !important;
  font-family: "Anek Latin", sans-serif !important;
  font-size: 1.1rem !important;
}

a {
  text-decoration: none !important;
  color: inherit;
}

.icon {
  color: var(--secondary-color, #ed8023) !important;
}

#button1 {
  width: fit-content;
  background: var(--secondary-color, #ed8023) !important;
  color: #f8f9fa;
  font-weight: bold;
}

#button2 {
  width: fit-content;
  border: 2px solid var(--secondary-color, #ed8023) !important;
  color: var(--secondary-color, #ed8023);
  border-radius: 10px;
  font-weight: bold;
}

.tag {
  color: var(--secondary-color, #ed8023) !important;
  text-transform: uppercase;
}

#button2:hover {
  background-color: var(--secondary-color, #ed8023);
  color: #f8f9fa;
}

/* navbar */
#offcanvasNavbar {
  width: 250px;
  color: white;
}

.navbar-collapse {
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
}

.navbar {
  height: 70px;
}
/* Open dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Ensures dropdown opens right under the parent */
}

.navbar .nav-item:hover .nav-link {
  border-bottom: 1px solid #f8f9fa;
}

#hero-section {
  background: url("/images/hero-banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  
    /* Lazy loading via pseudo-element */
  background-attachment: fixed;
  will-change: transform;
}

/* Solution Card */
.solution-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px 12px;
  text-align: center;
  background-color: white;
  transition: transform 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-icon {
    left: 40%;
    bottom: -40px;
    background: #077721;
}

/* Testimonial Carousel Styles */
/* Custom arrow styles */
.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev {
  left: 15px;
}

.slick-next {
  right: 15px;
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rating {
  background-color: #fff6e8;
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
}

/* FAQ Accordion Styles */
.accordion-button {
  background-color: #ffffff !important;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #ffffff !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-item {
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-2px);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  
    /* Lazy loading via pseudo-element */
  background-attachment: fixed;
  will-change: transform;
}

/* Contact Section */
#contact-section {
    background: #ddffdd;
}


/* CTA Section Style */
#cta-section {
  background: url("/images/cta-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
  text-align: center;
  
    /* Lazy loading via pseudo-element */
  background-attachment: fixed;
  will-change: transform;
}

/* Styling for the Logo Carousel */
.logo-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item {
  padding: 10px;
  text-align: center;
  align-self: center;
}

.logo-item img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.logo-item img:hover {
  transform: scale(1.1);
}


#footer {
  background: url("/images/footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
    /* Lazy loading via pseudo-element */
  background-attachment: fixed;
  will-change: transform;
}

#footer #mail{
    font-size: 1rem !important;
}


.slick-initialized .slick-slide {
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
}
