/* Fonts are now loaded in HTML head for better performance */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #000000;
  font-family: "Gabarito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root {
  --primary-color: #ffffff;
  --second-color: #749bc2;
  --background-color: #91c8e4;
  --third-color: #4682a9;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 0 !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
}

input,
textarea {
  border-radius: 10px !important;
}

button {
  border-radius: 10px;
}

nav {
  position: absolute;
  padding: 1rem 1rem;
  justify-content: space-between;
  line-height: 30px;
}

.container {
  height: 100vh;
  display: flex;
}

.container img {
  width: 100%;
  position: absolute;
  height: 110vh;
  object-fit: cover;
  background-repeat: no-repeat;
  z-index: -1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
}

/* Disable parallax transforms on mobile */
@media (max-width: 768px) {
  html {
    scroll-behavior: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    overflow-x: hidden !important;
    position: relative !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .container {
    position: relative !important;
    height: 50vh !important;
    min-height: 50vh !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .container img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    will-change: auto !important;
    transform: none !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

.main-title {
  font-size: 6rem;
  margin: auto;
  font-weight: 900;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  text-align: center;
}

.content-images {
  display: flex;
  justify-content: space-around;
  /* background-image: url(./5488076.jpg); */
  z-index: 10;
  align-items: center;
  min-height: 60vh;
  text-align: center;
}

.text {
  padding: 1.5rem 10rem;
  /* Keep original padding for desktop */
  font-size: 1.9rem;
  /* Keep original font size for desktop */
}

/* Media Query for mobile responsiveness */
@media (max-width: 390px) {
  .text {
    padding: 1rem;
    /* Adjust padding for mobile */
    font-size: 1rem;
    /* Adjust font size for mobile */
  }
}

h1 {
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  color: #fff;
  font-size: 2.3em;
}

em {
  color: #232027;
}

.wrapper {
  width: 100%;
  margin: 40px auto;
  display: flex;
  justify-content: center;
}

div.gallery {
  margin-top: 30px;
  list-style-type: none;
}

div.gallery ul {
  list-style-type: none;
  margin-left: 35px;
}

/* animation */
div.gallery ul li,
div.gallery li img {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  list-style-type: none;
}

div.gallery ul li {
  position: relative;
  float: right;
  width: 130px;
  height: 130px;
  margin: 5px;
  padding: 5px;
  z-index: 0;
}

/* Your existing CSS styles */
/* Your existing CSS styles */

/* Animation with different transition properties for mobile */
@media (max-width: 390px) {
  /* Add or adjust the desired transition properties for mobile */
  div.gallery ul li,
  div.gallery li img {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
      rgba(17, 17, 26, 0.05) 0px 8px 32px;
    list-style-type: none;
  }

  div.gallery ul li img:hover {
    width: 200px;
    height: 200px;
    margin-top: -130px;
    margin-left: -130px;
    top: 65%;
    left: 65%;
  }
}

/* Media Query for mobile responsiveness */
@media (max-width: 590px) {
  .gallery ul {
    text-align: center;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  .gallery ul li {
    float: none;
    display: inline-block;
    margin: 10px;
    text-align: center;
  }

  .gallery ul li img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Remove the animation on mobile */
  div.gallery ul li,
  div.gallery li img {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    box-shadow: none;
    border-radius: 0;
  }

  /* Adjust the hover styles on mobile */
  div.gallery ul li:hover {
    z-index: 0;
  }

  div.gallery ul li img:hover {
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    top: 0;
    left: 0;
  }
}

/* Make sure z-index is higher on hover */
/* Ensure that hover image overlapped the others */
div.gallery ul li:hover {
  z-index: 5;
}

/* Image is position nicely under li */
div.gallery ul li img {
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #dddddd;
  padding: 5px;
  width: 130px;
  height: 130px;
  background: #f0f0f0;
}

div.gallery ul li img:hover {
  width: 200px;
  height: 200px;
  margin-top: -130px;
  margin-left: -130px;
  top: 65%;
  left: 65%;
}

p.attribution {
  font-family: "Consolas";
  color: #000;
  clear: both;
  text-align: center;
  line-height: 25px;
  padding-top: 30px;
}

p.attribution a {
  color: #4c8d7c;
}

/* Responsive hack */
@media only screen and (min-width: 390px) and (max-width: 1212px) {
  .wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 390px) {
  .wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  div.gallery ul {
    /* Adjust or reset your ul styles for mobile */
    list-style-type: disc;
    /* or your preferred style */
    margin: 0;
    /* You can adjust the margin as needed */
  }
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

body {
  background: #ffffff;
  color: #333;
  font-weight: normal;
  font-size: 1em;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

input:focus,
textarea:focus,
keygen:focus,
select:focus {
  outline: none;
}

::-moz-placeholder {
  color: #666;
  font-weight: 300;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #666;
  font-weight: 300;
}

/* Contact Form Styling */
.container2 {
  padding: 0 50px 70px;
}

.textcenter {
  text-align: center;
}

.section1 {
  text-align: center;
  display: table;
  width: 100%;
}

.section1 .shtext {
  display: block;
  margin-top: 20px;
}

.section1 .seperator {
  border-bottom: 1px solid #a2a2a2;
  width: 35px;
  display: inline-block;
  margin: 20px;
}

.section1 h1 {
  font-size: 40px;
  color: #3586ff;
  font-weight: normal;
}

.section2 {
  width: 1200px;
  margin: 25px auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

.section2 .col2 {
  width: 48.71%;
}

.section2 .col2.first {
  float: left;
}

.section2 .col2.last {
  float: right;
}

.left-form {
  padding: 40px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

span.collig {
  color: #a2a2a2;
  margin-right: 10px;
  display: inline-block;
}

.sec2addr {
  display: block;
  line-height: 26px;
}

.sec2addr p:first-child {
  margin-bottom: 10px;
}

.sec2contactform input[type="text"],
.sec2contactform input[type="email"],
.sec2contactform textarea {
  padding: 18px;
  border: 0;
  background: #ededed;
  margin: 7px 0 5px 5px;
}

.sec2contactform textarea {
  width: 100%;
  display: block;
  color: #666;
  resize: none;
}

.sec2contactform input[type="submit"] {
  padding: 15px 40px;
  color: #fff;
  border: 0;
  background: #3586ff;
  font-size: 16px;
  text-transform: uppercase;
  margin: 7px 0;
  cursor: pointer;
}

.sec2contactform h3 {
  font-weight: normal;
  margin: 20px 0;
  margin-top: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 19px;
  color: #3586ff;
}

.map {
  width: 100%;
  height: 635px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media only screen and (max-width: 390px) {
  .container2 {
    padding: 0 30px 70px;
  }

  .col2.first {
    margin-bottom: 10px;
  }

  *,
  *:after,
  *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  .clearfix:before,
  .clearfix:after {
    display: table;
    content: "";
  }

  .clearfix:after {
    clear: both;
  }

  input:focus,
  textarea:focus,
  keygen:focus,
  select:focus {
    outline: none;
  }

  ::-moz-placeholder {
    color: #666;
    font-weight: 300;
    opacity: 1;
  }

  ::-webkit-input-placeholder {
    color: #666;
    font-weight: 300;
  }

  /* Contact Form Styling */
  .container1 {
    padding: 0 50px 70px;
  }

  .textcenter {
    text-align: center;
  }

  .section1 {
    text-align: center;
    display: table;
    width: 100%;
  }

  .section1 .shtext {
    display: block;
    margin-top: 20px;
  }

  .section1 .seperator {
    border-bottom: 1px solid #a2a2a2;
    width: 35px;
    display: inline-block;
    margin: 20px;
  }

  .section1 h1 {
    font-size: 40px;
    color: #3586ff;
    font-weight: normal;
  }

  .section2 {
    width: 1200px;
    margin: 25px auto;
  }

  .section2 .col2 {
    width: 48.71%;
  }

  .section2 .col2.first {
    float: left;
  }

  .section2 .col2.last {
    float: right;
  }

  .section2 span.collig {
    color: #a2a2a2;
    margin-right: 10px;
    display: inline-block;
  }

  .section2 .sec2addr {
    display: block;
    line-height: 26px;
  }

  .section2 .sec2addr p:first-child {
    margin-bottom: 10px;
  }

  .section2 .sec2contactform input[type="text"],
  .section2 .sec2contactform input[type="email"],
  .section2 .sec2contactform textarea {
    padding: 18px;
    border: 0;
    background: #ededed;
    margin: 7px 0;
  }

  .section2 .sec2contactform textarea {
    width: 100%;
    display: block;
    color: #666;
    resize: none;
  }

  .section2 .sec2contactform input[type="submit"] {
    padding: 15px 40px;
    color: #fff;
    border: 0;
    background: #3586ff;
    font-size: 16px;
    text-transform: uppercase;
    margin: 7px 0;
    cursor: pointer;
  }

  .section2 .sec2contactform h3 {
    font-weight: normal;
    margin: 20px 0;
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 19px;
    color: #3586ff;
  }

  /* @media querries */

  @media only screen and (max-width: 390px) {
    .section2 {
      width: 100%;
    }
  }

  @media only screen and (max-width: 390px) {
    .container1 {
      padding: 0 30px 70px;
    }

    .section2 .col2 {
      width: 100%;
      display: block;
    }

    .section2 .col2.first {
      margin-bottom: 10px;
    }

    body .sec2map {
      height: 250px !important;
    }
  }

  @media only screen and (max-width: 390px) {
    .section2 .sec2addr {
      font-size: 14px;
    }

    .section2 .sec2contactform h3 {
      font-size: 16px;
    }

    .section2 .sec2contactform input[type="text"],
    .section2 .sec2contactform input[type="email"],
    .section2 .sec2contactform textarea {
      padding: 10px;
      margin: 3px 0;
    }

    .section2 .sec2contactform input[type="submit"] {
      padding: 10px 30px;
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 390px) {
    .section1 h1 {
      font-size: 28px;
    }
  }

  body .sec2map {
    height: 250px !important;
  }
}

@media only screen and (max-width: 390px) {
  .section2 .sec2addr {
    font-size: 14px;
  }

  .section2 .sec2contactform h3 {
    font-size: 16px;
  }

  .section2 .sec2contactform input[type="text"],
  .section2 .sec2contactform input[type="email"],
  .section2 .sec2contactform textarea {
    padding: 10px;
    margin: 3px 0;
  }

  .section2 .sec2contactform input[type="submit"] {
    padding: 10px 30px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 390px) {
  .section1 h1 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 390px) {
  .main-title {
    font-size: 2rem !important;
    padding: 0 15px !important;
    line-height: 1.2 !important;
  }

  .kodfun-galier {
    width: 100%;
    gap: 1rem;
    height: 50em;
    flex-direction: column;
    margin-top: 80px;
    list-style-type: none;
  }

  .kodfun-galier > div:hover {
    flex: 2;
  }

  .neumorphic-component .icon img {
    width: 150px;
  }

  .text {
    font-size: 23px;
  }
}

.mobile-menu {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

/* Corrected class name for the button */
.mobile-menu i {
  font-size: 40px;
  color: #000000;
  cursor: pointer;
}

.mobile-menu:hover {
  opacity: 0.5;
}

/* // Mobile nav */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  /* max-width: 400px; */
  width: 100%;
  background: #000000c6; /* Blue background color */
  flex-direction: column;
  z-index: 1000;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-top: 0;
  text-align: center;
  max-height: 100vh;
  height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  color: white;
  text-transform: capitalize;
  display: none;
  justify-content: space-between;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
    
}

.mobile-nav li {
  padding: 10px;
  border-bottom: 1px solid #fff; /* Thin white lines separating list items */
}



/* Add cool animations */
.mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
}




.mobile-nav.show {
  transform: translateX(0) !important;
  opacity: 1 !important;
  z-index: 2000 !important;
  display: flex !important;
  /* A higher value when the menu is open */
}

.close-holder {
  padding: 12px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.66);
  text-align: center;
  flex-shrink: 0;
  position: relative;
}

.close-button {
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.close-holder p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-align: center;
  flex: 1;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 12px;
  flex: 1;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mobile-nav ul li {
  font-size: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  margin-bottom: 0;
  padding: 10px 8px;
  flex-shrink: 0;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 19px;
  display: block;
  line-height: 1.3;
}

/* Mobile Nav Footer Styles */
.mobile-nav-footer {
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  width: 100%;
}

.mobile-nav-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.phone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 100%;
}

.phone-label {
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  opacity: 0.9;
}

.mobile-nav-phone a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 3px 8px;
  display: block;
  text-transform: none;
}

.mobile-nav-social {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.mobile-nav-social a {
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-social a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.mobile-nav-social a i {
  font-size: 22px;
  color: #ffffff;
}

@media only screen and (max-width: 900px) {
  .mobile-menu {
    display: block !important;
    order: 3;
    z-index: 1001;
    position: relative;
  }

  .mobile-menu i {
    font-size: 32px !important;
    color: #000000 !important;
    display: block !important;
  }

  svg {
    margin: 0;
  }

  .logo {
    order: 2;
  }

  .social-icons-header {
    order: 1;
  }

  header ul li {
    display: none;
  }

  .links {
    display: none;
  }
  
  /* Hide dropdown on mobile */
  .dropdown {
    display: none !important;
  }

  /* Show mobile nav on mobile */
  .mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    height: 100vh !important;
  }

  .mobile-nav ul {
    flex: 1 !important;
    overflow-y: hidden !important;
    padding: 8px 12px !important;
  }

  .mobile-nav ul li {
    padding: 10px 8px !important;
    font-size: 19px !important;
    margin-bottom: 0 !important;
  }

  .mobile-nav ul li a {
    font-size: 19px !important;
    padding: 6px 0 !important;
    line-height: 1.3 !important;
  }

  .close-holder {
    padding: 12px 15px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
  }

  .close-holder p {
    font-size: 18px !important;
    text-align: center !important;
    flex: 1 !important;
  }

  .close-button {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Mobile Nav Footer Styles */
  .mobile-nav-footer {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 8px 12px !important;
    flex-shrink: 0 !important;
    gap: 6px !important;
  }

  .phone-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    width: 100% !important;
  }

  .phone-label {
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    font-family: "Montserrat", sans-serif !important;
    text-align: center !important;
    opacity: 0.9 !important;
  }

  .mobile-nav-phone a {
    font-size: 14px !important;
    padding: 3px 8px !important;
    font-weight: 700 !important;
  }

  .mobile-nav-social {
    gap: 15px !important;
    margin-top: 4px !important;
  }

  .mobile-nav-social a {
    font-size: 22px !important;
    width: 40px !important;
    height: 40px !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .mobile-nav-social a i {
    font-size: 22px !important;
    color: #ffffff !important;
  }
}

/* Default styles for the header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  transition: background 0.5s ease;
  /* Add smooth transition for background color */
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  backdrop-filter: blur(4px);
  transition: background 1.9s ease;
}

/* Styles for the header when it's transparent */
header.appear::after {
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(1);
}

/* Logo styles */
header .logo img {
  width: 50px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.social-icons-header {
  display: flex;
  flex-direction: row;
  list-style: none;
}

svg {
  margin-right: 10px;
}

/* Default styles for the navigation ul */
header ul {
  display: flex;
  list-style: none;
  padding: 20px 40px;
  background: transparent;
  border-radius: 10px;
}

/* Styles for the navigation ul when the header is transparent */
header.appear ul {
  background: rgba(30, 28, 28, 0.503);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.9s ease;
  /* Add smooth transition for background color */
}

/* Styles for navigation list items */
header ul li {
  margin-left: 30px;
  color: var(--primary-color);
}

/* Styles for the first navigation list item */
header ul li:first-child {
  margin-left: 0;
}

/* Default styles for anchor elements in the navigation */
header ul li a {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3em;
  color: black;
  font-weight: bolder;
}

/* Styles for anchor elements when the header is transparent */
header.appear ul li a {
  color: white;
  /* Color when the header is transparent */
}

/* Hover styles for anchor elements */
header ul li a:hover {
  color: var(--background-color);
  /* Color on hover (change this to your desired color) */
}

/* Dropdown menu styles */
header ul li {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  min-width: 250px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  display: flex;
  flex-direction: column;
}

header ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
}

.dropdown li {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.dropdown li a {
  display: block;
  padding: 12px 25px;
  color: #16263a;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown li a:hover {
  background: rgba(53, 134, 255, 0.1);
  color: #3586ff;
  border-left-color: #3586ff;
  padding-left: 30px;
}

/* When header is transparent/appear */
header.appear .dropdown {
  background: rgba(30, 28, 28, 0.95);
  backdrop-filter: blur(10px);
}

header.appear .dropdown li a {
  color: white;
}

header.appear .dropdown li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #91c8e4;
}

/* Add this to your CSS */
.appear {
  background: transparent;
}

* {
  box-sizing: border-box;
}

.content {
  width: 100%;
  background: var(--primary-color);
  min-height: 100vh;
  z-index: 2;
  position: absolute;
  padding-bottom: 60px;
}

/* Adjust these styles for better mobile responsiveness */
@media (max-width: 500px) {
  html, body {
    overflow-x: hidden !important;
    position: relative !important;
    height: auto !important;
  }

  .content {
    position: relative !important;
    min-height: auto !important;
    width: 100% !important;
    padding: 0 !important;
    top: 0 !important;
  }

  .container {
    height: 50vh !important;
    min-height: 50vh !important;
    max-height: 50vh !important;
    position: relative !important;
  }

  .main-title {
    font-size: 1.8rem !important;
  }
}

.cards {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 100px;
}

.card {
  position: relative;
  margin-top: 30px;
  display: flex;
  width: 100%;
}

.card__inner {
  will-change: transform;
  background: white;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 35%);
  transform-origin: center top;
}

@media (max-width: 1000px) {
  .cards {
    padding: 10px;
    display: flex;
    flex-direction: column;
  }

  .card__inner {
    flex-direction: column;
  }

  .grid div.map {
    flex: unset;
  }
}

.card__image-container {
  flex: 1;
  width: 100%;
  /* Ensure full-width images on mobile */
  display: flex;
  align-items: center;
}

.card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  /* Maintain 16:9 aspect ratio for images */
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
}

.card__content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.card__title {
  padding: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #16263a;
}

.card__description {
  line-height: 1.4;
  font-size: 18px;
  color: #16263a;
}

/* Adjust the layout for the first card to be wider */
.cards .card:first-child {
  grid-column: span 2;
  /* Span two columns */
}

/* Remove display: none; to make kodfun-galier visible on mobile */
@media (max-width: 390px) {
  .cards {
    padding: 10px;
    /* Add margin to the cards */
  }

  .mobile-nav {
    display: flex !important;
  }

  .mobile-menu {
    display: block !important;
  }
}

@media (max-width: 390px) {
  .card__inner {
    flex-direction: column;
  }

  .card__image-container {
    width: 100%;
  }

  .card__image {
    aspect-ratio: auto;
    /* Remove aspect-ratio for flexible sizing */
  }

  .card__title {
    font-size: 32px;
  }

  .card__description {
    font-size: 16px;
  }
}

.title {
  text-align: center;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 100;
  font-size: 3.75rem;
  letter-spacing: 5px;
  background-color: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}

@media screen and (min-width: 37.5em) {
  .title {
    font-size: 4.75rem;
  }
}

@media screen and (min-width: 37.5em) {
  p {
    height: 70%;
  }
}
.case-study-gallery {
  margin-top: 0px;
  width: 90%;
  margin: 0 auto;
  max-width: 1300px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 10;
}

.gallerycontainer {
  background-color: white;
  position: relative;
  z-index: 10;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.gallerycontainer p {
  margin: 0 auto 0.5rem;
  text-align: center;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  color: #444;
  font-weight: 100;
  width: 90%;
}

.case-study {
  position: relative;
  display: block;
  width: 90%;
  height: 250px;
  margin: 0 auto 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: all 0.4s ease;
  will-change: transform;
}

@media screen and (min-width: 37.5em) {
  .case-study {
    height: 300px;
  }
}

@media screen and (min-width: 45em) {
  .case-study {
    display: inline-block;
    width: 45%;
    margin-left: 37px;
  }
}

.case-study__img {
  width: 22%;
  display: block;
  margin-top: 50%;
  transform: translateY(50%);
  margin: 0 auto;
}

.case-study__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
}

.case-study__overlay:after {
  content: "";
  width: 100%;
  border-radius: 10px;
  height: 100%;
  background-color: #202020;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -10;
  left: 0;
  transition: all 0.3s ease;
}

.case-study__title {
  position: relative;
  top: -200px;
  margin-bottom: 2rem;
  margin-top: 4rem;
  font-size: 2.25rem;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 100;
  color: white;
  text-align: center;
  letter-spacing: 5px;
  transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
}

.case-study__link {
  position: relative;
  display: block;
  width: 60%;
  top: 200px;
  padding: 10px;
  margin: 0 auto;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  color: white;
  letter-spacing: 3px;
  text-decoration: none;
  text-align: center;
  border: 2px solid white;
  border-radius: 3px;
  font-size: 1.25em;
  transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
}

.case-study__link:hover {
  background-color: white;
  color: #202020;
}

.case-study:hover .case-study__title {
  top: 0;
}

.case-study:hover .case-study__link {
  top: 0;
}

.case-study:hover .case-study__overlay:after {
  opacity: 0.75;
}

.study1 {
  background-image: url("./ciglane.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.study2 {
  background-image: url("ele1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.study3 {
  background-image: url("./dobrinja.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.study4 {
  background-image: url("https://41.media.tumblr.com/8d41610b4f5e7d5b68e4430b736fbeb3/tumblr_n4vbj2Vv8h1st5lhmo1_1280.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.study5 {
  background-image: url("http://publicdomainarchive.com/wp-content/uploads/2014/06/public-domain-images-free-stock-photos-high-quality-resolution-downloads-unsplash0067-1000x666.jpg");
}

.study6 {
  background-image: url("http://www.bedlammag.com/wp-content/uploads/2014/04/unsplash-love-yourself-article-e1397699812178.jpg");
}

/* Fonts are now loaded in HTML head for better performance */

:root {
  --light: #ffffff;
  --dark: #000;
}

/* body {
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */
.footer h3 {
  font-family: "Noto Serif Display", "Times New Roman", Times, serif;
  font-size: 2.9rem;
  font-weight: 300;
  text-align: center;
}

.footer a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s ease-in;
  border-bottom: 1px solid transparent;
  margin-bottom: 0.5rem;
  display: inline-flex;
}

a:hover {
  border-bottom: 1px solid var(--dark);
}

.footer ul {
  list-style-type: none;
  padding: 0;
}

.footer button {
  appearance: none;
  border: 0;
  background: transparent;
}

.layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.w-25,
.w-30,
.w-20,
.w-50 {
  box-sizing: border-box;
  padding: 1rem;
  /* Adjust padding as needed */
}

.w-50 {
  width: 50%;
  display: flex;
  flex-direction: row;
}

.w-30 {
  width: 30%;
}

.footer .layout_item.w-30:first-child {
  width: 25%;
  flex-shrink: 0;
}

.footer .layout_item.w-30:last-of-type {
  width: 30%;
}

.w-25 {
  width: 25%;
}

.w-20 {
  width: 20%;
}

@media (max-width: 1024px) {
  .w-30 {
    width: 50%;
  }
  .w-20 {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .w-30,
  .w-20,
  .w-25,
  .w-50 {
    width: 100%;
  }
}

.c-nav-tool {
  /* Adjust styles for the navigation bars */
  /* ... */
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  /* Adjust margin as needed */
}

/* Add any additional styling as necessary */

.footer_video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  border: none;
}

.footer_inner {
  background: var(--light);
  backdrop-filter: blur(50px);
  border: 0.1px solid rgba(233, 232, 232, 0.208);
  border-radius: 5px;
  padding: 2rem;
  margin: 1rem 0;
}

.blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
}

.footer {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.footer .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer .logo img {
  max-width: 120px;
  width: auto;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.footer-logo-text {
font-size: 15px;
flex: 1;
text-align: center;
margin-top: 40px;
margin-right: 20px;
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.containerfooter {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 400px);
  border-bottom: 1px solid var(--dark);
}

.footer input {
  padding: 0.75rem 0;
  border: none;
  background: none;
  font-weight: 500;
  transition: border 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 0;
  width: 100%;
  font-size: 1.05rem;
  margin-top: 19px;
}

input:focus {
  outline: none;
}

input::placeholder {
  color: var(--dark);
}

@media (max-width: 800px) {
  .layout {
    display: flex;
    column-gap: 2rem;
    flex-direction: column;
  }

  .layout_item {
    flex: 1;
    width: 100%;
  }
}



.footer svg {
  margin: 0.5rem;
  text-decoration: none;
}

.c-2 {
  /* margin-top: 3.5rem; */
  justify-content: space-between;
}

.c-2 .flex {
  justify-content: unset;
}

.footer_copyright {
  color: var(--light);
}

/* Additional media queries for smaller screens */
@media (max-width: 390px) {
  .footer h3 {
    font-size: 2rem;
  }

  .footer a {
    font-size: 1rem;
  }

  .footer_inner {
    padding: 0.5rem;
  }

  .footer form {
    width: 100%;
  }

  .footer input {
    margin-top: 10px;
  }
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.carousel-wrapper {
  white-space: nowrap;
  display: inline-block;
  position: relative;
  user-select: none;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  width: 100%;
}

.carousel-wrapper::-webkit-scrollbar {
  width: 0;
}

.carousel-logo {
  width: 130px;
  height: 130px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
}

.carousel-logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  /* Prevent text selection */
}

.card__content button {
  --border: 5px;
  /* the border width */
  --slant: 0.7em;
  /* control the slanted corners */
  --color: #91c8e4;
  /* the color */
  float: right;
  max-width: 222px;
  float: right;
  font-size: 25px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 17px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: var(--color);
  background: linear-gradient(to bottom left, var(--color) 50%, #0000 50.1%) top
      right,
    linear-gradient(to top right, var(--color) 50%, #0000 50.1%) bottom left;
  background-size: calc(var(--slant) + 1.3 * var(--border))
    calc(var(--slant) + 1.3 * var(--border));
  background-repeat: no-repeat;
  box-shadow: 0 0 0 200px inset var(--s, #0000),
    0 0 0 var(--border) inset var(--color);
  clip-path: polygon(
    0 0,
    calc(100% - var(--slant)) 0,
    100% var(--slant),
    100% 100%,
    var(--slant) 100%,
    0 calc(100% - var(--slant))
  );
  transition: color var(--t, 0.3s), background-size 0.3s;
}

.card__content button:focus-visible {
  outline-offset: calc(-1 * var(--border));
  outline: var(--border) solid #000c;
  clip-path: none;
  background-size: 0 0;
}

.card__content button:hover,
button:active {
  background-size: 100% 100%;
  color: #fff;
  --t: 0.2s 0.1s;
}

.card__content button:active {
  --s: #0005;
  transition: none;
}

#scrollable-container {
  width: 100%;
  height: 300px; /* Set the desired height for scrolling */
  overflow: auto; /* Enable scrolling */
}

:root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: navy;
    --color-bg-accent: #91c8e4;
  }
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Element styles */
.marquee svg {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.marquee--vertical svg {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;
}

/* Toggle direction button */
.toggle {
  --size: 3rem;
  position: relative;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  color: inherit;
  background-color: var(--color-bg-accent);
  z-index: 1;
}

.toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: fit-content;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: fade 400ms 4s ease-out forwards;
  user-select: none;
}

.toggle svg {
  --size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: currentcolor;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.contact-form {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 50px 0; */
  padding:15px;
}

.contact-form h2 {
  font-size: 40px;
  color: #3586ff;
  text-align: center;
  margin: 30px 10px 30px 10px;
}

.contact-form .grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

@media (max-width: 900px) {
  .contact-form .grid {
    flex-direction: column-reverse;
  }
}

.contact-form .grid > * {
  flex: 1;
}

.clearfix {
  display: flex;
  flex-wrap: wrap;
}

.clearfix > * {
  flex: 1;
}

/* Old contact-container styles removed - using new styles from kontakt.html */


.contact-box {
  width: 100%;
  display: flex;
  /* justify-content: center; */
  font-size: 24px; /* Adjust the size as needed */
  padding: 50px 40px;
  padding-left: 100px;
}

.right {
  align-self: flex-end;
}

.contact-box i {
  display: flex;
  align-items: center;
}

.contact-box div {
  width: 100%;
}

@media (min-width: 800px) {
  .contact-container {
    flex-wrap: nowrap;
  }
  
  .contact-box {
    /* width: 25%; */
    /* max-width: 100%; */
    /* margin-bottom: 0px;
    margin-top: 0px; */
  }
}


.contact-box i.fa-headset,
.contact-box i.fa-phone-volume,
.contact-box i.fa-credit-card,
.contact-box i.fa-scale-balanced {
  /* Your common styles for all icons go here */
  color: rgb(0, 0, 0); /* For example, change the icon color to blue */
  font-size: 37px; /* Adjust the icon size as needed */
}


.d-none{
  display: none;
}

.boja1{
  background-color: #333
}

/* New Contact Section Styles */
.contact-section {
  padding: 80px 20px;
  background: #f8f9fa;
  margin-top: 60px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: #16263a;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 100%;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(53, 134, 255, 0.3);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
  font-size: 2.5rem;
  color: white;
}

.contact-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #3586ff;
  margin-bottom: 15px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #16263a;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  word-break: keep-all;
}

.contact-phone:hover {
  color: #3586ff;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }
  
  .contact-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 30px;
    min-height: 200px;
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .contact-icon i {
    font-size: 2rem;
  }
  
  .contact-card-title {
    font-size: 1.1rem;
  }
  
  .contact-phone {
    font-size: 1.3rem;
  }
}

/* Old Intervencija styles - keeping for backward compatibility */
.Intervencija {
  background: rgb(255, 255, 255);
  border-radius: 14px;
  display: flex;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 70px;
  flex-direction: row;
}

.Intervencijaslika {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
}

.icon-intervencija,
.icon-prijava-kvarova,
.icon-finansijska-služba,
.icon-pravna-služba {
  font-size: 40px;
  margin-right: 35px;
}

.pdding{
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .pdding{
    padding-top: 30px;
  }
}

/* Media query for screens with a max-width of 768px (adjust breakpoint as needed) */
@media (max-width: 768px) {
  .Intervencija {
    flex-direction: column; /* Stack elements vertically */
    text-align: center;
    padding: 20px;
    width: 95%;
  }

  .Intervencijaslika {
    flex: 1; /* Make the image take full width */
  }

  .contact-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4fr);
    flex: 1; /* Make the content container take full width */
  }

  .contact-box {
    font-size: 20px; /* Reduce font size for mobile */
    padding: 30px 25px;
  }

  /* Optionally, you can add additional styles for the 2x2 grid layout */
  .contact-container {
    display: grid;
    grid-template-columns: repeat(1 1fr);
    gap: 20px; /* Adjust the gap as needed */
  }}

/* ============================================
   Page-specific styles extracted from HTML
   ============================================ */

/* Styles from o-nama.html */
/* Note: body styles are already defined globally, these are page-specific overrides */
    .about-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .about-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      opacity: 1;
    }
    .about-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
      opacity: 1;
    }
    .content-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .text-block {
      background: white;
      border-radius: 20px;
      padding: 60px;
      margin-bottom: 40px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      opacity: 1;
    }
    .text-block h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 30px;
      border-left: 5px solid #3586ff;
      padding-left: 20px;
    }
    .text-block p {
      font-size: 1.15rem;
      color: #333;
      line-height: 2.2;
      margin-bottom: 25px;
    }
    .text-block ul {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }
    .text-block ul li {
      font-size: 1.1rem;
      color: #333;
      line-height: 2;
      padding: 15px 0;
      padding-left: 40px;
      position: relative;
    }
    .text-block ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #3586ff;
      font-size: 1.5rem;
      font-weight: bold;
    }
    .image-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin: 60px 0;
      align-items: center;
    }
    .image-section img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      opacity: 1;
    }
    .image-section .text-content {
      opacity: 1;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin: 60px 0;
    }
    .stat-box {
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      color: white;
      opacity: 1;
    }
    .stat-box .number {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: white;
    }
    .stat-box .label {
      font-size: 1.2rem;
      opacity: 1;
      color: white;
    }
    @media (max-width: 968px) {
      .image-section {
        grid-template-columns: 1fr;
      }
    }

/* Styles from servisi.html */
.services-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #16263a 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .services-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      opacity: 1;
    }
    .services-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
      opacity: 1;
    }
    .services-grid {
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    .service-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      padding-bottom: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s;
      opacity: 1;
      border-top: 5px solid #3586ff;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 50px rgba(53, 134, 255, 0.3);
    }
    .service-card i {
      font-size: 3.5rem;
      color: #3586ff;
      margin-bottom: 25px;
    }
    .service-card h3 {
      font-size: 1.8rem;
      color: #16263a;
      margin-bottom: 20px;
    }
    .service-card p {
      font-size: 1.1rem;
      color: #666;
      line-height: 1.8;
      margin-bottom: 5px;
      margin-top: 0;
    }
    .service-card ul {
      list-style: none;
      padding: 0;
      margin-top: 5px;
      margin-bottom: 0;
      margin-left: 0;
      margin-right: 0;
      width: 100%;
      box-sizing: border-box;
      flex-shrink: 0;
    }
    .service-card ul li {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
      padding: 4px 0;
      padding-left: 25px;
      padding-right: 0;
      position: relative;
      margin-bottom: 2px;
      word-wrap: break-word;
      box-sizing: border-box;
    }
    .service-card ul li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: #3586ff;
      font-weight: bold;
    }
    .cta-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .cta-box {
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      color: white !important;
    }
    .cta-box h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: white !important;
    }
    .cta-box p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      line-height: 1.8;
      color: white !important;
    }
    .cta-box .cta-button {
      display: inline-block;
      background: white;
      color: #3586ff !important;
      padding: 18px 50px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      transition: transform 0.3s;
    }
    .cta-box .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .intro-text {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .intro-box {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 60px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      opacity: 1;
    }
    .intro-box h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 30px;
      text-align: center;
    }
    .intro-box p {
      font-size: 1.2rem;
      color: #333;
      line-height: 2.2;
      text-align: center;
      max-width: 1000px;
      margin: 0 auto;
    }

