/**
* Template Name: BizLand
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #0726a8;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #5e5b5d;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #950518;
  border-top-color: #251e21;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #950419;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #950019;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    padding-top: 80px;
    left: 0;
    width: 100%;
    z-index: 997;
    transition: background 0.9s, box-shadow 0.3s; /* Smooth transition */
}

#header.fixed-top {
  height: 70px;
}

#header.scrolled {
    background: #27292a; /* Add your desired color */
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); /* Optional shadow for effect */
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #0726a8;
}

#header .logo img {
  width: 140px;
  max-height: 140px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/* Navbar Styling */
.navbar {
  padding: 0;
  background: transparent; /* Transparent background */
  display: flex;
  justify-content: center; /* Center align items */
  align-items: center;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 5px; /* Add padding around links */
}

.navbar a {
  color: white; /* White text color */
  font-size: 16px;
  font-weight: 600;
  padding: 8px 15px; /* Padding inside links */
  text-decoration: none;
  border-radius: 15px; /* Rounded corners for active link */
  transition: background-color 0.3s, color 0.3s;
}

/* Active Link Style */
.navbar .active {
  background: rgba(255, 255, 255, 0.4); /* Slightly transparent background */
  color: white; /* White text */
}

/* Hover Effect */
.navbar a:hover {
  background: rgba(255, 255, 255, 0.2); /* Same background as active */
  color: white;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.scrolled {
    color: white;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #950419;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0726a8;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
    background: url("../img/index-hero.webp") no-repeat center center / cover;
  background-size: cover;
  position: relative;
  justify-content: center; /* Horizontal alignment */
  text-align: center; /* Center text on smaller devices */
}

#hero:before {
  content: "";
    background: rgba(0, 0, 0, 1);
  position: absolute;
  opacity: 0.6;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  margin-left: 0px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: white;
  font-family: "Poppins", sans-serif;
}



.hero-row {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
}

.hero-row .col-lg-5, .hero-row .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}



@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }

  .hero-row{
  margin-top: 100px;
}
}



@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }


  .hero-row{
    max-width: 80vw;
  }
}



@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }

  .hero-row{
  margin-top: 0px;
}
}


@media (max-width: 768px) {
  .hero-row {
    flex-direction: column; /* Stack columns on smaller devices */
  }
  .hero-row .col-lg-5, .hero-row .col-lg-6 {
    align-items: center; /* Center content horizontally */
    text-align: center;
  }
   .hero-row .col-lg-6 {
    margin-top: 50px;
  }
}


.hero-button{
    display:none;
}


@media (max-width: 768px) {
.hero-button{
    display:revert;
}
    
     .hero-row .dugmad {
    display: flex;
    justify-content: center; /* Align buttons horizontally */
    gap: 10px; /* Add spacing between buttons */
  }
    
}



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#header #topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Align content properly */
  padding: 0 15px;
  background: #21213b;
  z-index: 1000;
}

/* Contact Info Styling */
#header #topbar .contact-info {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

#header #topbar .contact-info i {
  margin-right: 5px;
}

#header #topbar .contact-info span,
#header #topbar .contact-info a {
  color: #fff;
  margin-right: 15px;
  margin-left:10px;
  text-decoration: none;
}

#header #topbar .contact-info a:hover {
  text-decoration: underline;
}

/* Social Links Styling */
#header #topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 10px;
  transition: color 0.3s;
}

#header #topbar .social-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  /* Hide contact info on small screens */
  #header #topbar .contact-info {
    display: none !important;
  }

  /* Show social links on small screens */
  #header #topbar .social-links {
    display: flex !important; /* Ensure visibility */
    justify-content: center; /* Center align the social links */
    gap: 10px; /* Add spacing between icons */
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  color: black;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #0726a8;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.podnaslov{
  margin-bottom: 100px;
}

.mobile-line{
  visibility: hidden;
}

