/*==========================================================
= GLOBAL / BASE COLORS
==========================================================*/
/* Background color for the entire contact section */
.contact-style01 > .container > .bg-primary {
  background-color: rgb(0, 0, 0) !important;
  background-image: none !important; /* Remove bg image if you only want solid color */
}

/* Headings underline adjustment inside light backgrounds */
.bg-light .section-heading.left h2:after {
  background: #0002E1 !important;
}

/* Remove underline/green line only inside .bg-secondary for h4 */
.bg-secondary .section-heading h4:after {
  content: none !important;
}

/*==========================================================
= HEADER / NAVIGATION
==========================================================*/
/* Ensure nav visible and flex */
.header-style1 .navbar-nav#nav {
  display: flex; /* Override any inline display:none */
}
/* Spacing between nav items */
.header-style1 .navbar-nav#nav > li {
  margin-left: 1rem;
}
/* Nav link padding */
.header-style1 .navbar-nav#nav > li > a {
  padding: .75rem 0;
}

/* Sticky header layering */
.header-style1 .navbar {
  position: relative;
  z-index: 1000;
}


/*==========================================================
= BUTTON STYLES
==========================================================*/
/* Signal button styles */
.butn-style8.secondary[href*="signal.me"] {
  background-color: #3A76F0 !important;
  border-color: #3A76F0 !important;
  color: #fff !important;
}
.butn-style8.secondary[href*="signal.me"]:hover,
.butn-style8.secondary[href*="signal.me"]:focus {
  background-color: #2a5ec9 !important;
  border-color: #2a5ec9 !important;
  color: #fff !important;
}

/* WhatsApp button styles */
.butn-style8.secondary[href*="wa.me"] {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}
.butn-style8.secondary[href*="wa.me"]:hover,
.butn-style8.secondary[href*="wa.me"]:focus {
  background-color: #5FE08F !important;
  border-color: #5FE08F !important;
  color: #fff !important;
}


/*==========================================================
= COUNTER BOX
==========================================================*/
.counter-box h4:after,
.counter-box .h4:after {
  content: '';
}


/*==========================================================
= Universitätslektorin
==========================================================*/
/* Services carousel nav buttons */
.services-carousel-four.owl-theme .owl-nav [class*='owl-'] {
  /* background: #0002E1 !important; /* blue background */
  background: #ffffff !important;
  color: #fff !important;
  border: none;
}

.ti-arrow-left:before {
  color: #14212B;
    content: "\f104";
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
	margin-top: -6px;
	margin-left: -3px;
	position: absolute;
    font-style: normal;
	font-variant: normal;
	line-height: 1;
}

.ti-arrow-right:before {
  color: #14212B;
    content: "\f105";
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
	margin-top: -6px;
	margin-left: -3px;
	position: absolute;
    font-style: normal;
	font-variant: normal;
	line-height: 1;
}

.services-carousel-four.owl-theme .owl-nav i {
  color: #fff !important;
}
.services-carousel-four.owl-theme .owl-nav [class*='owl-']:hover,
.services-carousel-four.owl-theme .owl-nav [class*='owl-']:focus {
  filter: brightness(0.92);
  color: #fff !important;
}

/* Hide dots for this carousel */
.services-carousel-four.owl-theme .owl-dots {
  display: none !important;
}


/*==========================================================
= SERVICES
==========================================================*/
/* Hover background and text color for card-style16 */
.card-style16:hover .card-content {
  background: #0002E1 !important;
}
.card-style16 .card-content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #0002E1;
  transition: all 0.5s ease;
}


/*==========================================================
= TESTIMONIALS
==========================================================*/
/* General testimonial spacing */
.testimonial-style3 {
  margin-top: 5rem;
}
section.parallax + .testimonial-style3 {
  margin-top: 4rem;
}
.testimonial-style3.owl-carousel {
  padding-top: .5rem;
}

/* Testimonial paragraph adjustments */
.testimonial-style3 .testmonial-single p {
  margin-top: 0 !important;
}

.testimonial-style3 .testmonial-single p:before {
    content: "\f10d";
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  color: #0002E1;
  font-size: 30px;
    display: block;
    top: 0;
    left: -50px;
    position: absolute;
}
    
/* Testimonial style 3 - closing quote icon */
.testimonial-style3 .testmonial-single p:after {
  content: "\f10e"; /* Font Awesome 'quote-right' */
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  color: #0002E1;
  font-size: 30px;
  display: inline-block;
  margin-left: 20px;
}

/* Testimonial style 1 image settings */
.testmonials-style1 .testmonial-single img {
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
}

/* Testimonial single - general text styles */
.testmonial-single {
  text-align: center;
}
.testmonial-single p {
  text-align: center;
  font-style: italic;
  font-weight: 600;
}
.testmonial-single p:before {
  margin: auto auto 15px;
  content: none !important;
  font-weight: 700;
  font-family: Font Awesome\ 5 Free;
  color: #0002E1;
  font-size: 23px;
  display: block;
}

/* Testimonial single - title and subtitle */
.testmonial-single h4 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 5px 0;
  line-height: normal;
}
.testmonial-single h6 {
  color: #aaa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  line-height: normal;
  margin: 0;
}


/*==========================================================
= SECTIONS / LAYOUT FIXES
==========================================================*/
/* Countups bottom padding */
section.parallax.box-hover.secondary-overlay {
  padding-bottom: 3rem;
}


/*==========================================================
= FOOTER
==========================================================*/
/* Footer designer credit link */
.row .col-md-4 .text-primary.text-white-hover[href="#"] {
  color: #0002E1 !important;
}