/* Styles from liftovi.html */
.lifts-hero {
      margin-top: 100px;
      min-height: 500px;
      background: linear-gradient(rgba(22, 38, 58, 0.85), rgba(30, 95, 204, 0.85)), url('./images/elevator.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 80px 20px;
    }
    .lifts-hero h1 {
      font-size: 4.5rem;
      margin-bottom: 30px;
      font-weight: 700;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    }
    .lifts-hero p {
      font-size: 1.5rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .content-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .text-block {
      background: white;
      border-radius: 20px;
      padding: 60px;
      margin-bottom: 50px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      opacity: 1;
    }
    .text-block h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 30px;
      border-left: 5px solid #3586ff;
      padding-left: 20px;
    }
    .text-block p {
      font-size: 1.15rem;
      color: #333;
      line-height: 2.2;
      margin-bottom: 25px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 60px 0;
    }
    .feature-item {
      background: #f8f9fa;
      border-radius: 15px;
      padding: 35px;
      text-align: center;
      transition: all 0.3s;
      opacity: 1;
      border-top: 4px solid #3586ff;
    }
    .feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(53, 134, 255, 0.2);
    }
    .feature-item i {
      font-size: 3rem;
      color: #3586ff;
      margin-bottom: 20px;
    }
    .feature-item h3 {
      font-size: 1.5rem;
      color: #16263a;
      margin-bottom: 15px;
    }
    .feature-item p {
      font-size: 1.05rem;
      color: #666;
      line-height: 1.8;
    }

