/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1A2B5C;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: #1A2B5C;
}

p {
    color: #6C757D;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #2B5CE6 0%, #4A90E2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 92, 230, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #2B5CE6;
    color: white;
}

.btn-emergency {
    background: #E74C3C;
    color: white;
}

.btn-emergency:hover {
    background: #C0392B;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2B5CE6;
    border: 2px solid #2B5CE6;
}

.btn-outline:hover {
    background: #2B5CE6;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 43, 92, 0.1);
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1A2B5C;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2B5CE6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2B5CE6;
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #1A2B5C;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 1002; /* naj bo nad vsem drugim */
    position: relative;
  }

  .nav-menu,
  .nav-buttons {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 16px 20px;
    z-index: 999; /* hamburger mora imeti višjega */
  }

  .nav-menu.active,
  .nav-buttons.active {
    display: flex;
  }
}

.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  top: 100%;
  left: 0;
  padding: 15px 0;
  border: none;
  border-radius: 15px;
}

.dropdown-menu .nav-link {
  display: block;
  padding: 10px 20px;
  color: #1A2B5C;
  text-decoration: none;
}

.dropdown-menu .nav-link:hover {
  display: block;
  padding: 10px 20px;
  color: #2B5CE6;
  text-decoration: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 2px;
}
.nav-menu .dropdown li {
  list-style: none;
}
/* Mobilna različica */
  @media (max-width: 768px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 1001;
  }
  .hamburger {
    cursor: pointer;
    z-index: 1002; /* naj bo nad menijem */
  }

  /* Menu in gumbi so sprva skriti */
  .nav-menu,
  .nav-buttons {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px 20px;
  }

  /* Ko so aktivni (po kliku hamburgerja), se prikažejo */
  .nav-menu.active,
  .nav-buttons.active {
    display: flex;
  }
  /* Menu in gumbi naj bodo pod hamburgerjem */
  .nav-menu {
    order: 1;
    z-index: 1001; /* Nad gumbi */
  }

  .nav-buttons {
    order: 2;
    z-index: 1000;
  }

  /* Linki en pod drugim */
  .nav-link {
    padding: 10px 0;
    font-size: 16px;
    width: 100%;
    text-align: left;
  }

  .btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-align: center;
  }

  /* Dropdown meniji en pod drugim */
  .nav-item.dropdown .dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    background-color: #fff;
  }

  .nav-item.dropdown .dropdown-menu.show {
    display: flex;
  }

  .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }

  .mobile-dropdown {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  border-top: 1px solid #ccc;
}

.mobile-dropdown.active {
  display: flex;
}

.mobile-menu-links,
.mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
}

.nav-link {
  padding: 10px 0;
  font-size: 16px;
  text-align: left;
}

.btn {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 10px;
}

.nav-item.dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding-left: 20px;
  z-index: 1003;
}

.nav-item.dropdown .dropdown-menu.show {
  display: flex;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-size: 16px;
  padding: 10px 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

  
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 43, 92, 0.9) 0%, rgba(43, 92, 230, 0.8) 100%), 
                url('../images/tcnomar_hero_banner.png') center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: white;
    border-radius: 24px;
    max-width: 1400px;
    margin: 100px auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

.hero-projects {
  background-color: #f7f9fc;
  padding: 80px 20px;
}

.hero-projects-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 50px auto;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a2b5c;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.btn.btn-primary {
  background-color: #2b5ce6;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #1a45b8;
}