@media (max-width: 768px) {

.mobile-line{
  visibility: visible;
}
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.zasto {
  position: relative;
  z-index: 1; /* Ensure content is above the background */
}

.zasto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/logo beli.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.2; /* Adjust opacity here */
  z-index: -1; /* Place the background below content */
}


.icon-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.icon-box:hover {
  transform: translateY(-10px);
}

.icon-box .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.icon-box h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #000;
}

.icon-box p {
  font-size: 14px;
  color: #6c757d;
}







.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #0726a8;
}

.services .icon-box:hover .icon {
  border-color: #0726a8;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.testimonial-card {
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card img {
  border: 2px solid #d9232d;
}

.section-title h2 span {
  color: #d9232d;
}

.section-title h2 {
  font-weight: bold;
}

.section-title h3 {
  color: #555;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 40px 0;
}

.footer a {
  color: #66ccff;
  text-decoration: underline;
}

.footer a:hover {
  color: #d9232d;
  text-decoration: underline;
}

.footer h4 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #d9232d;
}

.footer .border-top {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 20px;
}











/* U S L U G E   */

#hero-usluge {
  background: url('../img/usluge-hero.jpg') no-repeat center center;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

#hero-usluge:before {
  content: "";
    background: rgba(0, 0, 0, 1);
  position: absolute;
  opacity: 0.7;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-usluge h1 {
  font-size: 3rem;
  font-weight: bold;
}

#hero-usluge p {
  font-size: 1.2rem;
  margin-top: 15px;
}

#hero-usluge .bg-danger {
  margin: 15px auto;
}




#lightbulb {
  width: 430px; /* Adjust size as needed */
  max-width: 100vw;
  height: auto;
  filter: brightness(0.5);
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

#lightbulb-container {
  display: flex;
  justify-content: center;
  align-items: center;
}





.usluge {
  position: relative;
  z-index: 1; /* Ensure content is above the background */
}

.usluge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/logo beli.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.2; /* Adjust opacity here */
  z-index: -1; /* Place the background below content */
}


.services-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.services-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.services-section .title-underline {
  width: 50px;
  height: 3px;
  background-color: red;
  margin-bottom: 15px;
}

.services-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.services-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-image {
  margin: 0 auto;
  display: block;
}





/* Image Container */
.position-relative {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.hover-overlay-image {
  transition: transform 0.3s ease;
   height: 250px;
   width: 100%;
}



/* Overlay */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Prevent overlay from blocking clicks */
}




/* Centered Text/Icon */
.hover-overlay div {
  text-align: center;
}







/** K O N T A K T **/
#hero-kontakt {
  background: url('../img/kontakt-hero.webp') no-repeat center center;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

#hero-kontakt:before {
  content: "";
    background: rgba(0, 0, 0, 1);
  position: absolute;
  opacity: 0.7;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero-kontakt h1 {
  font-size: 3rem;
  font-weight: bold;
}

#hero-kontakt p {
  font-size: 1.2rem;
  margin-top: 15px;
}

#hero-kontakt .bg-danger {
  margin: 15px auto;
}






/** K O N T A K T **/

#contact-section {
  padding: 60px 0;
}

#contact-section h2 {
  font-size: 24px;
  color: #333;
}

#contact-section p {
  font-size: 16px;
  color: #666;
}

#contact-section ul {
  padding-left: 0;
}

#contact-section ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

#contact-section ul li i {
  margin-right: 8px;
}

#contact-section .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
}

#contact-section .btn-danger {
  background-color: #d9534f;
  border: none;
  border-radius: 4px;
}

#contact-section .btn-danger:hover {
  background-color: #c9302c;
}


.main-kontakt {
  position: relative;
}

.main-kontakt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/kontakt-bg.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.05; /* Adjust opacity here */
  z-index: -1; /* Ensure content is above the background */
}




.contact-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.contact-card p {
  margin: 0;
  color: #666;
}

.social-icons a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #c9302c;
}



