:root {
    --blue: #082c5c;
    --dark-blue: #041d3d;
    --gold: #c79a35;
    --light: #f5f7fa;
    --text: #1f2937;
    --muted: #6b7280;
    --white: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
  }
  
  .container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
  }
  
  .header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav {
    min-height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .brand img {
    width: 165px;
    display: block;
  }
  
  .menu {
    display: flex;
    gap: 24px;
  }
  
  .menu a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
  }
  
  .menu a:hover {
    color: var(--gold);
  }
  
  .language {
    display: flex;
    gap: 8px;
  }
  
  .language button {
    border: 1px solid var(--blue);
    background: transparent;
    color: var(--blue);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
  }
  
  .language button:hover {
    background: var(--blue);
    color: var(--white);
  }
  
  .hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
      linear-gradient(120deg, rgba(4,29,61,0.96), rgba(8,44,92,0.72)),
      url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
  }
  
  .hero-inner {
    max-width: 850px;
  }
  
  .eyebrow,
  .section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .hero h1 {
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.05;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 22px;
    max-width: 750px;
    color: #e6eef8;
    margin-bottom: 34px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .btn,
  .btn-outline,
  .linkedin-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
  }
  
  .btn {
    background: var(--gold);
    color: var(--white);
  }
  
  .btn:hover {
    background: #aa7f28;
  }
  
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.65);
    color: var(--white);
  }
  
  .btn-outline:hover {
    background: var(--white);
    color: var(--blue);
  }
  
  .linkedin-btn {
    background: #0a66c2;
    color: white;
    margin-top: 10px;
  }
  
  .linkedin-btn:hover {
    background: #084f96;
  }
  
  .section {
    padding: 85px 0;
  }
  
  .section h2 {
    font-size: clamp(30px, 4vw, 46px);
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 22px;
  }
  
  .about {
    background: #f5f7fa;
    padding: 90px 0;
  }
  
  .about-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 55px;
    align-items: start;
  }
  
  .section-label {
    display: inline-block;
    color: #c79a35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .about-text h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
    color: #082c5c;
    margin-bottom: 28px;
    max-width: 720px;
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.85;
    color: #374151;
    margin-bottom: 24px;
    max-width: 900px;
  }
  
  .about-side-card {
    background: white;
    padding: 40px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 20px 50px rgba(8,44,92,0.10);
  }
  
  .about-side-card h3 {
    color: #082c5c;
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .about-side-card p {
    color: #374151;
    font-size: 17px;
    line-height: 1.7;
  }
  
  .line {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 28px 0;
  }
  
  .about-cards {
    margin-top: 70px;
  
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .about-card {
    min-height: 350px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
  }
  
  .about-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(4,29,61,0.92),
      rgba(4,29,61,0.18)
    );
  }
  
  .card-content {
    position: relative;
    z-index: 2;
  }
  
  .card-content h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
  }
  
  .card-content p {
    color: #e5edf7;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .card-projects {
    background-image:
      url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
  }
  
  .card-supervision {
    background-image:
      url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
  }
  .license-card {
    background-image:
      linear-gradient(
        to top,
        rgba(4,29,61,0.94),
        rgba(4,29,61,0.55)
      ),
      url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80");
  
    background-size: cover;
    background-position: center;
  
    align-items: flex-end;
  }
  
  .license-card .card-content {
    width: 100%;
  }
  

  .founder-mini {
    margin-top: 50px;
  
    background: white;
    border-radius: 24px;
    padding: 26px 30px;
  
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
  
    align-items: center;
  
    box-shadow: 0 18px 45px rgba(8,44,92,0.08);
  }
  
  .founder-photo {
    width: 120px;
    height: 145px;
    object-fit: cover;
    border-radius: 14px;
  }
  
  .founder-label {
    display: inline-block;
    color: #c79a35;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  
  .founder-info h2 {
    color: #082c5c;
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .founder-info p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 900px;
  }
  
  .linkedin-btn {
    display: inline-block;
    background: #0a66c2;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
  }
  
  .linkedin-btn:hover {
    background: #084f96;
  }
  
  @media (max-width: 1000px) {
  
    .founder-mini {
      grid-template-columns: 1fr;
    }
  
    .founder-photo {
      width: 140px;
      height: 170px;
    }
  
  }
  
  @media (max-width: 1000px) {
  
    .about-top,
    .about-cards {
      grid-template-columns: 1fr;
    }
  
  
  
  }
  
  @media (max-width: 700px) {
  
    .about {
      padding: 70px 0;
    }
  
    .about-text h1 {
      font-size: 42px;
    }
  
    .about-card {
      min-height: 300px;
    }
  
    .card-content h3 {
      font-size: 24px;
    }
  
    .founder-mini {
      padding: 24px;
    }
  









  }
  .services {
    background: #062447;
    padding: 90px 0;
    color: #fff;
  }
  
  .services-container {
    width: min(82%, 1280px);
    margin: 0 auto;
  }
  
  .section-label {
    color: #d4a52c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 18px;
  }
  
  .services h2 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 55px;
    font-weight: 700;
  }
  
  /* GLAVNI LAYOUT */
  
  .services-layout {
    display: grid;
    grid-template-columns: 1.05fr 1.4fr;
    gap: 34px;
    align-items: stretch;
  }
  
  /* LIJEVI VELIKI */
  
  .featured-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  /* DESNA MREŽA */
  
  .services-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  /* KARTICE */
  
  .service-card {
    background: rgba(38, 67, 102, 0.95);
    border-radius: 22px;
    padding: 42px;
    border: 1px solid rgba(255,255,255,0.05);
  }
  
  .service-card h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 28px;
    font-weight: 700;
    color: #fff;
  }
  
  .service-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #d8e1ec;
    margin-bottom: 22px;
  }
  
  .service-card p:last-child {
    margin-bottom: 0;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 1100px) {
  
    .services-layout {
      grid-template-columns: 1fr;
    }
  
    .services-right {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .featured-card {
      min-height: auto;
    }
  }
  
  @media (max-width: 700px) {
  
    .services {
      padding: 70px 0;
    }
  
    .services-container {
      width: 90%;
    }
  
    .services h2 {
      font-size: 42px;
    }
  
    .services-right {
      grid-template-columns: 1fr;
    }
  
    .service-card {
      padding: 30px;
    }
  
    .service-card h3 {
      font-size: 22px;
    }
  
    .service-card p {
      font-size: 16px;
    }
  }







  .contact {
    background: #eef1f5;
    padding: 80px 0; /* bilo 110px */
  }
  
  .contact-container {
    width: min(78%, 1100px); /* malo uža */
    margin: 0 auto;
  }
  
  .contact h2 {
    font-size: 48px; /* bilo 56px */
    color: #0a2d5e;
    margin-bottom: 18px;
    line-height: 1.1;
  }
  
  .contact-text {
    max-width: 680px;
    font-size: 18px; /* bilo 20px */
    line-height: 1.6;
    color: #4c5a6a;
    margin-bottom: 38px;
  }
  
  
  .contact-label {
    color: #d4a52c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 18px;
  }
  
  /*card*/
  .contact-card {
    background: linear-gradient(
      135deg,
      #0a2d5e 0%,
      #123d79 100%
    );
  
    border-radius: 26px; /* manje */
    padding: 45px; /* bilo 60px */
    box-shadow: 0 20px 50px rgba(7, 25, 54, 0.12);
  }
  
  
  /* INFO */
  
  .contact-info h3 {
    font-size: 30px; /* bilo 36px */
    color: #ffffff;
    margin-bottom: 8px;
  }
  
  .subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
  }
  
  
  /* ITEMS */
  
  .contact-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 55px;
  }
  
  .contact-item span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a52c;
    margin-bottom: 10px;
  }
  
  .contact-item p,
  .contact-item a {
    font-size: 18px; /* bilo 22px */
    line-height: 1.5;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .contact-item a:hover {
    opacity: 0.8;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
  
    .contact {
      padding: 80px 0;
    }
  
    .contact h2 {
      font-size: 42px;
    }
  
    .contact-text {
      font-size: 18px;
    }
  
    .contact-card {
      padding: 40px;
    }
  
    .contact-items {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .contact-item p,
    .contact-item a {
      font-size: 18px;
    }
  }
  
  @media (max-width: 600px) {
  
    .contact-container {
      width: 90%;
    }
  
    .contact h2 {
      font-size: 34px;
    }
  
    .contact-card {
      padding: 30px;
      border-radius: 24px;
    }
  
    .contact-info h3 {
      font-size: 28px;
    }
  }






  footer {
    background: #03152d;
    color: var(--white);
    text-align: center;
    padding: 24px;
    font-size: 14px;
  }
  
  @media (max-width: 1000px) {
    .nav {
      padding: 18px 0;
      flex-direction: column;
      gap: 18px;
    }
  
    .menu {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .about-grid,
    .contact-grid,
    .founder-card {
      grid-template-columns: 1fr;
    }
  
    .photo-grid,
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .project-grid {
      grid-template-columns: 1fr;
    }
  
    .founder-photo {
      max-width: 320px;
    }
  }
  
  @media (max-width: 650px) {
    .brand img {
      width: 140px;
    }
  
    .menu {
      gap: 14px;
    }
  
    .menu a {
      font-size: 13px;
    }
  
    .hero {
      min-height: 75vh;
    }
  
    .hero p {
      font-size: 18px;
    }
  
    .photo-grid,
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .section {
      padding: 65px 0;
    }
  
    .founder-card {
      padding: 24px;
    }
  }