     * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         font-family: 'Inter', sans-serif;
     }

     :root {
         --primary: #1a1a1a;
         --secondary: #4a4a4a;
         --accent: #f5ab0c;
         --light: #f8f8f8;
         --white: #ffffff;
         --spacing: 8px;
         --border-radius: 8px;
         --transition: all 0.3s ease;
         --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     }

     .kontejner {
         max-width: 1200px;
         margin: 0 auto;
         padding: 20px;
     }


     .kontejner h1 {
         font-size: 2.8rem;
         margin-bottom: 10px;
     }

     .subtitle {
         font-size: 1.2rem;
         max-width: 800px;
         margin: 0 auto;
         opacity: 0.9;
     }

     .content-section {
         display: flex;
         flex-wrap: wrap;
         align-items: center;
         margin-bottom: 60px;
         background: white;
         border-radius: 12px;
         overflow: hidden;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
         transition: transform 0.3s ease;
     }

     .content-section:hover {
         transform: translateY(-5px);
     }

     .image-container {
         flex: 1;
         min-width: 300px;
         height: 350px;
         overflow: hidden;
         position: relative;
     }
     .fb-page{
         width:100%;
     }
     .fb_iframe_widget{
             display: grid;
    justify-content: center;
    position: relative;
     }
     .image-container img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.5s ease;
     }

     .image-container:hover img {
         transform: scale(1.05);
     }

     .text-container {
         flex: 1;
         min-width: 300px;
         padding: 30px;
     }

     .text-container h2 {
         font-size: 1.8rem;
         margin-bottom: 15px;
         color: #f5ab0c;
     }

     .text-container p {
         margin-bottom: 15px;
         font-size: 1.1rem;
         color: #555;
     }

     /* Comparison Slider Styles */
     .comparison-slider {
         position: relative;
         width: 100%;
         height: 100%;
         overflow: hidden;
     }

     .comparison-image {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         overflow: hidden;
     }

     .before-image {
         z-index: 1;
         width: 50%;
         overflow: hidden;
     }

     .before-image img {
         position: absolute;
         top: 0;
         left: 0;
         height: 100%;
         width: 100%;
         object-fit: cover;
     }

     .after-image img {
         width: 100%;
         height: 100%;
         object-fit: cover;
     }

     .slider-handle {
         position: absolute;
         top: 0;
         left: 50%;
         width: 4px;
         height: 100%;
         background: white;
         z-index: 3;
         cursor: ew-resize;
         box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
     }

     .slider-handle:before {
         content: "";
         position: absolute;
         width: 32px;
         height: 32px;
         background: white;
         border-radius: 50%;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
     }

     .slider-handle:after {
         content: "↔";
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         color: #2c3e50;
         font-weight: bold;
     }

     /* Alternate layout for even sections */
     .content-section:nth-child(even) .image-container {
         order: 2;
     }

     .content-section:nth-child(even) .text-container {
         order: 1;
     }

     @media (max-width: 768px) {

         .image-container,
         .text-container {
             flex: 100%;
         }

         .image-container {
             height: 250px;
         }

         .content-section:nth-child(even) .image-container {
             order: 1;
         }

         .content-section:nth-child(even) .text-container {
             order: 2;
         }
     }

     /* Decorative elements */
     .timeline-marker {
         width: 20px;
         height: 20px;
         background: #f5ab0c;
         border-radius: 50%;
         position: absolute;
         top: 20px;
         left: -10px;
         z-index: 2;
     }

     .year-badge {
         background: #f5ab0c;
         color: white;
         padding: 5px 15px;
         border-radius: 20px;
         display: inline-block;
         margin-bottom: 15px;
         font-weight: bold;
     }

     body {
         color: var(--primary);
         line-height: 1.6;
         overflow-x: hidden;
     }

     a {
         text-decoration: none;
         color: inherit;
     }

     ul {
         list-style: none;
     }

     .hero p span {
         letter-spacing: 1px;
         border-bottom: 2px solid var(--accent-color);
     }

     .header-container img {
         width: 5%;
         /* takes full container width */
         height: 5%;
         /* keeps aspect ratio */
         max-width: 600px;
         /* optional limit */
     }

     .loader-wrapper {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background-color: rgba(255, 255, 255, 0.9);
         display: flex;
         justify-content: center;
         align-items: center;
         z-index: 9999;
         transition: opacity 0.5s ease;
     }

     .loader {
         width: 60px;
         height: 60px;
         border: 5px solid #f3f3f3;
         border-top: 5px solid var(--accent);
         border-radius: 50%;
         animation: spin 1s linear infinite;
     }

     @keyframes spin {
         0% {
             transform: rotate(0deg);
         }

         100% {
             transform: rotate(360deg);
         }
     }

     .loader-wrapper.hidden {
         opacity: 0;
         pointer-events: none;
     }

     /* Active link style */
     .nav-links a.active {
         color: var(--accent);
     }

     .nav-links a.active:after {
         width: 100%;
     }

     .container {
         max-width: 1200px;
         margin: 0 auto;
         padding: 0 20px;
     }

     .btn {
         display: inline-block;
         padding: 14px 32px;
         background-color: var(--primary);
         color: var(--white);
         border: none;
         border-radius: var(--border-radius);
         font-weight: 500;
         cursor: pointer;
         transition: var(--transition);
     }

     .btn:hover {
         background-color: var(--secondary);
         transform: translateY(-2px);
     }

     .btn-outline {
         background-color: transparent;
         border: 1px solid var(--primary);
         color: var(--primary);
     }

     .btn-outline:hover {
         background-color: var(--primary);
         color: var(--white);
     }

     .btn-accent {
         background-color: var(--accent);
         color: var(--white);
     }

     .btn-accent:hover {
         background-color: #ffd000c5;
     }

     .kontejner {
         width: 100%;
         background-color: rgba(255, 255, 255, 0.9);
         border-radius: 15px;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
         overflow: hidden;
         padding: 20px;
     }

     .kontejner h1 {
         text-align: center;
     }

     .gallery-container {
         margin: auto auto;
         position: relative;
         width: 50%;
         overflow: hidden;
         border-radius: 10px;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     }

     .gallery {
         display: flex;
         transition: transform 0.5s ease-in-out;
         height: 400px;
     }

     .slide {
         min-width: 100%;
         position: relative;
     }

     .slide img {
         width: auto;
         height: auto;
         object-fit: cover;
         display: block;
     }

     .image-info {
         position: absolute;
         bottom: 0;
         left: 0;
         width: 100%;
         background: linear-gradient(to top, rgba(253, 184, 56, 0.8), transparent);
         color: rgb(255, 255, 255);
         padding: 20px;
         transition: opacity 0.3s ease;
         opacity: 0.9;
         background-color: Black;
         z-index: 10;
     }

     .image-info h3 {
         font-size: 1.5rem;
         margin-bottom: 10px;
     }

     .image-info p {
         font-size: 1rem;
         line-height: 1.5;
         background-color: blur;
         backdrop-filter: blur(8px);
         -webkit-backdrop-filter: blur(8px);
         /* For WebKit browsers */
     }

     .navigation {
         display: flex;
         justify-content: center;
         margin-top: 20px;
         gap: 10px;
     }

     .kopce {
         width: 12px;
         height: 12px;
         border-radius: 50%;
         border: none;
         background-color: #bbb;
         cursor: pointer;
         transition: all 0.3s ease;
     }

     .kopce:hover {
         background-color: #777;
         transform: scale(1.2);
     }

     .kopce.active {
         background-color: #f5ab0c;
         transform: scale(1.2);
     }

     .arrow {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         background-color: rgba(0, 0, 0, 0.5);
         color: white;
         font-size: 1.5rem;
         width: 40px;
         height: 40px;
         border-radius: 50%;
         display: flex;
         justify-content: center;
         align-items: center;
         cursor: pointer;
         transition: all 0.3s ease;
         border: none;
     }

     .arrow:hover {
         background-color: rgba(0, 0, 0, 0.8);
         transform: translateY(-50%) scale(1.1);
     }

     .arrow-left {
         left: 15px;
     }

     .arrow-right {
         right: 15px;
     }

     @media (max-width: 768px) {
         .gallery {
             height: 300px;
         }

         h1 {
             font-size: 1.8rem;
         }

         .image-info h3 {
             font-size: 1.2rem;
         }

         .image-info p {
             font-size: 0.5rem;
         }
     }

     @media (max-width: 480px) {
         .gallery {
             height: 300px;
         }

         .arrow {
             width: 30px;
             height: 30px;
             font-size: 1rem;
         }

         .image-info {
             padding: 10px;
         }
     }

     /* Header Styles */
     header {
         position: fixed;
         top: 0;
         width: 100%;
         padding: 20px 0;
         background-color: var(--white);
         z-index: 1000;
         box-shadow: var(--shadow);
     }

     .slider {
         position: relative;
         width: 400px;
         height: 300px;
         overflow: hidden;
         border-radius: 10px;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     }

     .slides {
         display: grid;
         grid-template-columns: repeat(2, 100%);
         grid-template-rows: repeat(2, 100%);
         width: 200%;
         height: 200%;
         transition: transform 0.6s ease-in-out;
     }

     .slide {
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         background: #fff;
     }

     .slide img {
         max-width: 90%;
         border-radius: 8px;
     }

     .caption {
         margin-top: 10px;
         font-size: 16px;
         color: #333;
         text-align: center;
     }

     /* Arrows */
     .controls {
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 10px;
         pointer-events: none;
     }

     .row {
         display: flex;
         gap: 10px;
     }

     .arrow {
         pointer-events: auto;
         background: rgba(0, 0, 0, 0.6);
         color: white;
         border: none;
         font-size: 18px;
         padding: 8px 12px;
         border-radius: 4px;
         cursor: pointer;
     }

     .header-container {
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .logo {
         font-size: 28px;
         font-weight: 700;
         color: var(--primary);
     }

     .logo span {
         color: var(--accent);
     }

     .nav-links {
         display: flex;
         gap: 30px;
     }

     .nav-links a {
         font-weight: 500;
         transition: var(--transition);
         position: relative;
     }

     .nav-links a:after {
         content: '';
         position: absolute;
         bottom: -5px;
         left: 0;
         width: 0;
         height: 2px;
         background-color: var(--accent);
         transition: var(--transition);
     }

     .nav-links a:hover:after {
         width: 100%;
     }

     .header-buttons {
         display: flex;
         gap: 15px;
     }


     /* Hero Section with Video Background */
     .hero {
         position: relative;
         padding: 160px 0 100px;
         color: var(--white);
         text-align: center;
         height: 100vh;
         display: flex;
         align-items: center;
         justify-content: center;
         overflow: hidden;
     }

     .video-background {
        position: absolute;
         background-image: url(/img/indexphoto.jpg);
         background-position: center;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         overflow: hidden;
         z-index: -1;
           background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
     }
     .hero-content {
         position: relative;
         z-index: 1;
         max-width: 800px;
         padding: 0 20px;
     }

     .hero h1 {
         font-size: 48px;
         margin-bottom: 20px;
         font-weight: 700;
     }

     .hero p {
         font-size: 17px;
         max-width: 700px;
         margin: 0 auto 30px;
         color: rgba(255, 255, 255, 0.9);
     }

     /* About Section */
     .about {
         padding: 100px 0;
     }

     .about-content {
         display: flex;
         gap: 60px;
         align-items: center;
     }

     .about-text {
         flex: 1;
     }

     .about-text h2 {
         font-size: 36px;
         margin-bottom: 20px;
         font-weight: 600;
         position: relative;
         padding-bottom: 15px;
     }

     .about-text h2:after {
         content: '';
         position: absolute;
         bottom: 0;
         left: 0;
         width: 60px;
         height: 3px;
         background-color: var(--accent);
     }

     .about-text p {
         margin-bottom: 20px;
         color: var(--secondary);
         line-height: 1.8;
     }

     .about-image {
         flex: 1;
         border-radius: 12px;
         overflow: hidden;
         box-shadow: var(--shadow);
         position: relative;
     }

     .about-image img {
         width: 100%;
         height: auto;
         display: block;
         transition: var(--transition);
     }

     .about-image:hover img {
         transform: scale(1.03);
     }

     /* Stats Section */
     .stats {
         padding: 80px 0;
         background-color: var(--primary);
         color: var(--white);
     }

     .stats-container {
         display: flex;
         justify-content: space-around;
         text-align: center;
         flex-wrap: wrap;
     }

     .stat-item {
         padding: 20px;
         flex: 1;
         min-width: 200px;
     }

     .stat-number {
         font-size: 48px;
         font-weight: 700;
         margin-bottom: 10px;
         color: var(--accent);
     }

     .stat-label {
         font-size: 18px;
         color: rgba(255, 255, 255, 0.8);
     }

     /* Team Section */
     .team {
         padding: 100px 0;
         background-color: var(--light);
     }

     .section-header {
         text-align: center;
         margin-bottom: 60px;
     }

     .section-header h2 {
         font-size: 36px;
         margin-bottom: 20px;
         font-weight: 600;
     }

     .section-header p {
         font-size: 18px;
         color: var(--secondary);
         max-width: 600px;
         margin: 0 auto;
     }

     .team-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 30px;
     }

     .team-member {
         background: var(--white);
         border-radius: 12px;
         overflow: hidden;
         box-shadow: var(--shadow);
         transition: var(--transition);
     }

     .team-member:hover {
         transform: translateY(-10px);
     }

     .member-image {
         width: 100%;
         height: 320px;
         overflow: hidden;
     }

     .member-image img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: var(--transition);
     }

     .team-member:hover .member-image img {
         transform: scale(1.1);
     }

     .member-info {
         padding: 25px;
         text-align: center;
     }

     .member-name {
         font-size: 20px;
         font-weight: 600;
         margin-bottom: 5px;
     }

     .member-role {
         color: var(--accent);
         margin-bottom: 15px;
         font-weight: 500;
     }

     .social-links {
         display: flex;
         justify-content: center;
         gap: 15px;
     }

     .social-links a {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 36px;
         height: 36px;
         border-radius: 50%;
         background-color: var(--light);
         transition: var(--transition);
     }

     .social-links a:hover {
         background-color: var(--accent);
         color: var(--white);
     }

           /* Footer with Video Background */
        footer {
            position: relative;
            background-color: var(--primary);
            color: var(--white);
            padding: 80px 0 30px;
            overflow: hidden;
        }

        .footer-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.2; /* Adjust opacity for better text visibility */
        }

        .footer-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.9));
            z-index: 2;
        }

        .footer-content {
            position: relative;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            justify-items: center;
            z-index: 3;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--accent);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
            position: relative;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-bottom {
            position: relative;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.8);
            z-index: 3;
        }
        .parallax {
  /* The image used */
  background-image: url("/img/slikaparalax.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
        .values-section {
            background-color: var(--light);
            padding: 80px 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .value-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .value-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .value-description {
            color: var(--secondary);
            line-height: 1.7;
        }
     /* Mobile Navigation */
     .mobile-toggle {
         display: none;
         font-size: 24px;
         cursor: pointer;
         color: var(--primary);
     }
        .footer-content .footer-column:nth-child(2) {
  margin-left: 0px; /* example margin */
  
}

     /* Responsive Styles */
     @media (max-width: 992px) {
                    .footer-content{
                 justify-items: left;
            }
         .about-content {
             flex-direction: column;
         }

         .stats-container {
             flex-wrap: wrap;
         }
        .header-container img {
         width: 15%;
         /* takes full container width */
         height: 15%;
         /* keeps aspect ratio */
         max-width: 600px;
         /* optional limit */
     }
         .nav-links {
             display: none;
             position: absolute;
             top: 80px;
             left: 0;
             width: 100%;
             background-color: var(--white);
             flex-direction: column;
             padding: 20px;
             box-shadow: var(--shadow);
         }

         .nav-links.active {
             display: flex;
         }

         .mobile-toggle {
             display: block;
         }
     }

     @media (max-width: 768px) {
         .hero h1 {
             font-size: 36px;
         }
                 .header-container img {
         width: 15%;
         /* takes full container width */
         height: 15%;
         /* keeps aspect ratio */
         max-width: 600px;
         /* optional limit */
     }

         .hero p {
             font-size: 16px;
         }

         .about-text h2 {
             font-size: 28px;
         }

         .section-header h2 {
             font-size: 28px;
         }

         .stat-number {
             font-size: 36px;
         }

         .header-buttons {
             display: none;
         }

     }