/* Styles from prijavi-kvar.html */
.report-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .report-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
    }
    .report-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
    }
    .contact-boxes {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    @media (max-width: 768px) {
      .contact-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .contact-box-header {
        padding: 25px 20px;
      }
      .contact-box-header i {
        font-size: 2.5rem;
      }
      .contact-box-header h3 {
        font-size: 1.2rem;
      }
      .contact-box > p {
        padding: 20px;
        font-size: 0.95rem;
      }
      .phone-container {
        padding: 0 20px 25px;
      }
      .contact-box .phone {
        font-size: 1.6rem;
      }
      .phone-container .availability {
        font-size: 0.85rem;
      }
    }
    .contact-box {
      background: white;
      border-radius: 20px;
      padding: 0;
      text-align: left;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s;
      opacity: 1;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .contact-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(53, 134, 255, 0.2);
    }
    .contact-box-header {
      background: #3586ff;
      padding: 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    .contact-box-header i {
      font-size: 3rem;
      color: white;
      margin-bottom: 0;
    }
    .contact-box-header h3 {
      font-size: 1.4rem;
      color: white;
      margin: 0;
      font-weight: 600;
    }
    .contact-box > p {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
      padding: 25px 30px 20px;
      margin: 0;
      text-align: center;
    }
    .phone-container {
      padding: 0 30px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .contact-box .phone {
      font-size: 2rem;
      color: #3586ff;
      font-weight: 700;
      text-decoration: none;
      display: block;
      white-space: nowrap;
      word-break: keep-all;
      letter-spacing: 1px;
    }
    .contact-box .phone:hover {
      text-decoration: underline;
      transform: scale(1.05);
      transition: transform 0.2s;
    }
    .phone-container .availability {
      font-size: 0.9rem;
      color: #999;
      text-align: center;
    }
    .form-section {
      max-width: 900px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .form-container {
      background: white;
      border-radius: 20px;
      padding: 60px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      opacity: 1;
    }
    .form-container h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 40px;
      text-align: center;
    }
    .form-group {
      margin-bottom: 30px;
    }
    .form-group label {
      display: block;
      font-size: 1.1rem;
      color: #16263a;
      margin-bottom: 10px;
      font-weight: 600;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 15px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      transition: border-color 0.3s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #3586ff;
    }
    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }
    .submit-btn {
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      padding: 18px 50px;
      border: none;
      border-radius: 50px;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
      font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(53, 134, 255, 0.4);
    }
    .info-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      display: block !important;
      visibility: visible !important;
    }
    .info-box {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 50px;
      margin-bottom: 40px;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .info-box h2 {
      font-size: 2.2rem;
      color: #16263a;
      margin-bottom: 25px;
    }
    .info-box p {
      font-size: 1.15rem;
      color: #333;
      line-height: 2.2;
      margin-bottom: 20px;
    }
    .info-box ul {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }
    .info-box ul li {
      font-size: 1.1rem;
      color: #333;
      line-height: 2;
      padding: 12px 0;
      padding-left: 35px;
      position: relative;
    }
    .info-box ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #3586ff;
      font-size: 1.5rem;
      font-weight: bold;
    }

/* Styles from kontakt.html */
.contact-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #16263a 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .contact-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      opacity: 1;
    }
    .contact-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
      opacity: 1;
    }
    .contact-container {
      max-width: 1400px;
      margin: 80px auto;
      padding: 0 20px;
      display: grid !important;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      visibility: visible !important;
      opacity: 1 !important;
    }
    .contact-info {
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .contact-info h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 40px;
    }
    .info-item {
      background: white;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      display: flex !important;
      align-items: start;
      gap: 20px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .info-item i {
      font-size: 2.5rem;
      color: #3586ff;
      min-width: 50px;
    }
    .info-item-content h3 {
      font-size: 1.4rem;
      color: #16263a;
      margin-bottom: 10px;
    }
    .info-item-content p {
      font-size: 1.1rem;
      color: #666;
      line-height: 1.8;
      margin: 0;
    }
    .info-item-content a {
      color: #3586ff;
      text-decoration: none;
      font-weight: 600;
    }
    .info-item-content a:hover {
      text-decoration: underline;
    }
    .contact-form-container {
      background: white;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .contact-form-container h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 40px;
    }
    .form-group {
      margin-bottom: 25px;
    }
    .form-group label {
      display: block;
      font-size: 1.1rem;
      color: #16263a;
      margin-bottom: 10px;
      font-weight: 600;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      transition: border-color 0.3s;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #3586ff;
    }
    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }
    .submit-btn {
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      padding: 18px 50px;
      border: none;
      border-radius: 50px;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
      font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(53, 134, 255, 0.4);
    }
    .map-section {
      max-width: 1400px;
      margin: 80px auto;
      padding: 0 20px;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      height: 500px;
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    .working-hours {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    .hours-box {
      background: white;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .hours-box h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 40px;
      text-align: center;
    }
    .hours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .hours-item {
      text-align: center;
      padding: 30px;
      background: #f8f9fa;
      border-radius: 15px;
    }
    .hours-item h3 {
      font-size: 1.4rem;
      color: #16263a;
      margin-bottom: 15px;
    }
    .hours-item p {
      font-size: 1.1rem;
      color: #666;
      line-height: 1.8;
    }
    @media (max-width: 968px) {
      .contact-container {
        grid-template-columns: 1fr;
      }
    }

/* Styles from cjenovnik.html */
.pricing-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .pricing-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      opacity: 1;
    }
    .pricing-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
      opacity: 1;
    }
    .content-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .info-box {
      background: white;
      border-radius: 20px;
      padding: 60px;
      margin-bottom: 50px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.08);
      opacity: 1;
    }
    .info-box h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 30px;
      border-left: 5px solid #3586ff;
      padding-left: 20px;
    }
    .info-box p {
      font-size: 1.15rem;
      color: #333;
      line-height: 2.2;
      margin-bottom: 25px;
    }
    .pricing-table {
      background: white;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin: 60px 0;
      opacity: 1;
      overflow-x: auto;
    }
    .pricing-table h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 40px;
      text-align: center;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 30px;
    }
    th {
      background: #3586ff;
      color: white;
      padding: 20px;
      text-align: left;
      font-size: 1.2rem;
      font-weight: 600;
    }
    td {
      padding: 20px;
      border-bottom: 1px solid #e9ecef;
      font-size: 1.1rem;
      color: #333;
    }
    tr:hover {
      background: #f8f9fa;
    }
    .download-box {
      background: linear-gradient(135deg, #16263a 0%, #1e5fcc 100%);
      border-radius: 20px;
      padding: 60px;
      color: white;
      text-align: center;
      opacity: 1;
    }
    .download-box h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
    }
    .download-box p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      line-height: 1.8;
    }
    .download-btn {
      display: inline-block;
      background: #3586ff;
      color: white;
      padding: 20px 50px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.3rem;
      transition: all 0.3s;
    }
    .download-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(53, 134, 255, 0.4);
    }

