/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Typography */
h1, h2, h3, .headline {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5em;
}

/* Top Heading */
.top-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: regular;
  letter-spacing: 12px;
  line-height: normal;
  text-decoration: none;
}

/* Headline */
.headline {
  font-size: 55px;
  font-weight: 600; /* SemiBold */
  letter-spacing: 10px;
  line-height: normal;
}

/* H1 */
h1 {
  font-size: 45px;
  font-weight: 700; /* Bold */
  letter-spacing: 6px;
  line-height: normal;
}

/* H2 */
h2 {
  font-size: 45px;
  font-weight: 600; /* SemiBold */
  letter-spacing: 2px;
  line-height: 1.2;
  margin-top: 10px;
}

/* H3 */
h3 {
  font-size: 24px;
  font-weight: 700; /* Bold */
  letter-spacing: 0px;
  line-height: 35px;
}

/* Body Text */
p, .text {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400; /* Regular */
  letter-spacing: 2px;
  line-height: 30px;
  margin-bottom: 5px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Responsive Typography */
@media (max-width: 1600px) {
  .headline {
    font-size: 50px;
    letter-spacing: 8px;
  }
  
  h1 {
    font-size: 42px;
    letter-spacing: 5px;
  }
  
  h2 {
    font-size: 42px;
  }
  
  .top-heading {
    font-size: 17px;
    letter-spacing: 10px;
  }
}

@media (max-width: 1400px) {
  .headline {
    font-size: 48px;
    letter-spacing: 7px;
  }
  
  h1 {
    font-size: 40px;
    letter-spacing: 4px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  p, .text {
    font-size: 17px;
    letter-spacing: 1.5px;
    line-height: 30px;
  }
  
  .top-heading {
    font-size: 16px;
    letter-spacing: 9px;
  }
}

@media (max-width: 1200px) {
  .headline {
    font-size: 45px;
    letter-spacing: 6px;
  }
  
  h1 {
    font-size: 38px;
    letter-spacing: 3px;
  }
  
  h2 {
    font-size: 38px;
    letter-spacing: 1.5px;
  }
  
  h3 {
    font-size: 23px;
    line-height: 32px;
  }
  
  p, .text {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 28px;
  }
  
  .top-heading {
    font-size: 15px;
    letter-spacing: 8px;
  }
}

@media (max-width: 1000px) {
  .headline {
    font-size: 40px;
    letter-spacing: 5px;
  }
  
  h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }
  
  h2 {
    font-size: 36px;
    letter-spacing: 1px;
  }
  
  p, .text {
    letter-spacing: 0.5px;
  }
  
  .top-heading {
    font-size: 14px;
    letter-spacing: 6px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  
  h2 {
    font-size: 30px;
    letter-spacing: 0.5px;
  }
  
  h3 {
    font-size: 26px;
    line-height: 30px;
  }
  
  .headline {
    font-size: 36px;
    letter-spacing: 4px;
  }
  
  p, .text {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.5px;
  }
  
  .top-heading {
    font-size: 14px;
    letter-spacing: 5px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
    letter-spacing: 0.5px;
  }
  
  h2 {
    font-size: 30px;
    letter-spacing: 0px;
  }
  
  h3 {
    font-size: 26;
    line-height: 28px;
  }
  
  .headline {
    font-size: 32px;
    letter-spacing: 3px;
  }
  
  p, .text {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0px;
  }
  
  .top-heading {
    font-size: 13px;
    letter-spacing: 4px;
  }
}

/* Header Styles */

.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


 @-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 5%;
  width: 100%;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border-bottom: 1px solid rgba(240, 240, 240, 0.8);
  padding: 15px 5%;
  width: 100%;
  /* position: sticky; */
  position: absolute;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: headerSlideDown 0.5s ease-out forwards;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Add shadow on scroll effect with JavaScript */
header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 5%;
}

/* Subtle hover effect */
header:hover {
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: 1260px !important;

}

.logo-container {
  display: flex;
  align-items: center;
  width: 17%;
  /* padding-right: 120px; */
}

.logo {
  height: 100px;
  width: 100%;
/* max-width: 90px; */
max-width: 140px;
object-fit: contain;
}

.nav-divider {
  height: 40px;
  width: 1px;
  background-color: #e0e0e0;
  margin: 0 20px;
}

nav {
  /* width: 80%; */
  width: 97%;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 20px 20px;
  border-left: 1px solid #02015F;
  border-right: 1px solid #02015F;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #02015F;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
  letter-spacing: 2px;
}

nav ul li a:hover {
  color: #EF5F36;
}

.language-selector {
  position: relative;
  /* width: 5%; */
  width: 9%;
  /* padding-left: 50px; */
  padding-left: 35px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.language-btn {
  background-color: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #02015F;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background-color: #f5f5f5;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 5px;
}

.language-dropdown {
  position: absolute;
  /* top: 100%; */
  top: 90%;
  right: 0px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  min-width: 110px;
  z-index: 100;
  overflow: hidden;
  /* padding-top: 15px; */
}

.language-dropdown::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: transparent;
}

.language-selector:hover .language-dropdown {
  display: flex;
}

.language-option {
  padding: 15px 15px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #02015F;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.language-option:hover {
  background-color: #EF5F36;
  color: #fff;
}

.language-option.active {
  background-color: #EF5F36;
  color: white;
}

/* About Section Styles */
.about-section {
  padding: 80px 5%;
  
  background-color: #fff;
}

.about-container {
  display: flex;
  margin: 0 auto;
  gap: 60px;
  max-width: 1260px;
}

.about-left, .about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-image {
  width: 100%;
  border-radius: 34px;
  object-fit: cover;
  margin-bottom: 30px;
}

.about-right .about-image {
  margin-top: 30px;
  margin-bottom: 0;
}

.about-text-container {
  padding: 0 20px;
}

#company-h {
  font-weight:800;
}