@media (max-width: 768px) {
  .hero-projects-container {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-text {
    margin-top: 40px;
  }
}

.btn.btn-primary {
  background-color: #2b5ce6;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #1a45b8;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.form-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1A2B5C;
}

.form-subtitle {
    color: #6C757D;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #E9ECEF;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
    color: #212529;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2B5CE6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6C757D;
}

/* Section Styling */
.section-tag {
    color: #2B5CE6;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin: 16px 0 24px 0;
    color: #1A2B5C;
}

.section-description {
    font-size: 1.1rem;
    color: #6C757D;
    max-width: 600px;
    margin: auto;
    padding-bottom: 20px;
}

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

.section-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #F8F9FA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.border-teal { border-top-color: #20B2AA; }
.border-blue { border-top-color: #2B5CE6; }
.border-orange { border-top-color: #FF8C00; }
.border-purple { border-top-color: #8A2BE2; }
.border-red { border-top-color: #E74C3C; }
.border-green { border-top-color: #28A745; }

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 24px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2B5CE6, #4A90E2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon i {
    color: white;
    font-size: 20px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1A2B5C;
}

.service-description {
    color: #6C757D;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: white;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B5CE6;
    margin-bottom: 8px;
}

.stat-label {
    color: #6C757D;
    font-size: 14px;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2B5CE6, #4A90E2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #1A2B5C;
}

.feature-description {
    color: #6C757D;
}

.about-cta {
    text-align: center;
    margin-top: 40px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.process-steps {
    margin-top: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2B5CE6, #4A90E2);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #1A2B5C;
}

.step-description {
    color: #6C757D;
}

.cta-card {
    background: #F8F9FA;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #E9ECEF;
}

.cta-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1A2B5C;
}

.cta-description {
    color: #6C757D;
    margin-bottom: 24px;
}

.contact-info {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    color: #2B5CE6;
    width: 20px;
}

.contact-label {
    font-weight: 500;
    color: #1A2B5C;
    font-size: 14px;
}

.contact-value {
    color: #6C757D;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2B5C 0%, #2B5CE6 100%);
    color: white;
    margin: 0 auto;
    border-radius: 24px;
    max-width: 1400px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact .section-title,
.contact .section-description {
    color: white;
}

.contact-info-grid {
    display: grid;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item i {
    color: #4A90E2;
    font-size: 20px;
    margin-top: 4px;
}

.contact-info-item .contact-label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-item .contact-value {
    color: white;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #F8F9FA;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1A2B5C;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2B5CE6, #4A90E2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: #1A2B5C;
}

.author-title {
    color: #6C757D;
    font-size: 14px;
}

.faq-section {
  padding: 80px 20px;
  background: #fff;
  color: #1A2B5C;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-heading {
  color: #2B5CE6;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-subtitle {
  color: #6C757D;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.faq-question {
  font-weight: 700;
  font-size: 21px;
  color: #1A2B5C;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.faq-number {
  color: #2B5CE6;
  font-size: 16px;
  font-weight: 600;
}

.faq-answer {
  color: #6C757D;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsivnost */
@media (max-width: 768px) {
  .faq-row {
    grid-template-columns: 1fr;
  }

  .faq-question,
  .faq-answer {
    font-size: 16px;
  }
}

.map-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background-color: #f9fafb;
}

.map-wrapper {
  width: 100%;
  max-width: 1400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.team-section {
  padding: 80px 20px;
  background-color: #f4f7fa;
  text-align: center;
}

.team-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1A2B5C;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.team-name {
  font-size: 1.25rem;
  color: #1A2B5C;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.95rem;
  color: #6C757D;
}

/* Responsive: 2 columns on medium, 1 on small screens */
@media (max-width: 992px) {
  .team-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-row {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  background: linear-gradient(135deg, #1A2B5C 0%, #2B5CE6 100%);
  padding: 60px 20px;
  color: white;
  border-radius: 24px;
  max-width: 1400px;
  margin: 100px auto;
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .contact-hero-container {
    grid-template-columns: 1fr;
    padding: 40px 5px;
  }

  .hero-content,
  .hero-form {
      padding: 10px;
  }

  .hero-form {
      margin: 0 auto;
      width: 100%;
      max-width: 500px;
  }


  .contact-hero-buttons {
    flex-direction: column;
  }
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #eee;
}

.contact-hero-description {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}


/* SOCIAL IKONE */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #2b5ce6;
}

/* OBRAZEC */
.hero-form {
  background: white;
  color: #1a2b5c;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2b5ce6;
  outline: none;
}



.contact-details {
  margin-top: 60px;
  color: white;
}

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.nowrap {
  white-space: nowrap;
}

.contact-box {
  flex-wrap: wrap;
  gap: 40px;
  border-radius: 16px;
  padding: 32px;
}

.contact-info,
.location-info {
  flex: 1;
  min-width: 250px;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.icon-title img {
  width: 32px;
  height: 32px;
}

.icon-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #eee;
}

.info-pair {
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  font-size: 1rem;
  color: #ccc;
}

.info-pair span {
  font-weight: 500;
  color: #aaa;
}

.info-pair a {
  color: #fff;
  text-decoration: none;
}

.info-pair a:hover {
  text-decoration: underline;
}

.location-info p {
  margin: 0;
  color: #fff;
  line-height: 1.4;
}


.reach-us-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.section-header .subheading {
  color: #2B5CE6;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0c1e4d;
  margin-bottom: 20px;
}

.section-header .description {
  color: #6e7ca0;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.contact-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon-wrapper img {
  width: 36px;
  height: 36px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(98%) saturate(1473%) hue-rotate(210deg) brightness(97%) contrast(93%);
}

.contact-box h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #1A2B5C;
}

.contact-box p {
  color: #6C757D;
  margin-bottom: 16px;
}

.contact-box a {
  color: #0c1e4d;
  font-weight: bold;
  text-decoration: none;
}

.contact-box a::after {
  content: " ›";
  font-size: 16px;
  color: #2B5CE6;
}

@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column;
    gap: 40px;
  }
}


.social-follow-section {
  padding: 100px 20px;
  background-color: #fff;
  text-align: left;
}

.social-follow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-follow-header h2 {
  font-size: 36px;
  color: #0c1e4d;
  margin: 20px 0px;
}

.social-follow-header p {
  max-width: 400px;
  color: #4A5568;
  font-size: 16px;
}

.social-icons-grid {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
}

.social-box {
  width: 100px;
  height: 100px;
  background-color: #F7FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-size: 28px;
  color: #0B1120;
  text-decoration: none;
}

.social-box:hover {
  background-color: #2B5CE6;
  color: #fff;
}


.projects-section {
    padding: 80px 20px;
    background-color: #f9fafe;
    text-align: center;
}

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

.project-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2B5CE6 0%, #4A90E2 100%);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.project-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 92, 230, 0.3);
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 200px;
}

.project-title {
    margin-top: 16px;
    font-size: 1.1rem;
    color: #1A2B5C;
    font-weight: 600;
    padding-bottom: 15px;
}



/* Footer */
.footer {
    background: #1A2B5C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: white;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #4A90E2;
}

.footer-list i {
    margin-right: 8px;
    color: #4A90E2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.footer-left span {
  margin: 0 5px;
  color: #ffffffcc;
}

.footer-left a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-left a:hover {
  color: #4A90E2;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right {
    text-align: center;
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .why-us-content,
    .process-content,
    .contact-content,
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .service-card,
    .feature-card,
    .testimonial-card {
        margin: 0px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus {
    outline: 2px solid #2B5CE6;
    outline-offset: 2px;
}

.gallery-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #1a2b5c;
}

.gallery-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 40px;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  z-index: 10000;
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

.project-details-section {
  padding: 60px 20px;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.project-content {
  flex: 1 1 60%;
  color: #2c3e50;
}

.project-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-subtitle {
  font-size: 22px;
  margin: 30px 0 15px;
  font-weight: 600;
}

.project-content p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  color: #555;
}

.project-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.project-sidebar {
  flex: 1 1 30%;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sidebar-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sidebar-box p {
  color: #6c757d;
  margin-bottom: 20px;
}

.sidebar-btn {
  display: inline-block;
  background-color: #1d4ed8;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sidebar-btn:hover {
  background-color: #2563eb;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 30px;
  }

  .partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }

  .partner-logo img:hover {
    filter: grayscale(0%);
  }

  @media (max-width: 768px) {
    .partners-logos {
      gap: 30px;
    }

    .partner-logo img {
      max-height: 60px;
    }
  }

  .cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #fff;
  border-radius: 16px;
  padding: 20px 30px;
  max-width: 800px;
  width: calc(100% - 40px);
  z-index: 9999;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  display: none;
  animation: slideUp 0.5s ease forwards;
}

.cookie-popup-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-message {
  font-size: 1rem;
  line-height: 1.5;
}

.cookie-link {
  color: #2b5ce6;
  text-decoration: underline;
}

.cookie-link:hover {
  text-decoration: none;
}

@keyframes slideUp {
  from { transform: translate(-50%, 100px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

@media (min-width: 600px) {
  .cookie-popup-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.newsletter-section {
  background: linear-gradient(135deg, #1A2B5C 0%, #2B5CE6 100%);
  padding: 60px 20px;
  color: #fff;
  border-radius: 20px;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  position: relative;
}

.newsletter-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.newsletter-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  max-width: 400px;
  width: 100%;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 12px 30px;
  background-color: #ffffff;
  color: #005eff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #c9d2ff;
}

@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
    justify-content: center;
  }
}