/* Styles from elektro.html */
    .grid-hero {
      margin-top: 100px;
      padding: 60px 20px;
      background: #16263a;
      color: white;
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .grid-hero h1 {
      font-size: 3rem;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .grid-hero p {
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .services-grid {
      max-width: 1400px;
      margin: 60px auto;
      padding: 0 20px;
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .grid-item {
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
      border: 2px solid #e9ecef;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      position: relative;
      overflow: hidden;
    }
    .grid-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(53, 134, 255, 0.1), transparent);
      transition: left 0.5s;
    }
    .grid-item:hover::before {
      left: 100%;
    }
    .grid-item:hover {
      border-color: #3586ff;
      transform: scale(1.05);
      box-shadow: 0 15px 35px rgba(53, 134, 255, 0.2);
    }
    .grid-item i {
      font-size: 2.5rem;
      color: #3586ff;
      margin-bottom: 15px;
    }
    .grid-item h3 {
      font-size: 1.3rem;
      color: #16263a;
      margin-bottom: 10px;
    }
    .grid-item p {
      color: #666;
      font-size: 1rem;
      line-height: 1.8;
    }
    .grid-hero img {
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }

/* Styles from lift-postrojenje.html */
.list-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .list-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .list-hero p {
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .services-list {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .list-item {
      background: white;
      border-left: 5px solid #3586ff;
      border-radius: 10px;
      padding: 30px 40px;
      margin-bottom: 25px;
      opacity: 1 !important;
      visibility: visible !important;
      display: flex !important;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      align-items: center;
      gap: 30px;
      transition: all 0.3s;
    }
    .list-item:hover {
      transform: translateX(10px);
      box-shadow: 0 10px 25px rgba(53, 134, 255, 0.15);
    }
    .list-item i {
      font-size: 2.5rem;
      color: #3586ff;
      min-width: 60px;
      text-align: center;
    }
    .list-item-content {
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .list-item-content h3 {
      font-size: 1.5rem;
      color: #16263a;
      margin-bottom: 10px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .list-item-content p {
      color: #666;
      line-height: 1.8;
      margin: 0;
      font-size: 1.05rem;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .intro-section {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .intro-box {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 50px;
      margin-bottom: 50px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    .intro-box h2 {
      font-size: 2.2rem;
      color: #16263a;
      margin-bottom: 25px;
      text-align: center;
    }
    .intro-box p {
      font-size: 1.15rem;
      color: #333;
      line-height: 2;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .list-hero img {
      max-width: 600px;
      width: 100%;
      border-radius: 15px;
      margin-top: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    @media (max-width: 768px) {
      .list-item {
        flex-direction: column;
        text-align: center;
      }
    }

/* Styles from bravarija-centralno-grijanje.html */
.service-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .service-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 700;
      opacity: 1;
    }
    .service-hero p {
      opacity: 1;
    }
    .cards-container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .service-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      padding-bottom: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      opacity: 1;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(53, 134, 255, 0.2);
    }
    .service-card i {
      font-size: 3rem;
      color: #3586ff;
      margin-bottom: 20px;
    }
    .service-card h3 {
      font-size: 1.5rem;
      color: #16263a;
      margin-bottom: 15px;
    }
    .service-card p {
      color: #666;
      line-height: 1.8;
      font-size: 1.05rem;
    }
    .service-hero img {
      opacity: 1;
    }

/* Styles from vodovod-kanalizacija.html */
.hero-with-image {
      margin-top: 100px;
      height: 500px;
      background: linear-gradient(rgba(22, 38, 58, 0.7), rgba(30, 95, 204, 0.7)), url('./images/elevator.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .hero-with-image h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      opacity: 1;
    }
    .hero-with-image p {
      opacity: 1;
    }
    .services-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .services-section h2 {
      text-align: center;
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 50px;
      opacity: 1;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .service-box {
      background: white;
      border-radius: 15px;
      padding: 35px;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: all 0.4s;
      opacity: 1;
      border-top: 4px solid #3586ff;
    }
    .service-box:hover {
      transform: translateY(-15px);
      box-shadow: 0 15px 40px rgba(53, 134, 255, 0.3);
    }
    .service-box i {
      font-size: 3rem;
      color: #3586ff;
      margin-bottom: 20px;
    }
    .service-box h3 {
      font-size: 1.4rem;
      color: #16263a;
      margin-bottom: 15px;
    }
    .service-box p {
      color: #666;
      line-height: 1.8;
    }

/* Styles from gradjevina.html */
.masonry-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: #16263a;
      color: white;
      text-align: center;
    }
    .masonry-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 1;
    }
    .masonry-hero p {
      opacity: 1;
    }
    .masonry-grid {
      max-width: 1400px;
      margin: 60px auto;
      padding: 0 20px;
      column-count: 3;
      column-gap: 30px;
    }
    .masonry-item {
      break-inside: avoid;
      background: white;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      opacity: 1;
      transition: all 0.3s;
    }
    .masonry-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(53, 134, 255, 0.2);
    }
    .masonry-item i {
      font-size: 2.5rem;
      color: #3586ff;
      margin-bottom: 15px;
    }
    .masonry-item h3 {
      font-size: 1.4rem;
      color: #16263a;
      margin-bottom: 12px;
    }
    .masonry-item p {
      color: #666;
      line-height: 1.7;
    }
    .masonry-item.tall {
      padding: 40px;
    }
    @media (max-width: 1024px) {
      .masonry-grid {
        column-count: 2;
      }
    }
    @media (max-width: 768px) {
      .masonry-grid {
        column-count: 1;
      }
    }

/* Styles from adaptacija-renoviranje.html */
.timeline-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .timeline-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 1;
    }
    .timeline {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background: #3586ff;
      transform: translateX(-50%);
    }
    .timeline-item {
      margin-bottom: 60px;
      position: relative;
      opacity: 1;
    }
    .timeline-item:nth-child(odd) {
      padding-right: 50%;
    }
    .timeline-item:nth-child(even) {
      padding-left: 50%;
    }
    .timeline-content {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      position: relative;
    }
    .timeline-content::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: #3586ff;
      border-radius: 50%;
      top: 30px;
      border: 4px solid white;
      box-shadow: 0 0 0 4px #3586ff;
    }
    .timeline-item:nth-child(odd) .timeline-content::before {
      right: -10px;
    }
    .timeline-item:nth-child(even) .timeline-content::before {
      left: -10px;
    }
    .timeline-content i {
      font-size: 2.5rem;
      color: #3586ff;
      margin-bottom: 15px;
    }
    .timeline-content h3 {
      font-size: 1.5rem;
      color: #16263a;
      margin-bottom: 12px;
    }
    .timeline-content p {
      color: #666;
      line-height: 1.8;
    }
    @media (max-width: 768px) {
      .timeline::before {
        left: 30px;
      }
      .timeline-item {
        padding-left: 70px !important;
        padding-right: 0 !important;
      }
      .timeline-content::before {
        left: -10px !important;
      }
    }

/* Styles from tcs-interfonska-oprema.html */
.cards-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: #16263a;
      color: white;
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .cards-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .cards-hero p {
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .hover-cards {
      max-width: 1300px;
      margin: 60px auto;
      padding: 0 20px;
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .hover-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      position: relative;
      overflow: hidden;
    }
    .hover-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #3586ff, #1e5fcc);
      transform: scaleX(0);
      transition: transform 0.4s;
    }
    .hover-card:hover::before {
      transform: scaleX(1);
    }
    .hover-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 20px 50px rgba(53, 134, 255, 0.3);
    }
    .hover-card i {
      font-size: 3.5rem;
      color: #3586ff;
      margin-bottom: 25px;
      transition: transform 0.4s;
    }
    .hover-card:hover i {
      transform: scale(1.2) rotate(5deg);
    }
    .hover-card h3 {
      font-size: 1.6rem;
      color: #16263a;
      margin-bottom: 15px;
      transition: color 0.3s;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .hover-card:hover h3 {
      color: #3586ff;
    }
    .hover-card p {
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .hover-card i {
      opacity: 1 !important;
      visibility: visible !important;
    }

/* Styles from higijena.html */
.split-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .split-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .split-hero p {
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .split-container {
      display: grid !important;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
      margin: 60px 0;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .split-left {
      background: linear-gradient(rgba(22, 38, 58, 0.9), rgba(30, 95, 204, 0.9)), url('./images/elevator.jpg');
      background-size: cover;
      background-position: center;
      display: flex !important;
      opacity: 1 !important;
      visibility: visible !important;
      align-items: center;
      justify-content: center;
      color: white;
      padding: 60px;
    }
    .split-left h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .split-left p {
      font-size: 1.1rem;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .split-right {
      background: #f8f9fa;
      padding: 60px;
      display: flex !important;
      flex-direction: column;
      justify-content: center;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .service-feature {
      margin-bottom: 40px;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .service-feature i {
      font-size: 2.5rem;
      color: #3586ff;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .service-feature h3 {
      font-size: 1.5rem;
      color: #16263a;
      margin-bottom: 12px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .service-feature p {
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    @media (max-width: 968px) {
      .split-container {
        grid-template-columns: 1fr;
      }
    }

/* Styles from protiv-pozarna-zastita.html */
.feature-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: #16263a;
      color: white;
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .feature-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .feature-hero p {
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .feature-boxes {
      max-width: 1400px;
      margin: 60px auto;
      padding: 0 20px;
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .feature-box {
      background: white;
      border-radius: 20px;
      padding: 45px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      text-align: center;
      transition: all 0.4s;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      border: 3px solid transparent;
      position: relative;
      overflow: visible !important;
      box-sizing: border-box !important;
    }
    .feature-box::after {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      border-radius: 20px;
      background: linear-gradient(135deg, #3586ff, #1e5fcc);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s;
    }
    .feature-box:hover::after {
      opacity: 1;
    }
    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(53, 134, 255, 0.3);
      background: #3586ff !important;
    }
    .feature-box i {
      font-size: 3.5rem !important;
      color: #3586ff !important;
      margin-bottom: 25px !important;
      transition: transform 0.4s;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      width: auto !important;
      height: auto !important;
    }
    .feature-box:hover i {
      transform: scale(1.15) rotate(5deg);
      color: white !important;
    }
    .feature-box h3 {
      font-size: 1.6rem;
      color: #16263a;
      margin-bottom: 15px;
      transition: color 0.3s;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .feature-box:hover h3 {
      color: white !important;
    }
    .feature-box p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
      transition: color 0.3s;
    }
    .feature-box:hover p {
      color: white !important;
    }
    .feature-box ul {
      text-align: left;
      color: #666;
      line-height: 2;
      list-style: none;
      padding: 0 !important;
      margin-top: 20px !important;
      margin-bottom: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      width: 100% !important;
      box-sizing: border-box !important;
      position: relative !important;
    }
    .feature-box ul li {
      opacity: 1 !important;
      visibility: visible !important;
      display: list-item !important;
      color: #666 !important;
      font-size: 1rem !important;
      padding: 8px 0 !important;
      padding-left: 25px !important;
      padding-right: 0 !important;
      position: relative;
      margin-bottom: 5px;
      width: 100% !important;
      box-sizing: border-box !important;
      word-wrap: break-word !important;
    }
    /* Duplicate removed - using main .feature-box i styles above */
    .feature-box ul li::before {
      content: '✓ ';
      color: #3586ff !important;
      font-weight: bold;
      margin-right: 8px;
      position: absolute;
      left: 0;
      opacity: 1 !important;
      visibility: visible !important;
    }

/* Styles from ostalo.html */
.accordion-hero {
      margin-top: 100px;
      padding: 80px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .accordion-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .accordion-hero p {
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .accordion-container {
      max-width: 900px;
      margin: 60px auto;
      padding: 0 20px;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .accordion-item {
      background: white;
      border-radius: 15px;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .accordion-header {
      padding: 25px 30px;
      cursor: pointer;
      display: flex !important;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
      border-left: 5px solid transparent;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .accordion-header:hover {
      background: #f8f9fa;
      border-left-color: #3586ff;
    }
    .accordion-header.active {
      background: #f0f7ff;
      border-left-color: #3586ff;
    }
    .accordion-header h3 {
      font-size: 1.4rem;
      color: #16263a;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .accordion-header i {
      font-size: 1.8rem;
      color: #3586ff;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .accordion-header .icon {
      font-size: 1.5rem;
      color: #3586ff;
      transition: transform 0.3s;
    }
    .accordion-header.active .icon {
      transform: rotate(180deg);
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .accordion-content.active {
      max-height: 1000px;
    }
    .accordion-content-inner {
      padding: 0 30px 25px 30px;
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .accordion-content-inner p {
      opacity: 1 !important;
      visibility: visible !important;
    }
    .accordion-content-inner ul {
      list-style: none;
      padding: 0;
      margin-top: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .accordion-content-inner ul li {
      padding: 8px 0;
      padding-left: 25px;
      position: relative;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .accordion-content-inner ul li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: #3586ff;
      font-weight: bold;
    }

/* Styles from hitna-intervencija.html */
.cta-hero {
      margin-top: 100px;
      min-height: 70vh;
      background: linear-gradient(rgba(22, 38, 58, 0.85), rgba(30, 95, 204, 0.85)), url('./images/elevator.jpg');
      background-size: cover;
      background-position: center;
      display: flex !important;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 60px 20px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-hero-content {
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .cta-hero-content h1 {
      font-size: 4.5rem;
      margin-bottom: 30px;
      font-weight: 700;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .cta-hero-content p {
      font-size: 1.5rem;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 1 !important;
      visibility: visible !important;
      color: white !important;
    }
    .cta-buttons {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-button {
      padding: 20px 50px;
      font-size: 1.3rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-flex !important;
      align-items: center;
      gap: 12px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-button.primary {
      background: #3586ff;
      color: white;
      box-shadow: 0 10px 30px rgba(53, 134, 255, 0.4);
    }
    .cta-button.primary:hover {
      background: #1e5fcc;
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(53, 134, 255, 0.6);
    }
    .cta-button.secondary {
      background: white;
      color: #3586ff;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }
    .cta-button.secondary:hover {
      background: #f8f9fa;
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    }
    .services-quick {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .services-quick h2 {
      text-align: center;
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 50px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .quick-grid {
      display: grid !important;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .quick-item {
      background: white;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
    }
    .quick-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(53, 134, 255, 0.2);
    }
    .quick-item i {
      font-size: 2.5rem;
      color: #3586ff;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .quick-item h3 {
      font-size: 1.3rem;
      color: #16263a;
      margin-bottom: 10px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .quick-item p {
      color: #666;
      font-size: 0.95rem;
      opacity: 1 !important;
      visibility: visible !important;
    }

/* Styles for odrzavanje-zgrada.html */
    .maintenance-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .maintenance-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .maintenance-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .law-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .law-card {
      background: white;
      border-radius: 20px;
      padding: 60px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      text-align: center;
      margin-bottom: 40px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .law-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
    }
    .law-icon i {
      font-size: 3rem;
      color: white;
    }
    .law-card h2 {
      font-size: 2rem;
      color: #16263a;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .law-intro {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .law-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }
    .law-list li {
      padding: 15px 0;
      padding-left: 35px;
      position: relative;
      color: #555;
      font-size: 1.1rem;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .law-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #3586ff;
      font-weight: bold;
      font-size: 1.3rem;
    }
    .highlight-box {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-left: 5px solid #3586ff;
      padding: 40px;
      border-radius: 15px;
    }
    .service-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }
    .feature-box-maintenance {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .feature-box-maintenance:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(53, 134, 255, 0.2);
    }
    .feature-box-maintenance i {
      font-size: 2.5rem;
      color: #3586ff;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .feature-box-maintenance h3 {
      font-size: 1.3rem;
      color: #16263a;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .feature-box-maintenance p {
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-section-maintenance {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .cta-box-maintenance {
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      color: white;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-box-maintenance h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: white !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-box-maintenance p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      line-height: 1.8;
      color: white !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-buttons-maintenance {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-button-maintenance {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-button-maintenance:not(.secondary) {
      background: white;
      color: #3586ff;
    }
    .cta-button-maintenance:not(.secondary):hover {
      background: #f8f9fa;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .cta-button-maintenance.secondary {
      background: rgba(255,255,255,0.2);
      color: white;
      border: 2px solid white;
    }
    .cta-button-maintenance.secondary:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .maintenance-hero h1 {
        font-size: 2.5rem;
      }
      .maintenance-hero p {
        font-size: 1.1rem;
      }
      .law-card {
        padding: 40px 20px;
      }
      .law-card h2 {
        font-size: 1.5rem;
      }
      .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .cta-box-maintenance {
        padding: 40px 20px;
      }
      .cta-box-maintenance h2 {
        font-size: 2rem;
      }
      .cta-box-maintenance p {
        font-size: 1.1rem;
      }
      .cta-buttons-maintenance {
        flex-direction: column;
        align-items: center;
      }
      .cta-button-maintenance {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }

/* Styles for vozni-park.html */
    .fleet-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .fleet-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .fleet-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .fleet-intro {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .fleet-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 60px;
    }
    .stat-item-fleet {
      background: white;
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .stat-item-fleet:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(53, 134, 255, 0.3);
    }
    .stat-number-fleet {
      font-size: 4rem;
      font-weight: 700;
      color: #3586ff;
      margin-bottom: 10px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .stat-label-fleet {
      font-size: 1.2rem;
      color: #666;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .vehicle-types {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 40px;
    }
    .vehicle-type-card {
      background: white;
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .vehicle-type-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(53, 134, 255, 0.2);
    }
    .vehicle-type-card i {
      font-size: 3.5rem;
      color: #3586ff;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .vehicle-type-card h3 {
      font-size: 1.5rem;
      color: #16263a;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .vehicle-type-card p {
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .fleet-benefits {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }
    .fleet-benefits li {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 30px;
      background: white;
      border-radius: 15px;
      margin-bottom: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .fleet-benefits li:hover {
      transform: translateX(10px);
      box-shadow: 0 10px 30px rgba(53, 134, 255, 0.2);
    }
    .fleet-benefits li i {
      font-size: 2.5rem;
      color: #3586ff;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .fleet-benefits li h3 {
      font-size: 1.3rem;
      color: #16263a;
      margin-bottom: 10px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .fleet-benefits li p {
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .gallery-intro {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 30px;
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .vehicle-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin: 40px 0;
    }
    .gallery-item {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .gallery-item:hover {
      transform: scale(1.05);
    }
    .gallery-placeholder {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 80px 20px;
      text-align: center;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .gallery-placeholder i {
      font-size: 4rem;
      color: #3586ff;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .gallery-placeholder p {
      color: #666;
      font-size: 1.1rem;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .gallery-note {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      border-left: 4px solid #3586ff;
      margin-top: 30px;
      color: #666;
      font-size: 0.95rem;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .gallery-note i {
      color: #3586ff;
      margin-right: 10px;
    }
    .maintenance-features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-top: 30px;
    }
    .maintenance-feature {
      background: white;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .maintenance-feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(53, 134, 255, 0.2);
    }
    .maintenance-feature i {
      font-size: 2.5rem;
      color: #3586ff;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .maintenance-feature h4 {
      font-size: 1.2rem;
      color: #16263a;
      margin-bottom: 10px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .maintenance-feature p {
      color: #666;
      font-size: 0.95rem;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-section-fleet {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .cta-box-fleet {
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      color: white;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-box-fleet h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: white !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-box-fleet p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      line-height: 1.8;
      color: white !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-buttons-fleet {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-button-fleet {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-button-fleet:not(.secondary) {
      background: white;
      color: #3586ff;
    }
    .cta-button-fleet:not(.secondary):hover {
      background: #f8f9fa;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .cta-button-fleet.secondary {
      background: rgba(255,255,255,0.2);
      color: white;
      border: 2px solid white;
    }
    .cta-button-fleet.secondary:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-3px);
    }
    @media (max-width: 768px) {
      .fleet-hero h1 {
        font-size: 2.5rem;
      }
      .fleet-hero p {
        font-size: 1.1rem;
      }
      .fleet-stats {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .vehicle-types {
        grid-template-columns: 1fr;
      }
      .vehicle-gallery {
        grid-template-columns: 1fr;
      }
      .maintenance-features {
        grid-template-columns: repeat(2, 1fr);
      }
      .fleet-benefits li {
        flex-direction: column;
        text-align: center;
      }
      .cta-box-fleet {
        padding: 40px 20px;
      }
      .cta-box-fleet h2 {
        font-size: 2rem;
      }
      .cta-box-fleet p {
        font-size: 1.1rem;
      }
      .cta-buttons-fleet {
        flex-direction: column;
        align-items: center;
      }
      .cta-button-fleet {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }

/* Styles for projekti.html */
    .projects-hero {
      margin-top: 100px;
      padding: 100px 20px;
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      color: white;
      text-align: center;
    }
    .projects-hero h1 {
      font-size: 4rem;
      margin-bottom: 30px;
      font-weight: 700;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .projects-hero p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .projects-intro {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .intro-text-box {
      background: white;
      border-radius: 20px;
      padding: 60px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      text-align: center;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .intro-text-box h2 {
      font-size: 2.5rem;
      color: #16263a;
      margin-bottom: 25px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .intro-text-box p {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.8;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .projects-categories {
      max-width: 1200px;
      margin: 60px auto 40px;
      padding: 0 20px;
    }
    .category-tabs {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    .tab-button {
      padding: 15px 30px;
      background: white;
      border: 2px solid #e0e0e0;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #666;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .tab-button:hover {
      border-color: #3586ff;
      color: #3586ff;
      transform: translateY(-2px);
    }
    .tab-button.active {
      background: #3586ff;
      border-color: #3586ff;
      color: white;
    }
    .projects-grid {
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .project-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
      display: block;
    }
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(53, 134, 255, 0.3);
    }
    .project-image {
      position: relative;
      height: 250px;
      overflow: hidden;
    }
    .project-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .project-placeholder i {
      font-size: 5rem;
      color: #3586ff;
      opacity: 0.5;
    }
    .project-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(53, 134, 255, 0.9);
      color: white;
      padding: 8px 20px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
    }
    .project-content {
      padding: 30px;
    }
    .project-content h3 {
      font-size: 1.5rem;
      color: #16263a;
      margin-bottom: 15px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .project-location {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .project-location i {
      color: #3586ff;
    }
    .project-description {
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .project-details {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 20px;
      border-top: 1px solid #e0e0e0;
    }
    .detail-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #666;
      font-size: 0.9rem;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .detail-item i {
      color: #3586ff;
    }
    .projects-stats {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .stat-box-project {
      background: white;
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .stat-box-project:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(53, 134, 255, 0.3);
    }
    .stat-number-project {
      font-size: 3.5rem;
      font-weight: 700;
      color: #3586ff;
      margin-bottom: 10px;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .stat-label-project {
      font-size: 1.1rem;
      color: #666;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-section-projects {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .cta-box-projects {
      background: linear-gradient(135deg, #3586ff 0%, #1e5fcc 100%);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      color: white;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-box-projects h2 {
      font-size: 2.5rem;
      margin-bottom: 25px;
      color: white !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-box-projects p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      line-height: 1.8;
      color: white !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-buttons-projects {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .cta-button-projects {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .cta-button-projects:not(.secondary) {
      background: white;
      color: #3586ff;
    }
    .cta-button-projects:not(.secondary):hover {
      background: #f8f9fa;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .cta-button-projects.secondary {
      background: rgba(255,255,255,0.2);
      color: white;
      border: 2px solid white;
    }
    .cta-button-projects.secondary:hover {
      background: rgba(255,255,255,0.3);
      transform: translateY(-3px);
    }
    @media (max-width: 1024px) {
      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .projects-stats {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .projects-hero h1 {
        font-size: 2.5rem;
      }
      .projects-hero p {
        font-size: 1.1rem;
      }
      .intro-text-box {
        padding: 40px 20px;
      }
      .intro-text-box h2 {
        font-size: 2rem;
      }
      .category-tabs {
        flex-direction: column;
        align-items: stretch;
      }
      .tab-button {
        width: 100%;
      }
      .projects-grid {
        grid-template-columns: 1fr;
      }
      .projects-stats {
        grid-template-columns: 1fr;
      }
      .cta-box-projects {
        padding: 40px 20px;
      }
      .cta-box-projects h2 {
        font-size: 2rem;
      }
      .cta-box-projects p {
        font-size: 1.1rem;
      }
      .cta-buttons-projects {
        flex-direction: column;
        align-items: center;
      }
      .cta-button-projects {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Prevent horizontal scrolling on all devices */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

/* Mobile responsive styles for all hero sections */
@media (max-width: 768px) {
  /* About Hero */
  .about-hero {
    padding: 60px 15px !important;
    margin-top: 80px !important;
  }
  .about-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
  }
  .about-hero p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  /* Services Hero */
  .services-hero {
    padding: 60px 15px !important;
    margin-top: 80px !important;
  }
  .services-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
  }
  .services-hero p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  /* Contact Hero */
  .contact-hero {
    padding: 60px 15px !important;
    margin-top: 80px !important;
  }
  .contact-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
  }
  .contact-hero p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  /* Hero with Image */
  .hero-with-image {
    height: 400px !important;
    padding: 20px 15px !important;
    margin-top: 80px !important;
  }
  .hero-with-image h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
    margin-bottom: 15px !important;
  }
  .hero-with-image p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  /* Masonry Hero */
  .masonry-hero {
    padding: 60px 15px !important;
    margin-top: 80px !important;
  }
  .masonry-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
    margin-bottom: 15px !important;
  }
  .masonry-hero p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  /* Services Section */
  .services-section {
    padding: 0 15px !important;
  }
  .services-section h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
    margin-bottom: 30px !important;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 10px !important;
  }

  /* Service Box */
  .service-box {
    padding: 25px 20px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .service-box h3 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .service-box p {
    font-size: 0.95rem !important;
  }

  /* Content Section */
  .content-section {
    padding: 0 15px !important;
  }
  .content-section h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
  }
  .content-section p {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  /* Intro Box */
  .intro-box {
    padding: 40px 20px !important;
    margin: 0 15px !important;
  }
  .intro-box h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .intro-box p {
    font-size: 1rem !important;
  }

  /* Contact Container */
  .contact-container {
    padding: 0 15px !important;
  }
  .contact-info h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* All H1, H2, H3 general mobile styles */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  h3 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Prevent overflow on images */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Cards and containers */
  .service-card,
  .card,
  .masonry-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
  }

  /* Text blocks */
  .text-block {
    padding: 20px 15px !important;
  }
  .text-block h2 {
    font-size: 1.8rem !important;
    padding: 0 10px;
  }
  .text-block p {
    font-size: 1rem !important;
    padding: 0 10px;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .about-hero h1,
  .services-hero h1,
  .contact-hero h1,
  .hero-with-image h1,
  .masonry-hero h1 {
    font-size: 1.5rem !important;
    padding: 0 5px;
  }

  .about-hero p,
  .services-hero p,
  .contact-hero p,
  .hero-with-image p,
  .masonry-hero p {
    font-size: 0.9rem !important;
    padding: 0 5px;
  }

  .services-section h2,
  .content-section h2,
  .intro-box h2 {
    font-size: 1.5rem !important;
    padding: 0 5px;
  }

  h1 {
    font-size: 1.5rem !important;
  }
  h2 {
    font-size: 1.5rem !important;
  }
  h3 {
    font-size: 1.2rem !important;
  }

  .about-hero,
  .services-hero,
  .contact-hero,
  .masonry-hero {
    padding: 40px 10px !important;
  }

  .hero-with-image {
    height: 300px !important;
    padding: 15px 10px !important;
  }

  .service-box {
    padding: 20px 15px !important;
  }

  /* Mobile menu improvements */
  .mobile-menu {
    display: block !important;
    padding: 10px !important;
    cursor: pointer !important;
    z-index: 1001 !important;
  }

  .mobile-menu i {
    display: block !important;
    font-size: 28px !important;
    color: #000 !important;
  }

  .mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    height: 100vh !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
  }

  .mobile-nav.show {
    display: flex !important;
    flex-direction: column !important;
    overflow-y: hidden !important;
  }

  .mobile-nav ul {
    width: 100% !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    flex: 1 !important;
    overflow-y: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .mobile-nav ul li {
    padding: 10px 8px !important;
    font-size: 19px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .mobile-nav ul li a {
    font-size: 19px !important;
    padding: 6px 0 !important;
    display: block !important;
    width: 100% !important;
    line-height: 1.3 !important;
  }

  .close-holder {
    padding: 12px 15px !important;
    position: relative !important;
    top: 0 !important;
    z-index: 1002 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .close-holder p {
    font-size: 18px !important;
    margin: 0 !important;
    text-align: center !important;
    flex: 1 !important;
  }

  .close-button {
    font-size: 20px !important;
    padding: 2px !important;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Mobile Nav Footer Styles */
  .mobile-nav-footer {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 8px 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .mobile-nav-phone {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .phone-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    width: 100% !important;
  }

  .phone-label {
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    font-family: "Montserrat", sans-serif !important;
    text-align: center !important;
    opacity: 0.9 !important;
  }

  .mobile-nav-phone a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: "Montserrat", sans-serif !important;
    padding: 3px 8px !important;
    display: block !important;
    text-transform: none !important;
  }

  .mobile-nav-social {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 4px !important;
  }

  .mobile-nav-social a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
  }

  .mobile-nav-social a:hover {
    background-color: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.1) !important;
  }

  .mobile-nav-social a i {
    font-size: 22px !important;
    color: #ffffff !important;
  }

  /* Header improvements for mobile */
  header {
    padding: 0 15px !important;
    height: 80px !important;
  }

  header .logo img {
    width: 40px !important;
    height: auto !important;
  }

  .social-icons-header {
    display: none !important; /* Hide social icons on very small screens */
  }

  /* Better spacing for mobile */
  .hero-with-image,
  .about-hero,
  .services-hero,
  .contact-hero,
  .masonry-hero {
    margin-top: 80px !important;
  }

  /* Improve header layout on mobile */
  header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  /* Ensure logo doesn't shrink too much */
  header .logo {
    flex-shrink: 0 !important;
    min-width: 50px !important;
  }

  /* Make mobile menu button more prominent */
  #mobile-menu-btn {
    flex-shrink: 0 !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
  }

  .mobile-nav ul li a,
  .close-button {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Improve dropdown in mobile nav */
  .mobile-nav .dropdown {
    display: block !important;
    padding-left: 20px !important;
    margin-top: 10px !important;
  }

  .mobile-nav .dropdown li {
    padding: 10px 15px !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* Improve cards and content on mobile */
  .card,
  .service-card,
  .masonry-item {
    margin-bottom: 20px !important;
  }

  /* Better button sizes for touch */
  button,
  .cta-button,
  a.button {
    min-height: 44px !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
  }

  /* Improve form inputs on mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    min-height: 44px !important;
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 12px !important;
  }

  /* Better spacing for sections */
  section,
  .section {
    padding: 40px 15px !important;
  }

  /* Improve gallery on mobile */
  .gallery-top,
  .gallery-thumbs {
    width: 100% !important;
  }

  /* INDEX.HTML SPECIFIC MOBILE FIXES */
  section {
    position: relative !important;
    min-height: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .container {
    height: 60vh !important;
    min-height: 60vh !important;
    max-height: 60vh !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .container img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: -1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-title {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin: auto !important;
    text-align: center !important;
    padding: 0 20px !important;
    word-wrap: break-word !important;
    position: relative !important;
    z-index: 1 !important;
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5) !important;
  }

  .content {
    position: relative !important;
    width: 100% !important;
    min-height: auto !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 40px !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .cards .card:first-child {
    grid-column: span 1 !important;
  }

  .card {
    width: 100% !important;
    margin-top: 0 !important;
  }

  .card__inner {
    flex-direction: column !important;
    width: 100% !important;
  }

  .card__image-container {
    width: 100% !important;
    flex: none !important;
  }

  .card__image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
  }

  .card__content {
    padding: 20px !important;
    width: 100% !important;
  }

  .card__title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .card__description {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  /* Hide decorative images on mobile */
  .container .girl,
  .container .girl2,
  .container .rock {
    display: none !important;
  }

  /* Disable any transforms that might be from parallax */
  .container .bg1,
  .container .girl,
  .container .girl2,
  .container .rock {
    transform: none !important;
    will-change: auto !important;
  }

  /* Contact section mobile */
  .contact-section {
    padding: 40px 15px !important;
  }

  /* Gallery mobile */
  .case-study-gallery {
    width: 100% !important;
    padding: 0 15px !important;
  }

  .case-study {
    width: 100% !important;
    margin: 0 auto 20px !important;
  }

  /* Fix section positioning on mobile */
  section {
    position: relative !important;
    overflow-x: hidden !important;
  }

  /* Ensure header doesn't overlap content */
  header {
    z-index: 100 !important;
  }

  /* Fix container images positioning */
  .container .bg1 {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Disable pinning on mobile for section */
  section {
    position: relative !important;
    transform: none !important;
  }

  /* Ensure content flows normally on mobile */
  .content {
    position: relative !important;
    top: auto !important;
    transform: none !important;
  }
}

/* Additional mobile fixes for common issues */
@media (max-width: 768px) {
  /* Tables */
  table {
    width: 100% !important;
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Long text and URLs */
  p, span, div, a {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
  }

  /* Forms */
  input, textarea, select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Containers with fixed widths */
  .container,
  .containerfooter,
  .contact-container,
  .content-section {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Grid and flex containers */
  .services-grid,
  .masonry-grid,
  .cards-container {
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Footer */
  .footer {
    width: 100% !important;
    overflow-x: hidden !important;
  }
  .footer_inner {
    width: 100% !important;
    padding: 0 15px !important;
  }

  /* Header */
  header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding: 0 10px !important;
  }

  /* Ensure mobile menu button is visible and clickable */
  #mobile-menu-btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    position: relative !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  #mobile-menu-btn i {
    pointer-events: none !important;
  }

  /* Ensure mobile nav is properly positioned */
  #slider.mobile-nav {
    display: flex !important;
  }

  #slider.mobile-nav.show {
    display: flex !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  /* Prevent any element from causing overflow */
  * {
    max-width: 100% !important;
  }

  /* Specific fixes for long titles */
  .card__title,
  .project-title,
  .case-study-title {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}