.company-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 12px;
  color: #EF5F36;
}

.about-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text, .about-company-founded {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* Stats Section Styles */
.stats-section {
  background-image: url('../images/naslovna-nums.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 50px;
  position: relative;
  border-radius: 32px;
  margin: 40px auto;
}

/* .stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 32px;
} */

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  min-height: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
  width: 33.33%;
}

.stat-icon-container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stat-icon {
  filter: brightness(0) invert(1);
  width: auto;
}

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 0px;
  margin-top: 30px;
  height: 36px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-top: 10px;
}

/* Stats Section Responsive Styles */
@media (min-width: 1601px) {
  .stats-section {
    padding: 100px 60px;
    margin: 60px auto;
  }
  
  .stats-container {
    max-width: 1600px;
    min-height: 450px;
  }
  
  .stat-icon-container {
    height: 140px;
    margin-bottom: 30px;
  }
  
  .stat-value {
    font-size: 38px;
    line-height: 42px;
    margin-top: 40px;
    height: 42px;
  }
  
  .stat-label {
    font-size: 32px;
  }
}

@media (max-width: 1600px) and (min-width: 1441px) {
  .stats-section {
    padding: 90px 50px;
    margin: 50px auto;
  }
  
  .stats-container {
    max-width: 1400px;
    min-height: 420px;
  }
  
  .stat-icon-container {
    height: 130px;
  }
  
  .stat-value {
    font-size: 36px;
    line-height: 40px;
    height: 40px;
  }
  
  .stat-label {
    font-size: 30px;
  }
}

@media (max-width: 1440px) and (min-width: 1201px) {
  .stats-section {
    padding: 80px 40px;
    margin: 45px auto;
  }
  
  .stats-container {
    max-width: 1200px;
    min-height: 380px;
  }
  
  .stat-icon-container {
    height: 110px;
  }
  
  .stat-value {
    font-size: 30px;
    line-height: 34px;
    height: 34px;
  }
  
  .stat-label {
    font-size: 24px;
  }
  
  .stat-icon {
    max-width: 120px;
    height: auto;
  }
}

@media (max-width: 1200px) and (min-width: 993px) {
  .stats-section {
    padding: 70px 30px;
    margin: 40px auto;
    max-width: 1100px;
  }
  
  .stats-container {
    max-width: 960px;
    min-height: 350px;
  }
  
  .stat-icon-container {
    height: 100px;
    margin-bottom: 15px;
  }
  
  .stat-value {
    font-size: 28px;
    line-height: 32px;
    margin-top: 25px;
    height: 32px;
  }
  
  .stat-label {
    font-size: 28px;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .stats-section {
    padding: 60px 25px;
    margin: 35px auto;
    max-width: 900px;
    border-radius: 28px;
  }
  
  .stats-section::before {
    border-radius: 28px;
  }
  
  .stats-container {
    max-width: 720px;
    min-height: 320px;
  }
  
  .stat-icon-container {
    height: 90px;
    margin-bottom: 10px;
  }

  .stat-icon {
    max-height: 80px;
  }
  
  .stat-value {
    font-size: 26px;
    line-height: 30px;
    margin-top: 20px;
    height: 30px;
  }
  
  .stat-label {
    font-size: 26px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 992px) {
  .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  .stat-value {
    margin-top: 0px;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .stat-icon-container {
    height: 80px;
    margin-bottom: 10px;
  }
  
  .blog-item {
    border-radius: 30px;
  }
  
  .blog-image-container {
    border-radius: 30px;
  }
  
  .stats-section {
    padding: 60px 20px;
    border-radius: 20px;
    margin: 30px 0;
  }
  
  .stats-section::before {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .stat-value, .stat-label {
    font-size: 20px;
  }
}

/* Partners/References Section Styles */
.partners-section {
  padding: 80px 0;
  background-color: #fff;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.partners-container {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.partners-label {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 12px;
  color: #EF5F36;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.partners-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: #333;
  margin-bottom: 50px;
}

.partners-container h2{
   font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: #333;
  margin-bottom: 50px;
}

.partners-slider {
  width: 100%;
  padding-bottom: 50px;
}

.partner-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 200px;
}

/* Swiper pagination customization */
.swiper-pagination-bullet {
  width: 21px !important;
  height: 21px !important;
  background: #EF5F36 !important;
  opacity: 0.3;
  margin: 0 10px !important;
}

.swiper-pagination {
  position: static !important;
  margin-top: 30px !important;
  margin-bottom: -150px !important;
  z-index: 100 !important;
}

.swiper-wrapper {
  align-items: center !important;
  padding: 20px 0;
}

.swiper-slide {
  padding: 20px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper {
  background-color: #F8F8F8 !important;
  padding-bottom: 80px !important;
  margin-bottom: 40px !important;
  overflow: visible !important;
}

/* Map Section Styles */
.map-section {
  width: 100%;
  height: 800px;
  line-height: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: none;
}

/* Footer Styles */
.footer {
  background-color: #fff;
  color: #02015F;
  font-family: 'Roboto', sans-serif;
}

.footer-main {
  margin: 0 auto;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #03015f1c;
}

.footer-column.left {
  border-top-left-radius: 0;
}

.footer-column.right {
  border-top-right-radius: 0;
}

.footer-grid.top .footer-column {
  height: auto;
  padding: 40px 5%;
}

.footer-grid.bottom .footer-column {
  height: auto;
  padding: 40px 5%;
  border-top: none;
}

.footer-column.mid {
  border-left: none;
  border-right: none;
}

.footer-logo {
  height: 160px;
  width: 100%;
  max-width: 275px;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #02015F;
}

.footer-text {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #02015F;
}

.certificates-container {
  display: flex;
  gap: 20px;
}

.certificate-img {
  height: 100px;
  width: auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  text-decoration: none;
}

.contact-icon {
  margin-right: 15px;
  margin-top: 5px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-link {
  color: #02015F;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #EF5F36;
}

.social-heading {
  margin-top: 30px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  color: #02015F;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px;  /* Add padding to increase hit area */
  position: relative;  /* For stable positioning */
}

/* Style for the divider between social icons */
.social-link[aria-hidden="true"] {
  color: #02015F;
  margin: 0 5px;
}

/* Add hover effect for social media icons */
.social-link img {
  transition: filter 0.3s ease;
  display: block;  /* Prevent inline quirks */
  position: relative;  /* Stabilize the image */
}

.social-link:hover img {
  /* This filter creates an orange color similar to #EF5F36 */
  filter: invert(42%) sepia(83%) saturate(1352%) hue-rotate(339deg) brightness(96%) contrast(98%);
}

/* Add a small delay to prevent accidental hover-offs */
.social-link:hover {
  transition-delay: 0.05s;
}

.footer-bottom {
  background-color: #02015F;
  color: white;
  padding: 20px 0;
}

.footer-bottom-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
}

.copyright {
  font-size: 14px;
  letter-spacing: 1px;
}

.policy-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.policy-link:hover {
  opacity: 0.8;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.hero-pages {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
 background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.hero-pages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 30% black tint */
  z-index: 1;
}

.hero-pages > * {
  position: relative;
  z-index: 2; /* Ensure content appears above the overlay */
}

.footer-contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #EF5F36;
}

.webcenter-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.webcenter-link:hover {
  color: #EF5F36;
}

/* Mobile Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #02015F;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  border: none;
}

.mobile-nav ul li {
  margin: 20px 0;
}

.mobile-nav ul li a {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  text-decoration: none;
  color: #02015F;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #EF5F36;
}

.mobile-language-selector {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.mobile-language-option {
  padding: 8px 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #02015F;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-language-option.active {
  background-color: #EF5F36;
  color: white;
}

/* Responsive Header Styles */
@media (max-width: 1600px) {
  .logo {
    height: 90px;
  }
  
  .logo-container {
    padding-right: 80px;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  
  .language-btn {
    font-size: 17px;
  }
}

@media (max-width: 1400px) {
  .logo {
    height: 80px;
  }
  
  .logo-container {
    padding-right: 60px;
    width: 15%;
  }
  
  nav {
    width: 80%;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a {
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .language-btn {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .logo {
    height: 70px;
  }
  
  .logo-container {
    padding-right: 40px;
  }
  
  nav ul li {
    margin: 0 5px;
  }
  
  nav ul li a {
    font-size: 15px;
    letter-spacing: 0.8px;
  }
  
  .language-btn {
    font-size: 15px;
    padding: 6px 10px;
  }
  
  .language-selector {
    padding-left: 30px;
  }
}

@media (max-width: 1000px) {
  header{
position: fixed;
  }

  .hamburger-menu {
    display: flex;
    order: 3;
  }
  
  nav {
    display: none;
  }
  
  .language-selector {
    display: none;
  }
  
  .header-container {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .logo-container {
    width: auto;
    margin-bottom: 0;
    padding-right: 0;
  }
  
  .about-container {
    flex-direction: column-reverse;
    padding: 0 5%;
  }
  
  .about-left {
    flex-direction: column-reverse;
    gap: 30px;
  }
  
  .about-text-container {
    padding: 0;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 3%;
  }
  
  .header-container {
    padding: 0 3%;
  }

  .hero-pages {
    height: 20vh;
  }

  .footer-logo {
    height: 100px;
    width: auto;
  }
  .certificate-img {
    height: 60px;
    width: auto;
  }
  
  .logo {
    height: 60px;
  }
  
  .contact-cta-heading {
    font-size: 36px;
  }
  
  .contact-cta-button {
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    font-size: 16px;
  }
  
  .footer-bottom-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 10px;
  }

  .about-image {
    max-height: 300px;
  }
  .footer-column {
    align-items: flex-start;
    border-right: none;
  }

  .footer-column.mid {
    border-top: none;
    border-bottom: none;
    
  }

  .about-left .about-image{
    display: none;
  }
  .footer-grid.bottom .footer-column.mid{
    display: none;
  }


}

@media (max-width: 480px) {
  .logo-container {
    width: 50%;
  }
  
  nav ul {
    border-left: 1px solid #02015F;
    border-right: 1px solid #02015F;
  }
  
  nav ul li {
    margin: 3px;
  }
  
  nav ul li a {
    font-size: 13px;
    letter-spacing: 0px;
  }
  
  .language-btn {
    font-size: 13px;
    padding: 5px 8px;
  }
  
  .language-option {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Mobile menu for very small screens */
@media (max-width: 380px) {
  nav ul li {
    margin: 2px;
  }
  
  nav ul li a {
    font-size: 12px;
  }
}

/* Responsive adjustments for footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-heading {
    font-size: 28px;
  }


}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 800px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow .slide {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;

    /* opacity: 0; */
    /* transition: opacity 1.5s ease-in-out; */
    z-index: 1;
    padding: 0;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    color: white;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 12px;
    font-size: 20px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-cta-container {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-line {
    width: 1px;
    height: 250px;
    background-color: white;
    margin-bottom: 15px;
}

.hero-cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 12px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.hero-cta:hover {
    color: #EF5F36;
    transform: translateY(-5px);
}

.company-h {
    font-weight:700;
}



/* Stats Section Styles */
.stats-section {
    /* background-image: url('../images/naslovna-nums.jpg'); */
    padding: 80px 50px;
    position: relative;
    border-radius: 32px;
    margin: 40px auto;

}

.stats-section picture img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}






.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    width: 33.33%;
}

.stat-icon-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stat-icon {
    filter: brightness(0) invert(1);
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 0px;
    margin-top: 30px;
    height: 36px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    height: 20px;
}

/* Partners/References Section Styles */
.partners-section {
    padding: 80px 0;
    background-color: #F8F8F8;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.partners-section.first {
    background-color: #fff;
}

.suppliers-slider {
    background-color: #fff !important;
}

.partners-container {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.partners-label {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 12px;
    color: #EF5F36;
    margin-bottom: 0;
    text-transform: uppercase;
}

.partners-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    margin-bottom: 50px;
}

.partners-slider {
    width: 100%;
    padding-bottom: 50px;
}

.partner-logo {
    width: 100%;
    /* height: auto; */
    height: 200px;
    object-fit: contain;
    max-height: 200px;
}

/* Swiper pagination customization */
.swiper-pagination-bullet {
    width: 21px !important;
    height: 21px !important;
    background: #EF5F36 !important;
    opacity: 0.3;
    margin: 0 10px !important;
}

.swiper-pagination {
    position: static !important; /* Changed from relative to static */
    margin-top: 30px !important;
    margin-bottom: -150px !important;
    z-index: 100 !important; /* Increased z-index */
}

.swiper-wrapper {
    align-items: center !important;
    padding: 20px 0;
}

.swiper-slide {
    padding: 20px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.partners-slider {
    background-color:  #F8F8F8 !important;
}

.swiper {
    padding-bottom: 80px !important; /* Increased padding to make room for pagination */
    margin-bottom: 40px !important;
    overflow: visible !important; /* Allow content to overflow */
}

/* Blog Section Styles */
.blog-section {
    background-color: #18191B;
    padding: 80px 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    margin-top: 60px;
}

.blog-container {
    margin: 0 auto;
    padding: 0 5%;
    max-width: 1260px;
}

.blog-label {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 12px;
    color: #EF5F36;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.blog-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 5px;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}

.blog-grid {
    /* display: flex; */
    gap: 100px;
    margin-bottom: 50px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.blog-grid .blog-item:nth-child(even){
  transform: translateY(70px);
}

.blog-grid .blog-item:nth-child(even):hover{
transform: translateY(60px);
}

.blog-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right-column {
    margin-top: 50px; /* Offset the right column */
}

.blog-item {
    overflow: hidden;
    border-radius: 50px;
    background-color: #18191B;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.blog-item:hover {
    transform: translateY(-10px);
}

.blog-image-container {
    overflow: hidden;
    border-radius: 50px;
}

.blog-image {
    width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px 10px;
}

.blog-date {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: #999;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.blog-more {
    text-align: left;
    /* margin-top: -50px; */
    margin-top: -20px;
}

.blog-more-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #EF5F36;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-more-link:hover {
    opacity: 0.8;
}

.arrow-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('../images/arrowup.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-grid {
        flex-direction: column;
    }
    
    .right-column {
        margin-top: 0;
    }
    
    .blog-heading {
        font-size: 36px;
    }

        .footer-heading{
    font-size: 25px;
  }

  .footer-text{
    font-size: 16px;
  }

  .footer-grid.bottom .footer-column{
    padding: 25px 5%;
  }

  .contact-item:last-child{
    margin-bottom: 0;
  }

  .footer-grid.top .footer-column{
    padding: 25px 5%;
  }
}

/* Contact CTA Section Styles */
.contact-cta {
    height: 400px;
    /* background-image: url('../images/naslovna-3.jpg'); */
    /* background-size: cover;
    background-position: center; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.contact-cta img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.contact-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 0 20px;
}

.contact-cta-label {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: white;
}

.contact-cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 40px;
    color: white;
}

.contact-cta-button {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 200px;
    height: 75px;
    line-height: 75px;
    padding: 0 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-cta-heading {
        font-size: 36px;
    }
    
    .contact-cta-button {
        height: 60px;
        line-height: 60px;
        padding: 0 30px;
        font-size: 16px;
    }
}

/* Map Section Styles */
.map-section {
    width: 100%;
    height: 800px;
    line-height: 0; /* Removes any potential spacing */
}

.map-section iframe {
    display: block; /* Removes potential inline element spacing */
    width: 100%;
    height: 800px;
    border: none;
}

/* Footer Styles */



@media (max-width: 768px) {
.footer-main{
  padding-top: 10px;

}

.footer-column.left{
  display: none;
}

.work-hours{
  line-height: 20px;
}

    
    .hero-image {
        width: auto;
        height: 40;
    }
    .hero {
        height: 50vh;
    }
    
    
    .hero-subtitle {
        margin-bottom:0px;
        font-size: 14px;
    }
    .map-section iframe{
        height: 50vh;
    }
    .map-section {
        height: 50vh;
    }

    
    .vertical-line {
        width: 1px;
        height: 50px;
    }
    
    .hero-cta {

        font-size: 16px;

    }
    

    
    /* About Section Styles */
   
    
    /* Stats Section Styles */
    .stats-section {
        background-image: url('../images/naslovna-nums.jpg');
        background-size: cover;
        background-position: center;
        padding: 80px 50px;
        position: relative;
        border-radius: 32px;
        margin: 40px auto;
        
    }
    

    
    .stats-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        text-align: center;
        padding: 0 20px;
        width: 33.33%;
    }
    
    .stat-icon-container {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .stat-icon {
        filter: brightness(0) invert(1);
        max-height: 80px;
        width: auto;
    }
    
    .stat-value {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        font-weight: 700;
        line-height: 36px;
        margin-bottom: 0px;
        margin-top: 30px;
        height: 36px;
    }
    
    .stat-label {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        letter-spacing: 1px;
        text-transform: uppercase;
        height: 20px;
    }
    
    /* Partners/References Section Styles */
    .partners-section {
        padding: 40px 0;
        background-color: #F8F8F8;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    .partners-container {
        text-align: center;
        margin-bottom: 70px;
        position: relative;
        z-index: 1;
    }

    .partners-container h2{
      margin-bottom: 10px;
    }
    .partners-label {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 12px;
        color: #EF5F36;
        margin-bottom: 15px;
        text-transform: uppercase;
    }
    
    .partners-heading {
        font-family: 'Montserrat', sans-serif;
        font-size: 45px;
        font-weight: 800;
        color: #333;
        margin-bottom: 50px;
    }
    
    .partners-slider {
        width: 100%;
        padding-bottom: 50px;
    }
    
    .partner-logo {
        width: 100%;
        /* height: auto; */
        height: 150px;
        object-fit: contain;
        max-height: 200px;
    }
    
    /* Swiper pagination customization */
    .swiper-pagination-bullet {
        width: 21px !important;
        height: 21px !important;
        background: #EF5F36 !important;
        opacity: 0.3;
        margin: 0 10px !important;
    }
    
    .swiper-pagination {
        position: static !important; /* Changed from relative to static */
        margin-top: 10px !important;
        margin-bottom: -150px !important;
        z-index: 100 !important; /* Increased z-index */
    }
    
    .swiper-wrapper {
        align-items: center !important;
        padding: 20px 0;
    }
    
    .swiper-slide {
        padding: 20px;
    }
    
    .swiper-pagination-bullet-active {
        opacity: 1;
    }
    
    .swiper {
        background-color: #F8F8F8 !important;
        padding-bottom: 80px !important; /* Increased padding to make room for pagination */
        margin-bottom: 40px !important;
        overflow: visible !important; /* Allow content to overflow */
    }
    
    /* Blog Section Styles */
    .blog-section {
        background-color: #18191B;
        padding: 80px 0;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        margin-top: 60px;
    }
    
    .blog-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .blog-label {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 12px;
        color: #EF5F36;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .blog-heading {
        font-family: 'Montserrat', sans-serif;
        font-size: 45px;
        font-weight: 700;
        letter-spacing: 5px;
        color: white;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .blog-grid {
        display: flex;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .blog-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .right-column {
        margin-top: 50px; /* Offset the right column */
    }
    
    .blog-item {
        overflow: hidden;
        border-radius: 50px;
        background-color: #18191B;
        transition: transform 0.3s ease;
    }
    
    .blog-item:hover {
        transform: translateY(-10px);
    }
    
    .blog-image-container {
        overflow: hidden;
        border-radius: 50px;
    }
    
    .blog-image {
        width: 100%;
        height: 370px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .blog-item:hover .blog-image {
        transform: scale(1.05);
    }
    
    .blog-content {
        padding: 20px 10px;
    }
    
    .blog-date {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        letter-spacing: 2px;
        color: #999;
    }
    
    .blog-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: white;
        margin: 0;
        line-height: 1.3;
    }
    
    .blog-more {
        text-align: left;
        margin-top: -50px;
    }
    
    .blog-more-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 2px;
        color: #EF5F36;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .blog-more-link:hover {
        opacity: 0.8;
    }
    
    .arrow-icon {
        margin-left: 10px;
        font-size: 20px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .blog-grid {
            flex-direction: column;
        }
        
        .right-column {
            margin-top: 0;
        }
        
        .blog-heading {
            font-size: 36px;
        }
    }
    
    /* Contact CTA Section Styles */
    .contact-cta {
        height: 400px;
        background-image: url('../mages/naslovna-3.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }
    
    .contact-cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }
    
    .contact-cta-content {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        padding: 0 20px;
    }
    
    .contact-cta-label {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 12px;
        margin-bottom: 15px;
        text-transform: uppercase;
        color: white;
    }
    
    .contact-cta-heading {
        font-family: 'Montserrat', sans-serif;
        font-size: 45px;
        font-weight: 700;
        letter-spacing: 5px;
        margin-bottom: 40px;
        color: white;
    }
    
    .contact-cta-button {
        display: inline-block;
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 10px;
        text-transform: uppercase;
        color: white;
        background-color: transparent;
        border: 1px solid white;
        border-radius: 200px;
        height: 75px;
        line-height: 75px;
        padding: 0 50px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .contact-cta-button:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }
    
    /* Responsive adjustments *

/* Responsive styles for different desktop sizes */
@media (min-width: 1441px) {
    /* For extra large screens */
    .blog-container, .stats-container, .contact-cta-content {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .blog-grid {
        gap: 120px;
    }
    
    .blog-image {
        height: 420px;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .contact-cta-heading {
        font-size: 52px;
    }
    
    .contact-cta-button {
        height: 85px;
        line-height: 85px;
        font-size: 20px;
    }
}

@media (max-width: 1440px) and (min-width: 1201px) {
    /* For large desktop screens */
    .blog-container, .stats-container, .contact-cta-content {
        max-width: 1200px;
    }
    
    .blog-grid {
        gap: 80px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 28px;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    /* For medium desktop screens */
    .blog-container, .stats-container, .contact-cta-content {
        max-width: 960px;
    }
    
    .blog-grid {
        gap: 60px;
    }
    
    .blog-heading, .contact-cta-heading, .partners-heading {
        font-size: 40px;
    }
    
    .blog-image {
        height: 320px;
    }
    
    .blog-title {
        font-size: 22px;
    }
    
    .stat-value {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 26px;
    }
    
    .stat-icon-container {
        height: 100px;
    }
    
    .stats-section {
        padding: 60px 40px;
    }
    
    .stats-container {
        min-height: 350px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    /* For small desktop and large tablet screens */
    .blog-container, .stats-container, .contact-cta-content {
        max-width: 720px;
    }
    
    .blog-grid {
        gap: 40px;
    }
    
    .blog-heading, .contact-cta-heading, .partners-heading {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    .blog-label, .contact-cta-label, .partners-label {
        font-size: 16px;
        letter-spacing: 8px;
    }
    
    .blog-image {
        height: 280px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-date {
        font-size: 16px;
    }
    
    .blog-more-link {
        font-size: 16px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 24px;
    }
    
    .stat-icon-container {
        height: 90px;
    }
    
    .stats-section {
        padding: 50px 30px;
    }
    
    .stats-container {
        min-height: 300px;
    }
    
    .contact-cta {
        height: 350px;
    }
    
    .contact-cta-button {
        height: 65px;
        line-height: 65px;
        padding: 0 40px;
        font-size: 16px;
        letter-spacing: 8px;
    }
}

/* Stats section specific responsive adjustments */
@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-icon-container {
        height: 80px;
        margin-bottom: 10px;
    }
    
    .stat-value {
        margin-top: 15px;
    }
}

/* Enhance existing mobile responsive styles */
@media (max-width: 768px) {
  .about-section{
    padding: 40px 5%;
  }

  .blog-grid .blog-item:nth-child(even){
    transform: none;
  }
    .blog-section, .contact-cta {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    .contact-cta-overlay {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    .blog-heading, .contact-cta-heading {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .blog-label, .contact-cta-label {
        font-size: 14px;
        letter-spacing: 6px;
    }
    
    .blog-item {
        border-radius: 30px;
    }
    
    .blog-image-container {
        border-radius: 30px;
    }
    
    .stats-section {
        padding: 60px 20px;
        border-radius: 20px;
        /* margin: 30px 0; */
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .stats-section::before {
        border-radius: 20px;
    }
    
    .contact-cta {
        height: 350px;
    }
    
    .contact-cta-button {
        letter-spacing: 5px;
    }
}

@media (max-width: 480px) {
    .blog-heading, .contact-cta-heading {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .blog-label, .contact-cta-label {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .blog-image {
        height: 240px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .contact-cta {
        height: 300px;
    }
    
    .contact-cta-button {
        height: 50px;
        line-height: 50px;
        padding: 0 20px;
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .stat-value, .stat-label {
        font-size: 20px;
    }
}
}

.blog-container-home h2{
      font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 5px;
    color: white;
    margin-bottom: 50px;
    text-align: center;
}