  @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

  /* Βάλε την εικόνα ως background της σελίδας (όχι σε κάθε στοιχείο) */
  html {
    height: 100%;
  }

  

  /* Εφαρμόζουμε την εικόνα μόνο στην αρχική σελίδα (body.home) */
  body.home {
    /* Εικόνα που καλύπτει όλη τη σελίδα, κεντράρισμα, χωρίς επανάληψη */
    background-image: url(../images/slider1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* cover ώστε να καλύπτει όλη την οθόνη */
    background-attachment: fixed; /* σταθερή στο παράθυρο (parallax-like) */
  }



  /* Εφαρμόζουμε την εικόνα μόνο στην αρχική σελίδα (body.about) */


  /* Particles container: full-screen fixed canvas behind content */
  /* Particles should receive pointer events so hover repulse works, but the actual canvas
     inside particles.js will not block clicks to the UI when needed. We increase header z-index
     so menu stays on top. */
  #particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* behind content but above any negative overlay */
    pointer-events: auto; /* allow particles to receive mouse events (hover) */
    background: transparent;
  }

  /* The canvas element inside particles.js typically has class .particles-js-canvas-el */
  #particles-js .particles-js-canvas-el {
    width: 100% !important;
    height: 100% !important;
    display: block;
    /* Allow pointer events so particles can respond to hover, but if you need clicks to pass to
       elements above, ensure those elements have higher z-index. */
    pointer-events: auto;
  }

  /* Αν θέλεις ένα ημιδιάφανο overlay πάνω από την εικόνα (π.χ. για καλύτερο contrast):
     πρόσθεσε <div class="bg-overlay"></div> αμέσως μετά του body ανοίγματος στο HTML
     ή ενεργοποίησε με body::before στο CSS όπως παρακάτω. */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* overlay color (transparent by default) */
    pointer-events: none; /* να μην μπλοκάρει clicks */
    z-index: -1; /* put overlay behind particles canvas */
  }


.container, footer, .section, .slider, .news-thumb {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 1170px; /* Η κλασική διάσταση του Bootstrap */
  margin: 0 auto;
  padding: 0 15px;
}

/* 2. Για μεγάλες οθόνες (Full HD - 1920px) */
@media (min-width: 1201px) {
    .container {
        max-width: 1400px;
    }
}

/* 3. Για Ultra-Wide οθόνες (2K, 4K και άνω) */
@media (min-width: 1921px) {
    .container {
        max-width: 1700px; /* Εδώ ανοίγει για να προλάβει τα boxes */
    }
}

/* Make header/navbar above particles so menu remains interactive */
header, .navbar-default {
  position: relative;
  z-index: 4;
}



/* keep background-image on body; set only background-color fallback and global font */
body {
  background-color: #ffffff; /* fallback color when image not loaded */
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #686868;
  position: relative;
  z-index: 1; /* content above the fixed background */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    line-height: inherit;
  }

  h1,h2,h3,h4 {
    letter-spacing: -1px;
  }

  h5 {
    font-weight: 500;
  }

  h1 {
    color: #252525;
    font-size: 6em;
  }

  h2 {
    color: #272727;
    font-size: 3em;
    padding-bottom: 10px;
  }

  h3 {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 0;
  }

  h4 {
    color: #454545;
    font-size: 1.8em;
    padding-bottom: 2px;
  }

  h6 {
    letter-spacing: 0;
    font-weight: normal;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
  }

  a:hover, a:active, a:focus {
    color: #b72b4a;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
  }

  .section-title {
    padding-bottom: 20px;
  }

  .section-title h2 {
    margin-top: 0;
  }

  .section-btn {
    background: #000000;
    border: 3px solid #b72b49;
    border-radius: 0.5px;
    color: #ffffff;
    font-size: inherit;
    font-weight: 600;
    padding: 12px 50px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .section-btn:hover {
    transform: translateY(-5px);
    background: #b72b4a;
    border-color: #000000;
    color: black;
  }

  .text-align-right {
    text-align: right;
  }

  .text-align-center {
    text-align: center;
  }

  .border-top {
    border-top: 1px solid #666666;
    margin-top: 4em;
    padding-top: 2.5em;
  }

  .btn-gray {
    background: #393939;
  }

  .btn-blue {
    background: #4267b2;
  }

  .news-thumb {
    background: #ffffff;
    border-radius: 10px;
  }
  .news-thumb img {
    border-radius: 10px 10px 0 0;
  }

  .news-info {
    padding: 30px;
    text-align: left;
  }
  .news-info span {
    display: block;
    letter-spacing: 0.5px;
  }
  .news-info h3 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .author {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5em;
    margin-top: 2em;
  }
  .author img,
  .author .author-info {
    display: inline-block;
    vertical-align: top;
  }
  .author-info h5 {
    margin-bottom: 0;
  }
  .author img {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }


  #about, #team, #news,
  #news-detail {
    position: relative;
    padding-top: 10px;
    padding-bottom: 100px;
  }

  #news, #service {
    text-align: center;
  }

  #google-map {
    padding-top: 50px;
    line-height: 0;
    margin: 0;
    padding: 0;
    filter: grayscale(70%) invert(100%) contrast(100%); /* ορισμός φίλτρου google maps */
  }


/*
  #breadcrumb{
    font-family: "Montserrat", Sans-serif;
    background-color: none !important;
    color: #757575;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    margin-top: 5%;
    padding-bottom: 2%;
  }
  #breadcrumb:hover{
    color: #b72b4a;
    cursor: pointer;
  }

*/
  /* ---------- */
  /* breadcrumb */
  /* ---------- */

  .item-first{
    margin-bottom: 0;
  }

  .breadcrumb-list {
  list-style: none;
  padding: 8% 0;
  display: flex; /* Τα βάζει σε σειρά */
  justify-content: center; /* Αυτό τα φέρνει στη μέση οριζόντια */
  gap: 10px;    /* Απόσταση μεταξύ τους */
  margin-bottom: -5%;
  align-items: center;
  text-align: center;
  height: 100px;
}

.breadcrumb-list li {
  font-size: 14px;
  color: #666;
}

/* Προσθήκη διαχωριστικού "/" ή ">" αυτόματα */
.breadcrumb-list li+li:before {
  content: ">";
  padding-right: 10px;
  color: #b72b4a;
}

.breadcrumb-list li a {
  text-decoration: none;
  color:  #ffffff3b;; /* Το χρώμα που χρησιμοποιείς */
  transition: 0.3s;
}

.breadcrumb-list li a:hover {
  text-decoration: underline;
  color:#b72b4a
} 

.breadcrumb-list li.active {
  color: #b72b4a;
  font-weight: bold;
  pointer-events: none; /* Το τελευταίο επίπεδο δεν είναι κλικαρόμενο */
}


@media (max-width: 640px) {
   .breadcrumb-list {
    list-style: none;
    padding: 40% 0 10% 0 !important;
    display: flex; /* Τα βάζει σε σειρά */
    justify-content: center; /* Αυτό τα φέρνει στη μέση οριζόντια */
    gap: 10px;    /* Απόσταση μεταξύ τους */
    margin-bottom: -5%;
    align-items: center;
    text-align: center;
    height: 100px;
  }

  .breadcrumb-list li {
    font-size: 0.8rem;
  }
}



  /*custom*/
  /* Styling for the logout button in navbar */
  .inline-form {
    display: inline;
  }
  .logout-button {
      background-color: #b72b4a; /* White background */
      color: #ffffff; /* Blue text from Bootstrap primary */
      padding: 8px 16px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
  }
  .logout-button:hover {
      background-color: #e2e6ea; /* Lighter grey on hover */
  }
  .welcome-message {
      color: #5a5a5a;
      padding: 12px 16px;
      font-weight: 500;
      display: inline-block; /* To allow padding */
  }
  .news-thumb img {
    width: 100%;       /* Ensures the image fills the width of its container */
    height: 450px;     /* Fixed height for all images */
    object-fit: cover; /* Ensures the image covers the frame without distortion */
    display: block;    /* Removes any extra space below the image */
}

  /* ΝΕΑ ΣΤΥΛ ΓΙΑ ΤΗ ΦΟΡΜΑ ΣΥΝΔΕΣΗΣ */
  .login-card {
      background-color: #aaaaaa2c;
      max-width: 500px;
      padding: 30px;
      border-radius: 10px; /* Στρογγυλεμένες γωνίες */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Διακριτική σκιά */
      border: 1px solid #e4e4e4; /* Ελαφρύ περίγραμμα */
  }

  .login-card .panel-heading {
      background-color: transparent; /* Καθαρίζει το default background του panel-heading */
      border-bottom: none; /* Αφαιρεί το default border */
      padding-bottom: 15px; /* Προσθέτει χώρο κάτω από τον τίτλο */
  }

  .login-card .panel-title {
      color: #ffffff; /* Πιο σκούρο χρώμα για τον τίτλο */
      font-size: 2.2em; /* Μεγαλύτερο μέγεθος τίτλου */
      font-weight: 600; /* Πιο έντονος τίτλος */
      margin-bottom: 0; /* Αφαιρεί το default margin */
  }

  .login-card .form-group {
    width: 100%; /* Εξασφαλίζει ότι τα πεδία γεμίζουν όλο το πλάτος του card */
    margin-bottom: 20px; /* Καλύτερη απόσταση μεταξύ των πεδίων */
  }



  .login-card label {
      font-weight: 500; /* Πιο έντονη ετικέτα */
      color: #bbbbbb;
      margin-bottom: 8px; /* Απόσταση ετικέτας από το input */
      display: block; /* Για να πιάνει όλο το πλάτος */
  }

  .login-card .form-control {
      border-radius: 5px; /* Στρογγυλεμένες γωνίες στα input */
      border: 1px solid #ccc;
      padding: 10px 15px;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05); /* Ελαφριά εσωτερική σκιά */
  }

  .login-card .btn-primary {
      background-color: #b72b4a; /* χρώμα κουμπιού */
      border-color: #b72b4a;
      font-size: 1.1em;
      padding: 12px 20px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 50px;
  }

  .login-card .btn-primary:hover {
      background-color: #313131; /* hover */
  }

  .login-card .text-link {
      color: #b72b4a;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
  }

  .login-card .text-link:hover {
      color: #b72b4a;
      text-decoration: underline;
  }

  .login-icon {
      font-size: 4em; /* Μεγάλο μέγεθος εικονιδίου */
      color: #b72b4a; /* Πράσινο χρώμα */
      margin-bottom: 20px;
      display: block; /* Για να είναι στο κέντρο */
      text-align: center;
  }

  #loginSection .container {
    padding-top: 12%; /* Αυξημένο padding για καλύτερη εμφάνιση */
    padding-left: 10%; /* Αυξημένο padding για καλύτερη εμφάνιση */
    padding-right: 10%; /* Αυξημένο padding για καλύτερη εμφάνιση */
    width: 100% !important; /* Εξασφαλίζει ότι το container γεμίζει όλο το πλάτος */
    max-width: 800px; /* Περιορίζει το μέγιστο πλάτος για καλύτερη αναγνωσιμότητα */
    margin-bottom: 0; /* Αφαιρεί το default margin-bottom */
  }




  /* ΝΕΑ ΣΤΥΛ ΓΙΑ ΤΗ ΔΙΑΤΑΞΗ ΚΑΙ ΤΗΝ ΑΠΟΣΤΑΣΗ ΤΩΝ POSTS */
.news-thumb {
    margin-bottom: 60px; /* Αυξημένη απόσταση μεταξύ των posts */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Πιο έντονη σκιά για εφέ κάρτας */
    overflow: hidden; /* Για να κρατήσει τις στρογγυλές γωνίες της εικόνας */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Εφέ hover */
}

.news-thumb:hover {
    transform: translateY(-5px); /* Ελαφρύ εφέ "σηκώματος" στο hover */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Πιο έντονη σκιά στο hover */
}

.news-thumb .news-info {
    padding: 30px; /* Αυξημένη εσωτερική απόσταση για το περιεχόμενο του post */
}

.news-thumb .news-info h3 {
    font-size: 2.4em; /* Μεγαλύτερος τίτλος */
    margin-top: 15px;
    margin-bottom: 12px;
}

.news-thumb .news-info span {
    font-size: 1em;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.news-thumb .news-info p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.news-thumb .author {
    font-size: 0.95em;
    color: #444;
    margin-top: 20px;
    font-weight: 500;
}

.news-thumb .read-more .btn {
    padding: 10px 25px;
    font-size: 1.05em;
    border-radius: 30px; /* Πιο στρογγυλεμένο κουμπί */
    background-color: #007bff; /* Χρώμα Bootstrap primary */
    border-color: #007bff;
    transition: background-color 0.3s ease;
}

.news-thumb .read-more .btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}










  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  header {
    background: rgba(46, 46, 46, 0); /* ορισμός διαφάνειας header ημιδιαφανές ώστε να φαίνεται η εικόνα από κάτω */
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    height: 45px;
  }

  header .col-md-8 {
    padding-right: 0;
  }

  logo{
    
    padding-top: 10px;
    font-size: 20px;
  }

  header p,
  header span {
    font-size: 12px;
    line-height: 24px;
    padding-top: 12px;
  }

  header a,
  header span {
    color: #747474;
  }

  header span {
    font-weight: 500;
    display: inline-block;
    padding: 11px 15px;
  }

  header span.date-icon {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    padding-right: 19px;
    padding-left: 19px;
  }

  header span i {
    color: #b72b4a;
    margin-right: 5px;
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .navbar-default {
    /* Ημιδιαφανές background ώστε να φαίνεται το background της σελίδας από πίσω */
    background: rgba(46, 46, 46, 0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    border: none;
    margin-bottom: 0;
    padding: 10px;
  }

.logo { 
  width: 160px; /* προσαρμόζεις ανάλογα */ 
  height: 40px; /* προσαρμόζεις ανάλογα */ 
  display: inline-block; 
  background-image: url('../images/winux-logo.png'); /* relative από css -> ../images/... */ 
  background-size: contain; 
  background-repeat: no-repeat; 
  background-position: center; 
  margin-left: 80px; /* καθορισμός αποστάσεως logo */ 
  margin-top: 10px; /* καθορισμός αποστάσεως logo */ 
}
@media (max-width: 640px){
  .logo {
    margin-left: 10px; /* μικρότερη απόσταση για κινητά */
    margin-top: 5px;
    width: 120px; /* μικρότερο μέγεθος για κινητά */
    height: 30px;
  }
}

  .navbar-default .navbar-brand {

    color: #8b8b8b;
    font-weight: 500; 
  }

  .navbar-default .navbar-brand .fa {
    color: #b72b4a;
  }

  .navbar-default .navbar-nav li.appointment-btn {
    margin: 3px 0 0 20px;
  }

  .navbar-default .navbar-nav li.appointment-btn a {
    background: #b72b4a;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-default .navbar-nav li.appointment-btn a:hover {
    background: #8b8b8b;
    color: #ffffff !important;
  }

  .navbar-default .navbar-nav li a {
    color: #8b8b8b;
    font-size: 12px;
    font-weight: 500;
    padding-right: 20px;
    padding-left: 20px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .navbar-default .navbar-nav > li a:hover {
    color: #393939 !important;
  }

  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: #555555;
    background-color: transparent;
  }

  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus {
    color: #393939;
    background-color: transparent;
  }

  .navbar-default .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background: #393939;
    border-color: transparent;
  }

  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus { 
    background-color: transparent;
  }

  .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
  }

.nav__link {
  position: relative;
}

/* Ρύρμιση για εμφάνιση Tooltip Menu */
.nav__link:hover::after {
  content: attr(data-title); /* Παίρνει το κείμενο από το data-title attribute */
  position: absolute;
  right:110%; /* Το εμφανίζει δεξιά από το εικονίδιο */
  background: #74747400; /* χωρίς χρώμα */
  color: white;
  padding: 10px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 999;
  margin-right: 50px;
}



  /*---------------------------------------
      HOME              
  -----------------------------------------*/

  #home .slider .caption {
  text-align: left;
  align-items: flex-start; /* αν χρειάζεται, για να ευθυγραμμίσει και τα flex-children */
}

  #home h1 {
    color: #ffffff;
    padding-bottom: 10px;
    margin-top: 0;
    font-family: "Montserrat", Sans-serif;
    font-size: 4.0vmax;
    line-height: 75px;
    text-align: left;
    padding-left: 25%;
    line-height: 8.5rem;
  }

    #home h2 {
    color: #b72b4a;
    padding-bottom: 10px;
    margin-top: 15%;
    font-family: "Montserrat", Sans-serif;
    font-size: 3.1vmax;
    text-align: left;
    padding-left: 25%;
    line-height: 6.5rem;
    }

    #home h3 {
      color: #a3a3a3;
      font-size: 1.5rem;
      font-weight: normal;
      line-height: inherit;
      letter-spacing: 0px;
      text-transform: uppercase;
      margin: 0 25% 2% 25%;
      font-family: "Montserrat", Sans-serif;
      text-transform: none;
    }

   #home .section-btn {
    background: #000000;
    border: 3px solid #b72b49;
    border-radius: 0.5px;
    color: #ffffff;
    font-size: inherit;
    font-weight: 600;
    padding: 12px 30px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
    align-self: flex-start;
    margin-left: 25%;
    cursor: pointer !important;
  }

   #home .section-btn:hover {
    transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
    background: #b72b4a;
    border-color: #000000;
    color: black;
  }

  /* Animated styling for the word container; letters animate individually */
  .front-word {
    display: inline-block;
    position: relative;
    font-weight: 700;
    /* keep text transparent to allow background-clip on letters */
    color: transparent;
    background: linear-gradient(90deg, #b72b4a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Individual letter style */
  .front-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    will-change: transform, opacity;
    animation-name: front-letter-in;
    animation-duration: 420ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.2,.9,.2,1);
  }

  /* Stagger helper: each nth-child will start slightly later (we'll set inline style delays from JS) */
  @keyframes front-letter-in {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    60% { opacity: 1; transform: translateY(-6px) scale(1.06); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }



  /* Keep hover subtle */
  .front-word:hover .front-letter { transform: translateY(0) scale(1.02); }



  .slider .container {
    width: 100%;
  }

  .slider .owl-dots {
      position: absolute;
      top: 575px;
      width: 100%;
      justify-content: center;
  }

  .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    border: 2px solid #d9d9d9;
    background: transparent;
    display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ffffff;
    border-color: transparent;
  }

  .slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    background-color: rgba(20,20,20,0.2);
    height: 100%;
    color: #fff;
    /* Previously the site used a resize cursor for the slider area.
       The slider has been removed; force the default cursor here and
       for all child elements to avoid the odd cursor when hovering. */
    cursor: default !important;
  }

/* Make caption decorative only: don't intercept pointer events so elements
   visually below or adjacent (like service tiles) can receive hover/click.
   Keep links inside caption clickable if present. */
.slider .caption {
  pointer-events: none;
}
.slider .caption a,
.slider .caption button {
  pointer-events: auto; /* if caption contains interactive elements, allow them */
}



/* Strong override to ensure no child element inside a (removed) slider
    forces a special cursor. This targets the slider container and all
    of its descendants. Use !important sparingly but acceptable here
    because we are undoing an old template rule that set a different cursor. */
.slider, .slider * {
  cursor: default !important;
}

.slider .item {
  background-position: inherit;
  background-repeat: no-repeat;
  background-attachment: local;
  background-size: cover;
  height: 650px;
}





  
/*--


  .slider .item-first {
    background-image: url(../images/slider1.jpg);
  }

  .slider .item-second {
    background-image: url(../images/slider2.jpg);
  }

  .slider .item-third {
    background-image: url(../images/slider3.jpg);
  }

--*/


  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  body.about {
    background-color: #000000ec;
    background-image:
      url('/template/images/about-small.jpg'),
      url('/template/images/about.jpg');
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    background-attachment: fixed, fixed;
  }

  /* Full-screen background element used on the about page. This is placed behind
    particles and content (z-index stacking), and provides a blur-up placeholder
    that crossfades into the high-res image with a subtle Ken Burns motion. */
    #about-bg {
      position: fixed;
      inset: 0; /* top:0; right:0; bottom:0; left:0; */
      z-index: -8; /* behind particles (z-index:0) and content (z-index:2) */
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 0;
      transform-origin: center center;
      transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
      will-change: opacity, transform, filter;
      pointer-events: none;
    }

    /* Placeholder state: blurred, slightly scaled and visible while hi-res loads */
    #about-bg.bg--placeholder {
      opacity: 1;
      filter: blur(12px) saturate(0.95) contrast(0.95);
      transform: scale(1.02);
    }

    /* ορισμός κίνησης εικόνας backround */
    #about-bg.bg--loaded {
      opacity: 1;
      filter: blur(0px) saturate(1) contrast(1);
      animation: kenburns 10s ease-in-out infinite alternate;
    }

    @keyframes kenburns {
      0% { transform: scale(1.02) translate3d(0,0,0); }
      100% { transform: scale(1.12) translate3d(0,-2.5%,0); }
    }

    /* Respect user's reduced motion preference: no transform/animation */
    @media (prefers-reduced-motion: reduce) {
      #about-bg, #about-bg.bg--placeholder, #about-bg.bg--loaded {
        transition: none !important;
        animation: none !important;
        transform: none !important;
      }
    }

  #about {
    background-size: cover;
    padding-top: 250px;
    padding-left: 500px;
    padding-bottom: 10px;
    max-width: 80%;
  }

  #about .container {
    background-color: #b72b49ee
  }

  /* Reveal / unfold animation for the ABOUT container.
     Usage: wrap content in a .about-reveal (we already use #about > .container)
     Add .is-visible to trigger the animation (JS will add it on load or when scrolled into view).
  */
  .about-reveal {
    transform-origin: top center;
    /* start collapsed (slightly scaled + shifted) */
    transform: scale(0.94) translate(0, 6px);
    opacity: 0;
    filter: blur(6px) saturate(0.95);
    transition: transform 700ms cubic-bezier(.2,.9,.2,1), opacity 520ms ease, filter 700ms ease;
    will-change: transform, opacity, filter;
  }

  /* When visible, expand to full height and fade in */
  .about-reveal.is-visible {
    transform: scale(1) translate(0,0);
    opacity: 1;
    filter: blur(0) saturate(1);
  }

  /* Stagger child elements inside about container for nicer entrance */
  .about-reveal .about-container,
  .about-reveal h2 {
    opacity: 0;
    transform: translateY(12px);
    transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 520ms ease;
  }
  .about-reveal.is-visible .about-container,
  .about-reveal.is-visible h2 {
    opacity: 1;
    transform: translateY(0);
  }

  /* small stagger using nth-child (adjust counts if your layout changes) */
  .about-reveal .about-container:nth-of-type(1) { transition-delay: 120ms; }
  .about-reveal .about-container:nth-of-type(2) { transition-delay: 220ms; }
  .about-reveal h2 { transition-delay: 60ms; }

  /* Directional variants: choose reveal origin.
     Usage examples:
       .about-reveal--tl  -> appear from Top-Left
       .about-reveal--tr  -> appear from Top-Right
       .about-reveal--bl  -> appear from Bottom-Left
       .about-reveal--br  -> appear from Bottom-Right
  */
  /* stronger diagonal 'unfold' from top-left toward bottom-right */
  .about-reveal--tl {
    transform-origin: top left;
    /* start smaller, offset toward top-left and slightly skewed for a paper-unfold feel */
    transform: scale(0.72) translate(-28%, -28%) skew(-5deg, -2deg);
    transition: transform 820ms cubic-bezier(.22,.9,.34,1), opacity 520ms ease, filter 700ms ease;
  }
  .about-reveal--tr { transform-origin: top right; transform: scale(0.9) translate(6%, -6%); }
  .about-reveal--bl { transform-origin: bottom left; transform: scale(0.9) translate(-6%, 6%); }
  .about-reveal--br { transform-origin: bottom right; transform: scale(0.9) translate(6%, 6%); }

  .about-reveal--tl.is-visible,
  .about-reveal--tr.is-visible,
  .about-reveal--bl.is-visible,
  .about-reveal--br.is-visible {
    /* reset transforms when visible (remove skew for clean final state) */
    transform: scale(1) translate(0,0) skew(0deg, 0deg);
  }

  /* Respect reduced motion — disable transforms/animations */
  @media (prefers-reduced-motion: reduce) {
    .about-reveal,
    .about-reveal.is-visible,
    .about-reveal .about-container,
    .about-reveal h2 {
      transition: none !important;
      animation: none !important;
      transform: none !important;
      opacity: 1 !important;
      filter: none !important;
    }
  }

  .profile img,
  .profile figcaption { 
    display: inline-block;
    vertical-align: top;
    margin-top: 1em;
  }
  .profile img {
    border-radius: 100%;
    width: 65px;
    height: 65px;
    margin-right: 1em;
  }
  .profile figcaption h3 {
    margin-top: 0;
  }

  #about h6 {
    color: #858585;
    margin: 0;
  }

  .about-info p{
    color: #ddd;
    padding-bottom: 2%;
  }

  .about-container {
    opacity: 0.8;
    border-radius: 10px;
    padding: 20px;
  }
  .about-container p{
    color: #fff;
    font-size: 1em;
    margin-left: 2%;
    margin-right: 10%;
    animation-name: fadeInUp;
  }

  .about h2{
    color: #000000;
    padding-left: 20px;
    padding-top: 0px;
    margin-bottom: -20px;
  }

  .about h4{
    font-size: 2em;
    color: #000000;
    padding-left: 4%;
    padding-top: 10px;
    animation-name: fadeInUp;
    animation-duration: 1s;
    margin-left: -20px;
  }

  .about h5{
    font-size: 1.3em;
    color: #ffffff;
    padding-left: 16px;
    padding-top: 0px;
    margin-bottom: -20px;
    animation-name: fadeInUp;
    animation-duration: 1s;
    padding-bottom: 20px;
    margin-left: -20px;
    font-weight: 800;
  }

  



  /*---------------------------------------
      TEAM MEMBERS              
  -----------------------------------------*/

  .team-thumb {
    background-color: #f9f9f9;
    border-radius: 0 0 10px 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .team-info {
    padding: 20px 30px 0 30px;
  }

  .team-contact-info {
    border-top: 1px solid #e9e9e9;
    padding-top: 1.2em;
    margin-top: 1.5em;
  }

  .team-contact-info .fa {
    margin-right: 5px;
    display: inline-block;
  }

  .team-contact-info p {
    margin-bottom: 2px;
  }

  .team-contact-info a {
    color: #757575;
  }

  .team-thumb .social-icon li {
    font-weight: 500;
  }

  .team-thumb .social-icon li a {
    background: #ffffff;
    border-radius: 100%;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 2px 0 2px;
  }

  .team-thumb .social-icon {
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s 0.2s;
    text-align: center;
    position: relative;
    top: 0;
  }

  .team-thumb:hover .social-icon {
    opacity: 1;
    transition-delay: 0.3s;
    transform: translateY(0px);
    top: -22em;
  }

  
/* --- crisp.chat --- */
/* Κρύβουμε τελείως το προεπιλεγμένο εικονίδιο του Crisp για να μη φαίνεται ποτέ */
#crisp-chatbox > div > a {
  display: none !important;
}
/* Όταν το chat είναι ανοιχτό, κρύβουμε το δικό μας ρομποτάκι */
body.crisp-chat-opened #winux-chat-trigger {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px); /* Μικρό εφέ κίνησης καθώς φεύγει */
}
/* --- end crisp.chat --- */



/*---------------------------------------
    SERVICE              
-----------------------------------------*/

body.services {
  /* Εικόνα που καλύπτει όλη τη σελίδα, κεντράρισμα, χωρίς επανάληψη */
  background-image: url(../images/slider1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* cover ώστε να καλύπτει όλη την οθόνη */
  background-attachment: fixed; /* σταθερή στο παράθυρο (parallax-like) */
}

.header-services{
  justify-content: center;
  align-items: center;
}

.services-item{
  background: #b72b49;
  border-radius: 3px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; /* center inline content like icons and buttons */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px; /* reasonable default; tune as needed for your design */
}


#services h1 {
  color: #707070;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 25%;
  line-height: 75px;
  text-align: center;
}

#services h2 {
  color: #666666;
  padding-bottom: 10px;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 55px;
  text-align: left;
  padding-left: 30%;
}

#services h3 {
  color: #ffffff;
  padding-bottom: 2px;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 5.5rem;
  text-align: left;
  padding-left: 0;
  padding-left: 0;
}

#services h4 {
  color: #ffffff;
  padding-bottom: 10px;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 25px;
  text-align: center;

}


#services p {
  color: #ffffff;
  text-align: left;
  padding-top: 1%;
  padding-bottom: 2%;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.7rem;
}

/* Το wrapper που κεντράρει το μπλοκ αλλά στοιχίζει αριστερά το κείμενο */
.text-content-block {
  display: inline-block;
  text-align: left;
}

#services .text {
  color: #000000;
  align-items: center;
  padding-top: 10px;
  margin-bottom: 10px;
  font-family: "Montserrat", Sans-serif;
  font-size: 12px;
  text-align: center;
}

  #services .section-btn {
  background: #000000;
  border: 3px solid #b72b49;
  border-radius: 0.5px;
  color: #ffffff;
  font-size: inherit;
  font-weight: 600;
  padding: 12px 50px;
  transition: transform 0.1s ease-in;
  transform: translateX(0);
}

  #services .section-btn:hover {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}

#services .service-thumb {
  padding: 0 22px;
}

#services .fa {
  font-size: 50px;
  margin-bottom: 10px;
  background: #ffffff;
  color: #b72b4a;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 100%;
}

/* Animated styling for the word container; letters animate individually */
#services .front-word {
  display: inline-block;
  position: relative;
  font-weight: 700;
  /* keep text transparent to allow background-clip on letters */
  color: transparent;
  background: #b72b4a;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Individual letter style */
#services .front-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  will-change: transform, opacity;
  animation-name: front-letter-in;
  animation-duration: 420ms;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.2,.9,.2,1);
}

/* Stagger helper: each nth-child will start slightly later (we'll set inline style delays from JS) */
@keyframes front-letter-in {
  0% { opacity: 0; transform: translateY(10px) scale(0.95); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.06); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Keep hover subtle */
#services .front-word:hover .front-letter { transform: translateY(0) scale(1.02); }


.services-container {
  position: relative;
  z-index: 2;
}

/* Stagger child elements inside about container for nicer entrance */
.services-container {
  opacity: 0;
  transform: translateY(12px);
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 520ms ease;
}
.services-container {
  opacity: 1;
  transform: translateY(0);
}

/* small stagger using nth-child (adjust counts if your layout changes) */
.services-container:nth-of-type(1) { transition-delay: 120ms; }
.services-container:nth-of-type(2) { transition-delay: 220ms; }

/* Service item icon sizing (used by services/index.ejs) */
.services-item .service-icon {
  display: block;
  width: 86px;
  height: 86px; 
  object-fit: contain;
  margin: 0 auto 10px auto; /* center above title */
}

#services .services-container {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}

#services .services-container .row {
  /* remove bootstrap negative margins inside our custom container */
  margin-left: 0;
  margin-right: 0;
}

#services .services-item {
/* internal horizontal gutter between tiles (adds breathing room) */
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
border-top: 20px solid #797979; /* ορισμός border πλαισίων */
}

@media (min-width: 768px) {
  #services .services-container { padding-left: 48px; padding-right: 48px; }
  #services .services-item { padding-left: 18px; padding-right: 18px; }
}

/* ορισμός μεγεθους πλαισίων services */
@media (min-width: 1200px) {
  #services .services-container { 
    padding-left: 12%; 
    padding-right: 12%;
  }
}

/* Services tile reveal animation */
#services .services-item {
  min-width: 250px; /* ορισμός μεγέθους πλαισίων services */
  min-height: 370px; /* ορισμός μεγέθους πλαισίων services */
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(10px) scale(0.99); /* ορισμός χρονου εμφανισης πλαισίων services */
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), opacity 360ms ease-out;
}

#services .services-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* καθορισμός - ανασήκωμα τετραγώνων (πλαισίων) hover*/
#services .services-item.is-visible:hover {
  transform: translateY(-25px) scale(1.01);
  transition: transform 900ms cubic-bezier(.2,.2,.2,1);
}

/* service-icon pop animation */
@keyframes service-icon-pop {
  0% { opacity: 0; transform: translateY(-8px) scale(0.7); }
  60% { opacity: 1; transform: translateY(0) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

#services .service-icon {
  display: block; /* already set, but ensure specificity */
  opacity: 0;
  transform: translateY(-8px) scale(0.9);
  pointer-events: auto; /* ensure the image can receive mouse events */
  position: relative;
  z-index: 3; /* bring above potential overlays inside the tile */
}

#services .services-item.is-visible .service-icon {
  animation-name: service-icon-pop;
  animation-duration: 520ms;
  animation-timing-function: cubic-bezier(.2,.9,.2,1);
  animation-fill-mode: forwards;
  animation-delay: var(--reveal-delay, 0ms);
  cursor: pointer !important; /* ensure the icon shows a pointer cursor on hover */
}

/* Subtle hover scale on the icon itself */
#services .service-icon {
/* ensure we have a smooth transform baseline for hover/focus */
  transition: transform 220ms cubic-bezier(.2,.9,.2,1);
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Hover & keyboard focus: subtle scale + rotation (pleasant micro-interaction) */
#services .service-icon:hover,
#services .service-icon:focus {
  transform: scale(1.06) rotate(-18deg) !important;  /* ορισμός περιστροφής εικονιδίων */
  outline: none; /* visual focus handled separately if desired */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #services .service-icon,
  #services .services-item {
    transition: none !important;
    animation: none !important;
  }
}

.services-item .button{
  display: inline-block;
  padding: 10px 20px;
  margin: 12px auto 0 auto; /* centered without fixed left margin */
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 160ms ease;
}
.services-item .button:hover{
  background-color: #ffffff; /*ορισμός χρώματων hover κουμπιών*/
  color: #000000;
  border: 3px solid #000000;
  transform: translateY(-2px);
}



#services.slider .caption {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: rgba(20,20,20,0.2);
  height: 100%;
  color: #fff;
/* Previously the site used a resize cursor for the slider area.
    The slider has been removed; force the default cursor here and
    for all child elements to avoid the odd cursor when hovering. */
cursor: default !important;
}

/* Strong override to ensure no child element inside a (removed) slider
  forces a special cursor. This targets the slider container and all
  of its descendants. Use !important sparingly but acceptable here
  because we are undoing an old template rule that set a different cursor. */
#services.slider, #services.slider * {
  cursor: default !important;
}


#services.slider .item {
  background-position: inherit;
  background-repeat: no-repeat;
  background-attachment: local;
  background-size: cover;
  height: 450px;
}

/* Bring services tiles above the slider/caption to ensure they receive events */
#services .services-container {
  position: relative !important;
  z-index: 6 !important; /* higher than caption and default containers */
}

@media (max-width: 640px) {
  #services h2 {
    color: #b72b4a;
    padding-bottom: 0 0 0 50px;
    margin-top: 150px;
    font-family: "Montserrat", Sans-serif;
    font-size: 30px;
    text-align: left;
    padding-left: 10%;
  }

  #services h1 {
    color: #ffffff;
    padding-bottom: 20px;
    margin-top: 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 32px;
    line-height: 40px;
    text-align: left;
    padding-left: 10%;
  }

  #services h3 {
    color: #a3a3a3;
    font-size: 2rem;
    padding-left: 18%;
  }

  .text-content-block h3{
  padding-right: 10%;
}


  #services p {
    margin-left: 0 !important;
    margin-right: 0;
    font-size: 1.3rem;
    padding-left: 18%;
    padding-right: 18%;
  }
}



/*---------------------------------------
  inside SERVICE - SERVICE DETAIL             
-----------------------------------------*/

body.serviceInside {
  /* Εικόνα που καλύπτει όλη τη σελίδα, κεντράρισμα, χωρίς επανάληψη */
  background-image: url(../images/slider1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* cover ώστε να καλύπτει όλη την οθόνη */
  background-attachment: fixed; /* σταθερή στο παράθυρο (parallax-like) */
}

.serviceInside-item{
  /*background-color: #000000;*/
  border-radius: 8px; 
  padding: 30px;
  text-align: flex; /* center inline content like icons and buttons */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  padding: 0;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}


.serviceInside-item img{
  width: 100%;
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.serviceInside-item .section-btn {
  margin-bottom: 25px;
}

#serviceInside h1 {
  color: #707070;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 25%;
  line-height: 75px;
  text-align: center;
}

#serviceInside h2 {
  color: #666666;
  padding-bottom: 10px;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 2.5rem;
  text-align: left;
  padding-left: 30%;
}

  #serviceInside h3 {
    color: #ffffff;
    padding-bottom: 2px;
    margin-top: 0;
    font-family: "Montserrat", Sans-serif;
    font-size: 5.5rem;
    text-align: left;
  }

#serviceInside h4 {
  color: #b72b49;
  padding-top: 5%;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
}

#serviceInside p {
  color: #ffffff;
  align-items: center;
  padding-top: 1%;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
}

#serviceInside .text {
  color: #a5a5a5;
  align-items: center;
  padding-bottom: 8%;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: center;
}

#serviceInside .section-btn {
  background: #000000;
  border: 3px solid #b72b49;
  border-radius: 0.5px;
  color: #ffffff;
  font-size: inherit;
  font-weight: 300;
  display: table !important;
  width: auto;
  min-width: 180px;
  transition: transform 0.1s ease-in;
  transform: translateX(0);
  margin: 20px auto 0 auto;
  cursor: pointer !important;
  display: flex;
  flex-direction: column; /* Στοίχιση σε στήλη */
  align-items: center;    /* Κεντράρισμα όλων των στοιχείων οριζόντια */
  text-align: center;
}

#serviceInside .section-btn:hover {
transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
background: #b72b4a;
border-color: #000000;
color: black;
}

#serviceInside .service-thumb {
display: inline-block;  /* Για να δουλέψουν σωστά τα paddings */
  margin-left: auto;
  margin-right: auto;
}

#serviceInside .fa {
  font-size: 50px;
  margin-bottom: 10px;
  background: #ffffff;
  color: #b72b4a;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 100%;
}

/* Animated styling for the word container; letters animate individually */
#serviceInside .front-word {
  display: inline-block;
  position: relative;
  font-weight: 700;
  /* keep text transparent to allow background-clip on letters */
  color: transparent;
  background: #b72b4a;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

  /* Individual letter style */
  #serviceInside .front-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    will-change: transform, opacity;
    animation-name: front-letter-in;
    animation-duration: 420ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.2,.9,.2,1);
  }

/* Stagger helper: each nth-child will start slightly later (we'll set inline style delays from JS) */
@keyframes front-letter-in {
  0% { opacity: 0; transform: translateY(10px) scale(0.95); }
  60% { opacity: 1; transform: translateY(-6px) scale(1.06); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Keep hover subtle */
#serviceInside .front-word:hover .front-letter { transform: translateY(0) scale(1.02); }


.serviceInside-container {
  position: relative;
  z-index: 2;
}

/* Stagger child elements inside about container for nicer entrance */
.serviceInside-container {
  opacity: 0;
  transform: translateY(12px);
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 520ms ease;
}
.serviceInside-container {
  opacity: 1;
  transform: translateY(0);
}


  /* small stagger using nth-child (adjust counts if your layout changes) */
  .serviceInside-container:nth-of-type(1) { transition-delay: 120ms; }
  .serviceInside-container:nth-of-type(2) { transition-delay: 220ms; }

.serviceInside-container .row{
  margin-top: 50px;
  padding-left: 10%;
  padding-right: 10%;
}

/* Service item icon sizing (used by serviceInside/index.ejs) */
.serviceInside-item .service-icon {
  display: block;
  width: 86px;
  height: 86px; 
  object-fit: contain;
  margin: 0 auto 10px auto; /* center above title */
}

#serviceInside .serviceInside-container {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}

#serviceInside .serviceInside-container .row {
  /* remove bootstrap negative margins inside our custom container */
  margin-left: 0;
  margin-right: 0;
}

#serviceInside .serviceInside-item {
  box-sizing: border-box;
  border-top: none;
}

@media (min-width: 768px) {
  #serviceInside .serviceInside-container { 
    padding-left: 48px; 
    padding-right: 48px;
  }

  #serviceInside .serviceInside-item { 
    padding-left: 18px; 
    padding-right: 18px; 
    padding-top: 0.1px;
    padding-bottom: 0.1px;
  }
}

@media (min-width: 1200px) {
  #serviceInside .serviceInside-container { 
    padding-left: 96px; 
    padding-right: 96px;
  }

}

/* serviceInside tile reveal animation */
#serviceInside .serviceInside-item {
  min-width: 358px; /* ορισμός μεγέθους πλαισίων serviceInside */
  min-height: 347px; /* ορισμός μεγέθους πλαισίων serviceInside */
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: transform 300ms cubic-bezier(.2,.9,.2,1), opacity 250ms ease-out;
}

#serviceInside .serviceInside-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ορισμός ανασηκώματος τετραγώνων (πλαισίων) hover*/
#serviceInside .serviceInside-item.is-visible:hover {
  transform: translateY(-36px) scale(1.01);
  transition: transform 260ms cubic-bezier(.2,.9,.2,1);
}

/* service-icon pop animation */
@keyframes service-icon-pop {
  0% { opacity: 0; transform: translateY(-8px) scale(0.7); }
  60% { opacity: 1; transform: translateY(0) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

#serviceInside .service-icon {
  display: block; /* already set, but ensure specificity */
  opacity: 0;
  transform: translateY(-8px) scale(0.9);
  pointer-events: auto; /* ensure the image can receive mouse events */
  position: relative;
  z-index: 3; /* bring above potential overlays inside the tile */
}

#serviceInside .serviceInside-item.is-visible .service-icon {
  animation-name: service-icon-pop;
  animation-duration: 350ms;
  animation-timing-function: cubic-bezier(.2,.9,.2,1);
  animation-fill-mode: forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Subtle hover scale on the icon itself */
#serviceInside .service-icon {
  /* ensure we have a smooth transform baseline for hover/focus */
  transition: transform 220ms cubic-bezier(.2,.9,.2,1);
  transform-origin: center center;
  will-change: transform, opacity;
}

/* Hover & keyboard focus: subtle scale + rotation (pleasant micro-interaction) */
#serviceInside .service-icon:hover,
#serviceInside .service-icon:focus {
  transform: scale(1.06) rotate(-18deg) !important;  /* ορισμός περιστροφής εικονιδίων */
  outline: none; /* visual focus handled separately if desired */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  #serviceInside .service-icon,
  #serviceInside .serviceInside-item {
    transition: none !important;
    animation: none !important;
  }
}

.serviceInside-item .button{
  display: inline-block;
  padding: 10px 20px;
  margin: 12px auto 0 auto; /* centered without fixed left margin */
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 160ms ease;
}
.serviceInside-item .button:hover{
  background-color: #ffffff; /*ορισμός χρώματων hover κουμπιών*/
  color: #000000;
  border: 3px solid #000000;
  transform: translateY(-2px);
}

#serviceInside.slider .caption {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-color: rgba(20,20,20,0.2);
  height: 100%;
  color: #fff;
}

#serviceInside.slider .item {
  background-position: inherit;
  background-repeat: no-repeat;
  background-attachment: local;
  background-size: cover;
  height: 450px;
}


@media (max-width: 640px) {
  #serviceInside.slider {
    margin: 0 0 0 0 !important;
  }

  #serviceInside h2 {
    color: #b72b4a;
    padding-bottom: 0 0 0 50px;
    margin-top: 150px;
    font-family: "Montserrat", Sans-serif;
    font-size: 30px;
    text-align: left;
    padding-left: 10%;
  }

  #serviceInside h1 {
    color: #ffffff;
    padding-bottom: 20px;
    margin-top: 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 32px;
    line-height: 40px;
    text-align: left;
    padding-left: 10%;
  }

  #serviceInside h3 {
    color: #a3a3a3;
    font-size: 2rem;
    padding-left: 18%;
  }

  #serviceInside h4 {
padding-left: 10%;
padding-right: 10%;
  font-size: 1.8rem;

}

  #serviceInside p {
    margin-left: 18% !important;
    margin-right: 12%;
    font-size: 1.3rem !important;
  }

  #serviceInside .text {
    padding-bottom: 15% !important;
  }

  .serviceInside-item img{
    width: 100%;
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
  }
  
  .serviceInside-item {
    min-width: 250px !important; /* ορισμός μεγέθους πλαισίων serviceInside */
    margin: 2% 0 25% 0 !important; /* ορισμός απόστασης εικόνων από επάνω για κινητό */
  }

  .serviceInside-container .row {
    margin-top: 23% !important;
    padding-top: 10% !important;
    padding-left: 10% !important;
    padding-right: 10% !important;
    display: flex;
    flex-direction: column;
  }

  #d2.websiteCategory h1 {
    font-weight: 600 !important;
    font-size: 1.5rem !important;
  }

}
 
/*---------------------------------------
    inside SERVICE - ΕΣΩΤΕΡΙΚΕΣ ΣΕΛΙΔΕΣ
-----------------------------------------*/

body#servicePagesMain {
  /* Εικόνα που καλύπτει όλη τη σελίδα, κεντράρισμα, χωρίς επανάληψη */
  background-image: url(../images/slider1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* cover ώστε να καλύπτει όλη την οθόνη */
  background-attachment: fixed; /* σταθερή στο παράθυρο (parallax-like) */
}

#servicePagesMain{
  justify-content: center; /* Αυτό τα φέρνει στη μέση οριζόντια */
}

#servicePagesMain-item{
  /*background-color: #000000;*/
  border-radius: 8px; 
  padding: 30px;
  text-align: flex; /* center inline content like icons and buttons */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  padding: 0;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}


#servicePagesMain-item img{
  width: 100%;
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

#servicePagesMain-item .section-btn {
  margin-bottom: 25px;
}

#servicePagesMain h1 {
  color: #707070;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 25%;
  line-height: 75px;
  text-align: center;
}

#servicePagesMain h2 {
  color: #666666;
  padding-bottom: 10px;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 55px;
  text-align: left;
  padding-left: 30%;
}

#servicePagesMain h3 {
  color: #ffffff;
  padding-bottom: 10px;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 5.5rem;
  text-align: left;
}

#servicePagesMain h4 {
  color: #b72b49;
  padding-top: 1%;
  margin-left: 25%;
  margin-right: 25%;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
}

#servicePagesMain p {
  color: #a5a5a5;
  align-items: center;
  padding-top: 10px;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: center;
}


#servicePagesMain ul {
  list-style: none; /* Αφαιρεί τις μαύρες βούλες του browser */
  color: #a5a5a5;
  align-items: center;
  margin-left: 18%;
  margin-right: 18%;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
}

#servicePagesMain li {
  position: relative;
  padding-left: 25px; /* Χώρος για να χωρέσει η κόκκινη βούλα */
  margin-bottom: 10px; /* Απόσταση μεταξύ των στοιχείων */
}

/* Δημιουργία της κόκκινης βούλας */
#servicePagesMain li::before {
  content: "\2022";    /* Ο κωδικός για τη βούλα (bullet) */
  color: #b72b4a;      /* Το κόκκινο χρώμα που χρησιμοποιείς */
  font-weight: bold;   /* Να φαίνεται έντονη */
  display: inline-block; 
  width: 1em;          /* Σταθερό πλάτος */
  margin-left: -1em;   /* Την επαναφέρει αριστερά μέσα στο padding */
  font-size: 1.8rem;   /* Λίγο μεγαλύτερη από το κείμενο για στυλ */
  vertical-align: middle;
  line-height: 1;
}

#servicePagesMain .section-btn {
  background: #000000;
  border: 3px solid #b72b49;
  border-radius: 0.5px;
  color: #ffffff;
  font-size: inherit;
  font-weight: 300;
  padding: 12px 50px;
  transition: transform 0.1s ease-in;
  transform: translateX(0);
  margin-top: 20px;
}

#servicePagesMain .section-btn:hover {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}

#servicePagesMain .service-thumb {
  padding: 0 22px;
}

#servicePagesMain .fa {
  font-size: 50px;
  margin-bottom: 10px;
  background: #ffffff;
  color: #b72b4a;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 100%;
}

/* Animated styling for the word container; letters animate individually */
#servicePagesMain .front-word {
  display: inline-block;
  position: relative;
  font-weight: 700;
  /* keep text transparent to allow background-clip on letters */
  color: transparent;
  background: #b72b4a;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

  /* Individual letter style */
  #servicePagesMain .front-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    will-change: transform, opacity;
    animation-name: front-letter-in;
    animation-duration: 420ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.2,.9,.2,1);
  }


  /* Keep hover subtle */
#servicePagesMain .front-word:hover .front-letter { transform: translateY(0) scale(1.02); }


.serviceInside-container {
  position: relative;
  z-index: 2;
}

.serviceInside-container {
  opacity: 1;
  transform: translateY(0);
}


#servicePagesMain .serviceInside-container {
  box-sizing: border-box;
  padding-left: 7%;
  padding-right: 7%;
}


@media (max-width: 640px) {
  #servicePagesMain ul {
    margin-left: 0 !important;
    margin-right: 10% !important;
  }
  #servicePagesMain p {
    margin-left: 5% !important;
    margin-right: 5% !important;
  }
}




/*---------------------------------------
    AI-SOLUTIONS             
-----------------------------------------*/
#servicePagesMain .aiSolutions h4{
  font-size: 3.5rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 5% !important;
}

.aiSolutions p{
  margin-left: 17% !important;
  margin-right: 17% !important;
  margin-bottom: 2% !important;
  color: #a1a1a1 !important;
  font-size: 1.6rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}
.aiSolutions img{
  width: 100%;
  height: auto;
  min-height: 600px;

}

#servicePagesMain .aiSolutions p{
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#servicePagesMain .aiSolutions ul{
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#servicePagesMain .aiSolutionsP p{
  margin-left: 5% !important;
}
#servicePagesMain .aiSolutionsP h4{
  margin-left: 5% !important;
  margin-top: 0 !important;
  font-size: 2.5rem !important;
}
#servicePagesMain .aiSolutionsP h5{
  color: #ffffff !important;
  margin-left: 5% !important;
  margin-top: 0 !important;
  font-size: 1.8rem !important;
  font-weight: 200 !important;
}

/*---------------------------------------
    END AI-SOLUTIONS             
-----------------------------------------*/





/*---------------------------------------
    WEBSITE PAGES             
-----------------------------------------*/
.websiteCategory{
  background: #fcfcfc0a;
  background: rgba(252, 252, 252, 0.04);
  border-radius: 3px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px; 
  height: 100%; /* Εξασφαλίζει ότι το πλαίσιο θα πιάνει όλο το ύψος της στήλης */
}

/* Service item icon */
.websiteCategory .service-icon {
  display: block;
  width: 156px;
  height: 156px; 
  object-fit: contain;
  margin: 0 auto 1px auto;
}

.websiteCategory {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  border-top: 20px solid #ffffff50; /* ορισμός border πλαισίων */
}

.websiteCategory h1{
  color: #b72b4a !important;
  font-size: 3.8rem !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  letter-spacing: 1% !important;
}
#d1.websiteCategory h1{
  font-weight: 200 !important;
  
}
#d2.websiteCategory h1{
  font-weight: 600 !important;
}
#d3.websiteCategory h1{
  font-weight: 800 !important;
}

.websiteCategory h2{
  color: #ffffff !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}

.websiteCategory-item{
  background-color: #ffffff0c;
  height: 100%; /* Επιτρέπει και στα portfolio items να έχουν ίδιο ύψος */
  padding-bottom: 2%;
}

.cta-section {
  clear: both;
  position: relative;
  z-index: 2;
}

.websiteCategory-item h4{
  color: #a1a1a1 !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}
.websiteCategory-button{
  margin-left: 25%;
  margin-right: 25%;
    padding-top: 2% !important;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.websiteCategory-button .section-btn {
  display: inline-block;
  padding: 1% 5%;
  margin-left: 2%;
}


.websiteCategory-button .text{
  color: #ffffff;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 2.5rem !important;
  font-size: 2.2rem !important;
  line-height: 1.6;
}



.websiteCategory-button .section-btn .fa-angle-right:hover  {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}
/* Όταν το ποντίκι είναι πάνω στο κουμπί, άλλαξε το χρώμα του εικονιδίου */
.websiteCategory-button .section-btn:hover .fa-phone .fa-angle-right{
  color: #000000;
}

.websiteCategory-button .fa{
  padding-left: 0 !important;
  padding-right: 0 !important;
}


.websiteCategory p{
  color: #a5a5a5 !important;
  font-size: 1.4rem !important;
  margin-left: 0% !important;
  margin-right: 0% !important;
  padding-left: 0% !important;
  padding-right: 0% !important;
  text-align: center  !important;
}

.websiteCategory-item .text{
  padding-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
  color: #eee;

}

.websiteCategory-item img{
  width: 100%;
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}


@media (max-width: 640px) {
  
  .websiteCategory-item img{
    margin-top: 5% !important;
    width: 100%;
    height: 150px;
  }
  .websiteCategory-button{
    margin-top: 5% !important;
    margin-left: 15%;
    margin-right: 15%;
  }

  .websiteCategory-button .text {
    font-size: 1.5rem !important;

  }

  #servicePagesMain .websiteCategory p{
    margin-left: 1% !important;
    margin-right: 1% !important;
    font-size: 1.2rem !important;
  }
  #servicePagesMain .item h4{
    margin-left: 17% !important;
    margin-right: 16% !important;
  }

  #d1.websiteCategory h1{
    font-size: 3rem !important;
    margin-top: -10% !important;
  }
  #d2.websiteCategory h1{
    font-size: 3rem !important;
    margin-top: -10% !important;
  }
  #d3.websiteCategory h1{
    font-size: 3rem !important;
    margin-top: -10% !important;
  }
}

/*---------------------------------------
    END WEBSITE PAGES             
-----------------------------------------*/





/*---------------------------------------
    BRANDING-LOGO PAGES PAGES             
-----------------------------------------*/
.logoCategory{
  border-radius: 3px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px; 
  height: 100%; /* Εξασφαλίζει ότι το πλαίσιο θα πιάνει όλο το ύψος της στήλης */
}

/* Service item icon */
.logoCategory .service-icon {
  display: block;
  width: 156px;
  height: 156px; 
  object-fit: contain;
  margin: 0 auto 1px auto;
}

.logoCategory {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  border-top: 20px solid #ffffff50; /* ορισμός border πλαισίων */
}

.logoCategory h1{
  color: #b72b4a !important;
  font-size: 3.8rem !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  letter-spacing: 1% !important;
}
#d1.logoCategory h1{
  font-weight: 200 !important;
}
#d2.logoCategory h1{
  font-weight: 600 !important;
}
#d3.logoCategory h1{
  font-weight: 800 !important;
}

.logoCategory h2{
  color: #ffffff !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}

.logoCategory-item{
  height: 100%; /* Επιτρέπει και στα portfolio items να έχουν ίδιο ύψος */
  padding-bottom: 2%;
}


.cta-section {
  clear: both;
  position: relative;
  z-index: 2;
}

.logoCategory-item h4{
  color: #a1a1a1 !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}
.logoCategory-button{
  margin-left: 25%;
  margin-right: 25%;
    padding-top: 2% !important;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.logoCategory-button .section-btn {
  display: inline-block;
  padding: 1% 5%;
  margin-left: 2%;
}


.logoCategory-button .text{
  color: #ffffff;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 2.5rem !important;
  font-size: 2.2rem !important;
  line-height: 1.6;
}


.logoCategory-button .section-btn .fa-angle-right:hover  {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}
/* Όταν το ποντίκι είναι πάνω στο κουμπί, άλλαξε το χρώμα του εικονιδίου */
.logoCategory-button .section-btn:hover .fa-phone .fa-angle-right{
  color: #000000;
}

.logoCategory-button .fa{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.logoCategory p{
  color: #a5a5a5 !important;
  font-size: 1.4rem !important;
  margin-left: 0% !important;
  margin-right: 0% !important;
  padding-left: 0% !important;
  padding-right: 0% !important;
  text-align: center  !important;
}

.logoCategory-item .text{
  padding-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
  color: #eee;

}

.logoCategory-item img{
  width: 100%;
  object-fit: cover;
  display: block;
}




/* --- PORTOFOLIO STORY - COMPLETED PIPELINE VERSION --- */

/* 1. Το κεντρικό Section */
#portfolio-story {
    position: relative;
    padding: 100px 0;
    overflow: hidden; 
    background: transparent;
}


/* 2. Η Κεντρική Κάθετη Γραμμή */
#portfolio-story::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px; 
    background: #b72b4a; 
    transform: translateX(-50%);
    z-index: 1;
}

/* 3. Το Πλαίσιο της Εικόνας */
.project-img {
    position: relative;
    border: 10px solid #b72b4a; 
    padding: 0; 
    z-index: 5;
    background: #1a1a1a;
    box-shadow: 0 0 20px rgba(183, 43, 74, 0.3);
}



/* Σύνδεση για το 1ο project */
.project-row:not(.reverse) .project-img::before {
    bottom: -3px; /* Ευθυγράμμιση με το κάτω border */
    left: 100%; 
    max-width: calc(50vw - 50%); /* Σταματάει στο κέντρο */
}

/* Σύνδεση για το 2ο project */
.project-row.reverse .project-img::before {
    top: -3px; /* Ευθυγράμμιση με το πάνω border */
    right: 100%;
    max-width: calc(50vw - 50%);
}

/* 6. Ρυθμίσεις Row & Layout */
.project-row {
    margin-bottom: 180px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Εφέ στην εικόνα */
.project-img img {
    width: 100%;
    height: auto;
    border-radius: 0; /* Το border το έχει το div, όχι η img */
    transition: transform 0.5s ease;
}

.project-img:hover {
    transform: scale(1.01);
    transition: 0.5s;
}

/* Αρίθμηση και Τίτλοι */
.project-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(183, 43, 74, 0.2); 
    margin-bottom: -20px;
}

.project-info h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.project-info p {
    color: #a5a5a5;
    line-height: 1.8;
}

/* Tags */
.project-tags {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.project-tags li {
    display: inline-block;
    border: 1px solid #b72b4a;
    color: #b72b4a;
    padding: 5px 15px;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Responsive: Κρύβουμε τις γραμμές στα κινητά για να μην χαλάει το layout */
@media (max-width: 991px) {
    #portfolio-story::before, 
    .project-img::after, 
    .project-img::before {
        display: none !important;
    }
    .project-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
  #portfolio-story p{
  font-size: 1.1rem;
  }
  .project-row{
  margin-bottom: 20% !important;
   flex-direction: column !important;
  }
}

/*---------------------------------------
    END BRANDING-LOGO PAGES             
-----------------------------------------*/





/*---------------------------------------
    HOSTING PAGES             
-----------------------------------------*/

.hostingCategory{
  background: #b72b4938;
  border-radius: 3px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 150px; 
  height: 100%; /* Εξασφαλίζει ότι το πλαίσιο θα πιάνει όλο το ύψος της στήλης */
}

/* Service item icon */
.hostingCategory .service-icon {
  display: block;
  width: 156px;
  height: 156px; 
  object-fit: contain;
  margin: 0 auto 1px auto;
}

.hostingCategory {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  border-top: 20px solid #ffffff44; /* ορισμός border πλαισίων */
}

.hostingCategory h1{
  color: #b72b4a !important;
  font-size: 3rem !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  letter-spacing: 1% !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* Αφαιρεί το padding από τις στήλες ΜΟΝΟ μέσα σε αυτό το row */
.no-gutters-custom > [class*='col-'] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Αφαιρεί τα αρνητικά margins του row για να μην "εξέχει" */
.no-gutters-custom {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex; /* Βοηθάει στο να έχουν το ίδιο ύψος αν χρειαστεί */
  flex-wrap: wrap;
}

.hostingCategory h2{
  color: #ffffff !important;  
  font-size: 5.5rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 600 !important;
  margin-top: -30px !important;
  margin-bottom: 0 !important;
}

#servicePagesMain .hostingCategory h2{
  margin-top: -30px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#servicePagesMain .hostingCategory h5{
  color: #b72b4a !important;  
  margin-top: -2% !important;
  margin-bottom: 5% !important;
  padding-bottom: 0 !important;
}


.hostingCategory p{
  color: #a5a5a5 !important;
  font-size: 1.5rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: left  !important;
  font-weight: 200 !important;
}

.hostingCategory .hostingCategoryP p{
  margin-top: 60px !important;
  margin-left: 1% !important;
  margin-right: 1% !important;
}

.hostingCategory ul {
  list-style: none; /* Αφαιρεί τις μαύρες βούλες του browser */
  color: #a5a5a5;
  align-items: center;
  margin-left: -20px !important;
  margin-right: 3px !important;
  margin-bottom: 50px !important;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
}

.hostingCategory li {
  position: relative;
  padding-left: 0 !important; /* Χώρος για να χωρέσει η κόκκινη βούλα */
  margin-bottom: 10px; /* Απόσταση μεταξύ των στοιχείων */
}

/* Δημιουργία της κόκκινης βούλας */
.hostingCategory li::before {
  content: "\2022";    /* Ο κωδικός για τη βούλα (bullet) */
  color: #b72b4a;      /* Το κόκκινο χρώμα που χρησιμοποιείς */
  font-weight: bold;   /* Να φαίνεται έντονη */
  display: inline-block; 
  width: 1em;          /* Σταθερό πλάτος */
  margin-left: -1em;   /* Την επαναφέρει αριστερά μέσα στο padding */
  font-size: 1.8rem;   /* Λίγο μεγαλύτερη από το κείμενο για στυλ */
  vertical-align: middle;
  line-height: 1;
}

.hostingCategory-item{
  background-color: #ffffff2c;
  height: 100%; /* Επιτρέπει και στα portfolio items να έχουν ίδιο ύψος */
  padding-bottom: 2%;
}

.cta-section2 {
  padding-top: 20px !important;
  padding-bottom: 50px !important;
  clear: both;
  position: relative;
  z-index: 2;
}

.hostingCategory-item h4{
  color: #a1a1a1 !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}
.hostingCategory-button{
  margin-left: 25%;
  margin-right: 25%;
    padding-top: 2% !important;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hostingCategory-button .section-btn {
  display: inline-block;
  padding: 1% 5%;
  margin-left: 2%;
}

.hostingCategory .section-btn{
  margin-top: -20px !important;
  margin-bottom: 20px !important;
}


.hostingCategory-button .text{
  color: #ffffff;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 2.5rem !important;
  font-size: 2.2rem !important;
  line-height: 1.6;
}


.hostingCategory-button .section-btn .fa-angle-right:hover  {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}
/* Όταν το ποντίκι είναι πάνω στο κουμπί, άλλαξε το χρώμα του εικονιδίου */
.hostingCategory-button .section-btn:hover .fa-phone .fa-angle-right{
  color: #000000;
}

.hostingCategory-button .fa{
  padding-left: 0 !important;
  padding-right: 0 !important;
}


@media (max-width: 640px) {
  .hostingCategory h2{
    padding-top: 0 !important;
    font-size: 4rem !important;
    text-align: center  !important;
    font-weight: 600 !important;
  }

  .hostingCategory h1{
    font-size: 2rem !important;
  }

  .hostingCategory h5{
    margin-bottom: 15% !important;
    padding-bottom: 22% !important;
  }

  #servicePagesMain .section-btn {
    margin-top: 5% !important;
  }
}

  /*---------------------------------------
      END HOSTING PAGES             
  -----------------------------------------*/




  
  /*---------------------------------------
      SOCIAL PAGES             
  -----------------------------------------*/

.socialCategory{
  border-radius: 3px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 150px; 
  height: 100%; /* Εξασφαλίζει ότι το πλαίσιο θα πιάνει όλο το ύψος της στήλης */
}

/* Service item icon */
.socialCategory .service-icon {
  display: block;
  width: 156px;
  height: 156px; 
  object-fit: contain;
  margin: 0 auto 1px auto;
}

.socialCategory {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.socialCategory h1{
  color: #b72b4a !important;
  font-size: 3rem !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  letter-spacing: 1% !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* Αφαιρεί το padding από τις στήλες ΜΟΝΟ μέσα σε αυτό το row */
.no-gutters-custom > [class*='col-'] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Αφαιρεί τα αρνητικά margins του row για να μην "εξέχει" */
.no-gutters-custom {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex; /* Βοηθάει στο να έχουν το ίδιο ύψος αν χρειαστεί */
  flex-wrap: wrap;
}

.socialCategory p{
  color: #a5a5a5 !important;
  font-size: 1.5rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: left  !important;
  font-weight: 200 !important;
}

.socialCategory .socialCategoryP p{
  margin-left: 1% !important;
  margin-right: 1% !important;
}

.socialCategoryP{
  margin-bottom: 2% !important;
}

.socialCategory ul {
  list-style: none; /* Αφαιρεί τις μαύρες βούλες του browser */
  color: #a5a5a5;
  align-items: center;
  margin-left: -20px !important;
  margin-right: 3px !important;
  margin-bottom: 50px !important;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
}

.socialCategory li {
  position: relative;
  padding-left: 0 !important; /* Χώρος για να χωρέσει η κόκκινη βούλα */
  margin-bottom: 10px; /* Απόσταση μεταξύ των στοιχείων */
}

/* Δημιουργία της κόκκινης βούλας */
.socialCategory li::before {
  content: "\2022";    /* Ο κωδικός για τη βούλα (bullet) */
  color: #b72b4a;      /* Το κόκκινο χρώμα που χρησιμοποιείς */
  font-weight: bold;   /* Να φαίνεται έντονη */
  display: inline-block; 
  width: 1em;          /* Σταθερό πλάτος */
  margin-left: -1em;   /* Την επαναφέρει αριστερά μέσα στο padding */
  font-size: 1.8rem;   /* Λίγο μεγαλύτερη από το κείμενο για στυλ */
  vertical-align: middle;
  line-height: 1;
}

.socialCategory-item{
  background-color: #ffffff2c;
  height: 100%; /* Επιτρέπει και στα portfolio items να έχουν ίδιο ύψος */
  padding-bottom: 2%;
}

.cta-section2 {
  padding-top: 20px !important;
  padding-bottom: 50px !important;
  clear: both;
  position: relative;
  z-index: 2;
}

.socialCategory-item h4{
  color: #a1a1a1 !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}
.socialCategory-button{
  margin-left: 25%;
  margin-right: 25%;
    padding-top: 2% !important;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.socialCategory-button .section-btn {
  display: inline-block;
  padding: 1% 5%;
  margin-left: 2%;
}

.socialCategory .section-btn{
  margin-top: -20px !important;
  margin-bottom: 20px !important;
}


.socialCategory-button .text{
  color: #ffffff;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 2.5rem !important;
  font-size: 2.2rem !important;
  line-height: 1.6;
}


.socialCategory-button .section-btn .fa-angle-right:hover  {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}
/* Όταν το ποντίκι είναι πάνω στο κουμπί, άλλαξε το χρώμα του εικονιδίου */
.socialCategory-button .section-btn:hover .fa-phone .fa-angle-right{
  color: #000000;
}

.socialCategory-button .fa{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 640px) {
  .socialCategory  {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 2% !important;
    font-size: 1.5rem;
  }

  #servicePagesMain  .socialCategory  p{
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 2% !important;
  }

  .websiteCategory-button .text .socialCategoryP{
    color: #ffffff;
    font-family: "Montserrat", Sans-serif !important;
    font-size: 2.5rem !important;
    padding-bottom: 5% !important;
  }
}

  /*---------------------------------------
      END SOCIAL PAGES              
  -----------------------------------------*/



  

/*---------------------------------------
    PRINTING PAGES             
-----------------------------------------*/
.printingCategory{
  background: #fcfcfc0a;
  background: rgba(252, 252, 252, 0.04);
  border-radius: 3px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 320px; 
  height: 100%; /* Εξασφαλίζει ότι το πλαίσιο θα πιάνει όλο το ύψος της στήλης */
}

/* Service item icon */
.printingCategory .service-icon {
  display: block;
  width: 156px;
  height: 156px; 
  object-fit: contain;
  margin: 0 auto 1px auto;
}

.printingCategory {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  border-top: 20px solid #ffffff50; /* ορισμός border πλαισίων */
}

.printingCategory h1{
  color: #b72b4a !important;
  font-size: 3.8rem !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  letter-spacing: 1% !important;
}
#d1.printingCategory h1{
  font-weight: 200 !important;
  
}
#d2.printingCategory h1{
  font-weight: 600 !important;
}
#d3.printingCategory h1{
  font-weight: 800 !important;
}

.printingCategory h2{
  color: #ffffff !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}

.printingCategory-item{
  height: 100%; /* Επιτρέπει και στα portfolio items να έχουν ίδιο ύψος */
  padding-bottom: 0;
}



.printingCategory-item h4{
  color: #a1a1a1 !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}
.printingCategory-button{
  margin-left: 25%;
  margin-right: 25%;
    padding-top: 2% !important;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.printingCategory-button .section-btn {
  display: inline-block;
  padding: 1% 5%;
  margin-left: 2%;
}


.printingCategory-button .text{
  color: #ffffff;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 2.5rem !important;
  font-size: 2.2rem !important;
  line-height: 1.6;
}



.printingCategory-button .section-btn .fa-angle-right:hover  {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}
/* Όταν το ποντίκι είναι πάνω στο κουμπί, άλλαξε το χρώμα του εικονιδίου */
.printingCategory-button .section-btn:hover .fa-phone .fa-angle-right{
  color: #000000;
}

.printingCategory-button .fa{
  padding-left: 0 !important;
  padding-right: 0 !important;
}


.printingCategory p{
  color: #a5a5a5 !important;
  font-size: 1.4rem !important;
  margin-left: 0% !important;
  margin-right: 0% !important;
  padding-left: 0% !important;
  padding-right: 0% !important;
  text-align: center  !important;
}

.printingCategory-item .text{
  padding-top: 5%;
  padding-bottom: 0 !important;
  padding-left: 5%;
  padding-right: 5%;
  text-align: center  !important;
  color: #b72b4a;

}

.printingCategory-item img{
  width: 100%;
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}


@media (max-width: 640px) {
  
  .printingCategory-item img{
    margin-top: 5% !important;
    width: 100%;
    height: 150px;
  }
  .printingCategory-button{
    margin-top: 5% !important;
    margin-left: 15%;
    margin-right: 15%;
  }

  .printingCategory-button .text {
    font-size: 1.5rem !important;

  }

  #servicePagesMain .printingCategory p{
    margin-left: 1% !important;
    margin-right: 1% !important;
    font-size: 1.2rem !important;
  }
  #servicePagesMain .item h4{
    margin-left: 17% !important;
    margin-right: 16% !important;
  }

  #d1.printingCategory h1{
    font-size: 3rem !important;
    margin-top: -10% !important;
  }
  #d2.printingCategory h1{
    font-size: 3rem !important;
    margin-top: -10% !important;
  }
  #d3.printingCategory h1{
    font-size: 3rem !important;
    margin-top: -10% !important;
  }
}

/*---------------------------------------
    END PRINTING PAGES             
-----------------------------------------*/






/*---------------------------------------
    ADVERTISING STRACTURE PAGES TIMELINE         
-----------------------------------------*/

#advStructPagesMain{
  justify-content: center; /* Αυτό τα φέρνει στη μέση οριζόντια */
}

#advStructPagesMain-item{
  /*background-color: #000000;*/
  border-radius: 8px; 
  padding: 30px;
  text-align: flex; /* center inline content like icons and buttons */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  padding: 0;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}


#advStructPagesMain-item img{
  width: 100%;
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

#advStructPagesMain-item .section-btn {
  margin-bottom: 25px;
}

#advStructPagesMain h1 {
  color: #707070;
  font-family: "Montserrat", Sans-serif;
  font-size: 20px;
  font-weight: 100;
  letter-spacing: 25%;
  line-height: 75px;
  text-align: center;
}

#advStructPagesMain h2 {
  color: #b72b49;
  padding-bottom: 10px;
  margin-top: 3%;
  margin-bottom: 0 !important;
  font-family: "Montserrat", Sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;

}

#advStructPagesMain h3 {
  color: #b72b49;
  padding-bottom: 10px;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
  font-weight: 300;
  
}

#advStructPagesMain h4 {
  color: #b72b49;
  padding-top: 1%;
  margin-left: 25%;
  margin-right: 25%;
  margin-top: 0;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
}

#advStructPagesMain p {
  color: #a5a5a5;
  align-items: center;
  margin-left: 25%;
  padding-top: 10px;
  margin-right: 25%;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
}


#advStructPagesMain ul {
  list-style: none; /* Αφαιρεί τις μαύρες βούλες του browser */
  color: #a5a5a5;
  align-items: center;
  margin-left: 22.5%;
  margin-right: 25%;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
}

#advStructPagesMain li {
  position: relative;
  padding-left: 25px; /* Χώρος για να χωρέσει η κόκκινη βούλα */
  margin-bottom: 10px; /* Απόσταση μεταξύ των στοιχείων */
}

.advStructCategory-item{
  height: 100%; /* Επιτρέπει και στα portfolio items να έχουν ίδιο ύψος */
  padding-bottom: 0;
}

.advStructCategory-item .text{
  padding-top: 5%;
  padding-bottom: 0 !important;
  padding-left: 1%;
  padding-right: 1%;
  text-align: center  !important;
  color: #b72b4a;

}

.advStructCategory-item img{
  width: 100%;
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Δημιουργία της κόκκινης βούλας */
#advStructPagesMain li::before {
  content: "\2022";    /* Ο κωδικός για τη βούλα (bullet) */
  color: #b72b49;      /* Το κόκκινο χρώμα που χρησιμοποιείς */
  font-weight: bold;   /* Να φαίνεται έντονη */
  display: inline-block; 
  width: 1em;          /* Σταθερό πλάτος */
  margin-left: -1em;   /* Την επαναφέρει αριστερά μέσα στο padding */
  font-size: 1.8rem;   /* Λίγο μεγαλύτερη από το κείμενο για στυλ */
  vertical-align: middle;
  line-height: 1;
}

#advStructPagesMain .section-btn {
background: #000000;
border: 3px solid #b72b49;
border-radius: 0.5px;
color: #ffffff;
font-size: inherit;
font-weight: 300;
padding: 12px 50px;
transition: transform 0.1s ease-in;
transform: translateX(0);
margin-top: 20px;
}

#advStructPagesMain .section-btn:hover {
transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
background: #b72b49;
border-color: #000000;
color: black;
}

#advStructPagesMain .service-thumb {
  padding: 0 22px;
}

#advStructPagesMain .fa {
background: transparent; /* Αφαίρεση του γκρι background */
    width: auto;
    height: auto;
    line-height: normal;
    margin: 0;
    font-size: 14px; /* Μικρό μέγεθος για να χωράει στον κύκλο */
    color: white;    /* Λευκό εικονίδιο πάνω σε κόκκινο κύκλο */
}

/* Animated styling for the word container; letters animate individually */
#advStructPagesMain .front-word {
  display: inline-block;
  position: relative;
  font-weight: 700;
  /* keep text transparent to allow background-clip on letters */
  color: transparent;
  background: #b72b49;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

  /* Individual letter style */
  #advStructPagesMain .front-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    will-change: transform, opacity;
    animation-name: front-letter-in;
    animation-duration: 420ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.2,.9,.2,1);
  }


  /* Keep hover subtle */
#advStructPagesMain .front-word:hover .front-letter { transform: translateY(0) scale(1.02); }



#advStructPagesMain .serviceInside-container {
  box-sizing: border-box;
  padding-left: 7%;
  padding-right: 7%;
}


@media (max-width: 640px) {
  #advStructPagesMain ul {
    margin-left: 5% !important;
    margin-right: 15% !important;
  }
  #advStructPagesMain p {
    margin-left: 17% !important;
    margin-right: 15% !important;
  }
}


.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  padding-left: 50px; /* Χώρος για τη γραμμή αριστερά */
}

/* Η σταθερή γκρι γραμμή */
.timeline-line {
    position: absolute;
    left: 25px; /* Ευθυγράμμιση με το κέντρο των κύκλων */
    top: 40px; /* Ξεκινάει 17px (το μισό ενός κύκλου 35px) από την κορυφή του 1ου item */
    bottom: 70px;  /* Σταματάει 17px πριν το τέλος του τελευταίου item */
    width: 2px;
    background: #444;
    z-index: 1;
}

/* Η κόκκινη γραμμή που θα μεγαλώνει */
.timeline-line-progress {
  position: absolute;
  left: 25px;
  top: 40px;
  width: 2px;
  height: 0%; /* Ξεκινάει από 0 */
  background: #b72b4a; /* Το κόκκινο της Winux */
  z-index: 2;
  transition: height 0.1s ease-out;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
  align-items: center;
  position: relative;
}

.timeline-content p {
color: #a5a5a5;
  margin: 2px 0 0 0 !important; /* Μηδενισμός των πλαϊνών margins */
  padding: 0 !important;
  font-size: 1.4rem !important;
  line-height: 1.6;
}

/* Το κυκλικό εικονίδιο */
.timeline-icon {
  position: absolute;
  left: -40px;
  top: 35%; /* καθορισμός ύψος κύκλου timeline */
  width: 30px;
  height: 30px;
  background: #a5a5a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
}

/* Η κλάση που θα προσθέτει η JS όταν ο κύκλος "ενεργοποιείται" */
.timeline-icon.active {
    background: #b72b4a; /* Γίνεται κόκκινο */
}

/* Ευθυγράμμιση εικονιδίων Font Awesome */
.timeline-icon i {
    font-size: 14px;
    line-height: 30px; /* Ίσο με το height του .timeline-icon */
    margin: 0;
    background: none; /* Αφαίρεση του γκρι background που έχεις ορίσει γενικά στα .fa */
    width: auto;
    height: auto;
}

/* Το σκούρο πλαίσιο κειμένου */
.timeline-content {
    background: #7a7a7a1f; /* Σκούρο γκρι/μαύρο background */
    padding: 20px;
    border-radius: 4px;
    position: relative;
}

/* Το τριγωνάκι (arrow) που δείχνει προς το εικονίδιο */
.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%; /* Κι αυτό στη μέση */
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #1a1a1a;
}

.timeline-content h3 {
    color: #b72b49;
    margin-top: 0;
}

/* Hover εφέ για αλληλεπίδραση */
.timeline-item:hover .timeline-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
    background: #b72b4a; /* Το δικό σου κόκκινο */
}


/*---------------------------------------
    END ADVERTISING STRACTURE PAGES TIMELINE         
-----------------------------------------*/




/*---------------------------------------
    KIOSK PAGES (FLIP EFFECT)        
-----------------------------------------*/

#kiosk {
    margin-left: 7% !important;
    margin-right: 7% !important;
    perspective: 1000px; /* Απαραίτητο για το 3D εφέ */
}

.kiosk-item {
    background-color: transparent;
    width: 100%;
    height: 400px;
    margin: 20px auto;
    cursor: pointer;
}

/* Το container που κάνει το rotation */
.kiosk-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Hoover: Αναποδογύρισμα */
.kiosk-item:hover .kiosk-inner {
    transform: rotateY(180deg);
}

.kiosk-front, .kiosk-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Για Safari */
    backface-visibility: hidden;
    border-radius: 4px;
    overflow: hidden;
}

/* Μπροστινή όψη */
.kiosk-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Πίσω όψη */
.kiosk-back {
    background-color: #b72b49; /* Το γκρι χρώμα από την εικόνα σου */
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.kiosk-back h3 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: inherit;
    font-weight: 600;
}

.kiosk-back p {
  color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Custom πλέγμα για 5 στήλες σε Desktop */
@media (min-width: 992px) {
    .col-five {
        width: 20%;
        float: left;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Αν το Bootstrap σου είναι έκδοση 4+, πρόσθεσε και αυτά: */
    .col-five {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Responsive διορθώσεις */
@media (max-width: 768px) {
    .kiosk-item {
        width: 100%;
        max-width: 300px;
    }
}

/*---------------------------------------
    END KIOSK PAGES         
-----------------------------------------*/






/*---------------------------------------
    photography PAGES (FLIP EFFECT)        
-----------------------------------------*/

#photography {
    margin-left: 7% !important;
    margin-right: 7% !important;
    perspective: 1000px; /* Απαραίτητο για το 3D εφέ */
}

.photography-item {
    background-color: transparent;
    width: 100%;
    height: 400px;
    margin: 20px auto;
    cursor: pointer;
}

/* Το container που κάνει το rotation */
.photography-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Hoover: Αναποδογύρισμα */
.photography-item:hover .photography-inner {
    transform: rotateY(180deg);
}

.photography-front, .photography-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Για Safari */
    backface-visibility: hidden;
    border-radius: 4px;
    overflow: hidden;
}

/* Μπροστινή όψη */
.photography-front  {
  background-color: #b72b49;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Μπροστινή όψη */
.photography-front img {
    width: 100%;
    height: 100%; 
    padding: 35% 35% 35% 35% ;
    object-fit: cover;
}

/* Πίσω όψη */
.photography-back {
    background-color: #4e4e4e; /* Το γκρι χρώμα από την εικόνα σου */
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.photography-back h3 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: inherit;
    font-weight: 600;
}

.photography-back p {
  color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Custom πλέγμα για 5 στήλες σε Desktop */
@media (min-width: 992px) {
    .col-five {
        width: 20%;
        float: left;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Αν το Bootstrap σου είναι έκδοση 4+, πρόσθεσε και αυτά: */
    .col-five {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Responsive διορθώσεις */
@media (max-width: 768px) {
    .photography-item {
        width: 100%;
        max-width: 300px;
    }
}


/*---------------------------------------
    END photography PAGES         
-----------------------------------------*/



/*--------------------------------
      TOOLS PAGES 
----------------------------------*/

.tools-container {
  position: relative;
  z-index: 2;
}
.tools-container h4{
text-align: center !important;
font-size: 2.8rem !important;
margin-top: 1% !important;
}

/* Stagger child elements inside about container for nicer entrance */
.tools-container {
  opacity: 0;
  transform: translateY(12px);
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), opacity 520ms ease;
}
.tools-container {
  opacity: 1;
  transform: translateY(0);
}


/* small stagger using nth-child (adjust counts if your layout changes) */
.tools-container:nth-of-type(1) { transition-delay: 120ms; }
.tools-container:nth-of-type(2) { transition-delay: 220ms; }

.tools-container .row{
  margin-top: 50px;
  padding-left: 10%;
  padding-right: 10%;
}


.tools-container .img-responsive{
  max-width: 750px;
  height: auto;
  padding-left: 5% !important;
  padding-right: 5% !important;
  padding-bottom: 10% !important;
}

.toolsCategory{
  border-radius: 3px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 150px; 
  height: 100%; /* Εξασφαλίζει ότι το πλαίσιο θα πιάνει όλο το ύψος της στήλης */
}

/* Service item icon */
.toolsCategory .service-icon {
  display: block;
  width: 156px;
  height: 156px; 
  object-fit: contain;
  margin: 0 auto 1px auto;
}

.toolsCategory {
  padding-left: 0 !important;
  padding-right: 40% !important;
  box-sizing: border-box;
}

.toolsCategory h1{
  color: #b72b4a !important;
  font-size: 3rem !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  letter-spacing: 1% !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* Αφαιρεί το padding από τις στήλες ΜΟΝΟ μέσα σε αυτό το row */
.no-gutters-custom > [class*='col-'] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Αφαιρεί τα αρνητικά margins του row για να μην "εξέχει" */
.no-gutters-custom {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex; /* Βοηθάει στο να έχουν το ίδιο ύψος αν χρειαστεί */
  flex-wrap: wrap;
}

.toolsCategory p{
  color: #a5a5a5 !important;
  font-size: 1.5rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: left  !important;
  font-weight: 200 !important;
}

.toolsCategory .toolsCategoryP p{
  margin-left: -10% !important;
  margin-right: 1% !important;
  margin-bottom: 2% !important;
  margin-top: 5% !important;
}


.toolsCategory ul {
  list-style: none; /* Αφαιρεί τις μαύρες βούλες του browser */
  color: #a5a5a5;
  align-items: center;
  margin-left: -20px !important;
  margin-right: 3px !important;
  margin-bottom: 50px !important;
  font-family: "Montserrat", Sans-serif;
  font-size: 1.5rem;
  text-align: left;
}

.toolsCategory li {
  position: relative;
  padding-left: 0 !important; /* Χώρος για να χωρέσει η κόκκινη βούλα */
  margin-bottom: 10px; /* Απόσταση μεταξύ των στοιχείων */
}

/* Δημιουργία της κόκκινης βούλας */
.toolsCategory li::before {
  content: "\2022";    /* Ο κωδικός για τη βούλα (bullet) */
  color: #b72b4a;      /* Το κόκκινο χρώμα που χρησιμοποιείς */
  font-weight: bold;   /* Να φαίνεται έντονη */
  display: inline-block; 
  width: 1em;          /* Σταθερό πλάτος */
  margin-left: -1em;   /* Την επαναφέρει αριστερά μέσα στο padding */
  font-size: 1.8rem;   /* Λίγο μεγαλύτερη από το κείμενο για στυλ */
  vertical-align: middle;
  line-height: 1;
}

.toolsCategory-item{
  background-color: #ffffff2c;
  height: 100%; /* Επιτρέπει και στα portfolio items να έχουν ίδιο ύψος */
  padding-bottom: 2%;
}

.cta-section2 {
  padding-top: 20px !important;
  padding-bottom: 50px !important;
  clear: both;
  position: relative;
  z-index: 2;
}

.toolsCategory-item h4{
  color: #a1a1a1 !important;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  font-weight: 200 !important;
}
.toolsCategory-button{
  margin-left: 25%;
  margin-right: 25%;
    padding-top: 2% !important;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.toolsCategory-button .section-btn {
  display: inline-block;
  padding: 1% 5%;
  margin-left: 2%;
}

.toolsCategory .section-btn{
  margin-top: -20px !important;
  margin-bottom: 20px !important;
}


.toolsCategory-button .text{
  color: #ffffff;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 2.5rem !important;
  font-size: 2.2rem !important;
  line-height: 1.6;
}


.toolsCategory-button .section-btn .fa-angle-right:hover  {
  transform: translateY(0px); /* καθορίζει την κίνηση του κουμπιού προς τα επάνω στο hover */
  background: #b72b4a;
  border-color: #000000;
  color: black;
}
/* Όταν το ποντίκι είναι πάνω στο κουμπί, άλλαξε το χρώμα του εικονιδίου */
.toolsCategory-button .section-btn:hover .fa-phone .fa-angle-right{
  color: #000000;
}

.toolsCategory-button .fa{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 640px) {
  .toolsCategory  {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 2% !important;
    font-size: 1.5rem;
  }

  #servicePagesMain  .toolsCategory  p{
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 2% !important;
  }

  .websiteCategory-button .text .toolsCategoryP{
    color: #ffffff;
    font-family: "Montserrat", Sans-serif !important;
    font-size: 2.5rem !important;
    padding-bottom: 5% !important;
  }
}


/*--------------------------------
      END TOOLS PAGES 
----------------------------------*/


.linkSite {
  padding-top: 2% !important;
  padding-bottom: 2% !important;
  font-family: "Montserrat", Sans-serif !important;
  text-align: center  !important;
  
}

/* ορισμός link στη σελίδα website*/
.linkSite a{
  font-size: 1.6rem !important;
  color: #bbbbbb !important;
  font-weight: 200 !important;
}
.linkSite a:hover{
  color: #b72b4a !important;
}



.serviceInside-container .row, .websiteCategory-container .row {
  margin-top: 3% !important;
  padding-left: 10% !important;
  padding-right: 10% !important;
  display: flex !important; /* Επιβάλλει το flexbox για να ευθυγραμμιστούν τα ύψη των στηλών */
  flex-wrap: wrap !important;
}



  /*---------------------------------------
      NEWS             
  -----------------------------------------*/

  #news, #news-detail {
    background: #f9f9f9;
  }

  #news-detail blockquote {
    margin: 30px 0;
  }

  .news-detail-thumb .news-image img {
    border-radius: 10px;
  }

  .news-detail-thumb h3 {
    margin-bottom: 8px;
  }

  .news-image {
    margin-bottom: 30px;
    position: relative;
  }

  .news-image img {
    width: 100%;
  }

  .news-detail-thumb ul {
    margin: 32px 12px 22px 0px;
  }

  .news-detail-thumb ul li {
    list-style: circle;
    font-weight: normal;
    padding: 6px 12px 6px 0px;
  }

  .news-sidebar {
    margin-top: 16px;
  }

  .news-social-share {
    text-align: center;
    padding-top: 22px;
  }

  .news-social-share .btn {
    border-radius: 100px;
    border: none;
    font-size: 10px;
    font-weight: 600;
    margin: 2px 6px;
    padding: 8px 14px;
  }

  .news-social-share .btn-primary {
    background: #3b5998;
  }

  .news-social-share .btn-success {
    background: #1da1f2;
  }

  .news-social-share .btn-danger {
    background: #dd4b39;
  }

  .news-social-share a .fa {
    padding-right: 4px;
  }

  .recent-post {
    padding-top: 2px;
    padding-bottom: 18px;
  }

  .recent-post .media img {
    border-radius: 100%;
    width: 80px;
    height: 80px;
    margin-right: 5px;
  }

  .recent-post .media-heading {
    font-size: 16px;
    font-weight: 500;
    line-height: inherit;
    margin-top: 5px;
  }

  .news-categories {
    margin-top: 8px;
  }

  .news-categories li a {
    color: #2b2b2b;
  }

  .news-ads {
    background: #ffffff;
    border-right: 4px solid #2b2b2b;
    padding: 42px;
    text-align: center;
    margin: 26px 0 26px 0;
  }

  .news-ads.sidebar-ads {
    border-left: 4px solid #2b2b2b;
/* Diagnostic fallback: force menu icons visible while debugging inlineAllSVGs issues */
.menu-alt img, .menu-alt svg, .menu-alt .inlined-svg {
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  vertical-align: middle !important;
  color: #ffffff !important; /* for fill:currentColor to take effect */
  fill: currentColor !important;
  opacity: 1 !important;
}

.menu-alt .nav__link { color: #ffffff !important; }
    border-right: 0px;
  }

  .news-ads h4 {
    font-size: 18px;
  }

  .news-tags h4 {
    padding-bottom: 6px;
  }

  .news-categories li,
  .news-tags li {
    list-style: none;
    display: inline-block;
    margin: 4px;
  }

  .news-tags li a {
    background: #393939;
    border-radius: 50px;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    /* float removed to avoid layout conflicts with inline-block */
    min-width: 30px;
    padding: 6px 12px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }

  .news-tags li a:hover {
    background: #b72b4a;
  }



  /*---------------------------------------
      APPOINTMENT             
  -----------------------------------------*/

  #appointment {
    padding-top: 180px;
    padding-bottom: 50px;
  }

  #appointment h2 {
    color: #b72b4a;
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 15px;
    letter-spacing: 30%;
    
  }

  #appointment label {
    color: #393939;
    font-weight: 500;
  }

  #appointment .form-control {
    background: #f9f9f9;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    transition: all ease-in-out 0.4s;
  }

  #appointment input,
  #appointment select {
    height: 45px;
  }

  #appointment button#cf-submit {
    background: #b72b4a;
    color: #ffffff;
    font-weight: 600;
    height: 55px;
  }

  #appointment button#cf-submit:hover {
    background: #393939;
    color: #ffffff;
  }


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

footer {
  flex-shrink: 0; /* Εμποδίζει το footer από το να "συρρικνωθεί" */
  padding-top: 10%; /* Μείωσε το padding αν θες να κολλάει πιο φυσικά */
  padding-bottom: 10px;
  background: transparent; 
}

  footer h4 {
    padding-bottom: 5px;
  }

  
  /* Style for the 'Partners:' label in footer */
  .partners-label {
    color: #b72b4a; /* accent color */
    font-weight: 700;
    margin-right: 6px;
  }


  /* Η γραμμή σου */
.footer-line {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 0 15px 0;
    width: 100%;
}

/* Το container που χωρίζει τα δύο μέρη */
.footer-flex-container {
    display: flex;
    justify-content: space-between; /* Σπρώχνει το ένα τέρμα αριστερά και το άλλο τέρμα δεξιά */
    align-items: center;
    flex-wrap: wrap; /* Για να "σπάει" σε κινητά τηλέφωνα */
}

/* Μικρή απόσταση ανάμεσα στα εικονίδια επικοινωνίας */
.footer-contact span {
    margin-left: 15px;
}

/* Για να φαίνονται καλά σε μικρές οθόνες */
@media (max-width: 768px) {
    .footer-flex-container {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    .footer-contact span {
        display: block;
        margin-left: 0;
    }
}










  /* Scoped styles for the alternate menu (menu-alt) to avoid clashes with Bootstrap's .nav */
  .menu-alt {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px; /*καθορισμός απόστασης κουμπιού menu*/
  }

  .menu-alt .burger {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b72b4a;
    border-radius: 8px;
    cursor: pointer;
    transition: background .18s ease;
  }
  .menu-alt .burger:focus { outline: 2px solid rgba(183,43,74,0.3); }
  .menu-alt .burger__patty {
    width: 52px; /*καθορισμός μεγέθους κουμπιου menu*/
    height: 2px;
    background: #fff;
    box-shadow: 0 10px 0 #fff, 0 -10px 0 #fff; /*καθορισμός αποστάσεων γραμμών κουμπιου menu*/
  }

  .menu-alt .nav__list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 12px 18px; /* slightly larger padding for visual weight */
    background: #b72b4a; /* καθορισμός χρώματος manu */
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.35);
    min-width: 50px; /* ensure the opened menu has a larger width */
    max-width: 100px; /* καθορισμός πλάτους ανοιγόμενου manu */
    max-height: 520px; /* καθορισμός ύψους menu */
  }
  /* Keep generic hover for other navs, but avoid forcing black inside the alternate menu icons
     — menu-alt will control its own hover colors below. */
  .nav__item:hover {
     color: #000000 !important; 
    }
  .nav__link:hover { 
    color: #000000 !important; 
  }

  /* MENU-ALT: icon hover handling
     Target both inline SVGs (preferred) and <img> fallbacks. We color the SVG children using
     currentColor so changing the parent's color affects the icon. For <img> fallbacks we'll apply
     a CSS filter to approximate the color change. */
  .menu-alt .nav__link {
    color: #ffffff; /* default icon color in menu */
    transition: color 180ms ease, filter 180ms ease;
  }

  /* When hovering a link in menu-alt, change color (this affects inline svgs via currentColor) */
  .menu-alt .nav__link:hover {
    color: #fa5252; /* accent on hover */
  }

  /* Inline SVG children inherit currentColor (set earlier). Add a smooth transition for fill/stroke */
  .menu-alt .nav__link svg * {
    transition: fill 160ms ease, stroke 160ms ease, opacity 160ms ease;
  }

  /* <img> fallback: approximate hover by using filter to tint the monochrome icon. This works best
     if the source icon is a dark single-color PNG/SVG. For complex multicolor images this is only approximate. */
  .menu-alt .nav__link img {
    transition: filter 180ms ease, opacity 180ms ease;
    filter: brightness(0) invert(1) sepia(0) saturate(0) hue-rotate(0deg);
  }
  .menu-alt .nav__link:hover img {
    /* example: tint towards accent color (approx). Tweak the values to change the tint strength. */
    filter: brightness(0) saturate(100%) sepia(60%) hue-rotate(-10deg) saturate(400%) brightness(0.95);
  }


  .menu-alt .nav__link img { 
    width: 40px; 
    height: 40px; 
    display: block; 
  }

  

  /* Open state */
  .menu-alt-open .nav__list,
  .menu-alt .nav__list.menu-open {
    display: flex;
    align-items: center;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  /* Accent color helpers used in markup */
  .menu-alt .c-blue img { filter: hue-rotate(200deg) saturate(120%); }
  .menu-alt .c-yellow img { filter: hue-rotate(40deg) saturate(120%); }
  .menu-alt .c-red img { filter: hue-rotate(340deg) saturate(120%); }
  .menu-alt .c-green img { filter: hue-rotate(120deg) saturate(120%); }

  /* When menu is open make burger slightly active */
  .menu-alt.menu-alt-open .burger { background: rgba(183,43,74,0.12); }

  /* Hide the external burger (in top-right) when the menu is open to reduce visual clutter */
  .menu-alt.menu-alt-open .burger { visibility: hidden; opacity: 0; }

/* Ensure inlined SVG children inherit color and stroke from the parent
   This forces icons to follow the .nav__link color (white) rather than their internal fills. */
.menu-alt svg, .menu-alt .inlined-svg {
  width: 40px; height: 40px; display: inline-block;
}
.menu-alt svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* The collapse arrow had a hardcoded blue fill inside its svg file; make it white when shown */
.menu-alt .menu-collapse-arrow svg * {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

  /* Collapse arrow shown inside the opened menu */
  .menu-collapse-arrow {
    display: inline-block;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 8px;
    cursor: pointer;
    width: 46px;
    height: 80px; /*καθορισμός απόστασης βέλους από επάνω*/
    border-radius: 6px;
    text-align: center;
  }

  /* καθορισμός hover βέλους
     Fix: remove accidental descendant selector (space) so hover applies to the button itself.
     Improve hit target: keep the visible arrow size but make an invisible padding/hit area
     using padding + an absolutely positioned ::after. This makes it easier to hover/click. */
  .menu-collapse-arrow:hover {
    color: #000000;
  }

  /* Enlarged hit area without changing visual dimensions */
  .menu-collapse-arrow {
    position: relative; /* establish positioning for ::after */
    padding: 3px; /* καθορισμός απόστασης arrow */
    /* keep the visible footprint same via fixed width/height, but increase the clickable box */
  }

  /* Invisible larger touch/click target */
  .menu-collapse-arrow::after {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    /* extend hit area 10px in every direction */
    background: transparent;
    pointer-events: none; /* allow events to reach the button - actual enlargement happens because padding is increased */
  }

  /* For pointer interactions we want the larger area to accept hover/click; increase padding for small screens */
  @media (max-width: 640px) {
    .menu-collapse-arrow { padding: 12px; }
    .menu-collapse-arrow::after { top: -14px; left: -14px; right: -14px; bottom: -14px; }
  }

  /* Improve keyboard accessibility focus ring */
  .menu-collapse-arrow:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.12), 0 0 0 5px rgba(183,43,74,0.22);
    border-radius: 6px;
  }

  /* Position the arrow at the top inside the nav__list */
  .menu-alt .nav__list .menu-collapse-arrow {
    display: block;
    margin: 0 0 10px 0;
  }

  /* Size the collapse arrow SVG nicely */
  .menu-collapse-arrow img {
    width: 28px;
    height: 28px;
    display: block;
    margin: 4px auto 0 auto;
  }

  /* Generic rule for inlined svgs used as icons: inherit color and be size-controllable */
  .menu-alt .inlined-svg,
  .menu-alt .nav__link svg,
  .menu-collapse-arrow svg, .nav__link {
    width: 40px; /* default icon size */
    height: 40px;
    display: block;
    fill: currentColor; /* allow color control via color property */
    color: #ffffff; /* default icon color in menu */
  }

  /* Smaller icons when compact (adjust via media query) */
  @media (max-width: 640px) {
    .menu-alt .inlined-svg,
    .menu-alt .nav__link svg,
    .menu-collapse-arrow svg {
      width: 28px;
      height: 28px;
    }
  }

  footer a {
    color: #757575;
  }

  footer a:hover {
    color: #b72b4a;
  }

  .contact-info {
    padding-top: 10px;
  }

  .contact-info .fa {
    background: #393939;
    border-radius: 100%;
    color: #ffffff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 2px;
  }

  .latest-stories {
    margin-bottom: 20px;
  }

  .stories-image,
  .stories-info {
    display: inline-block;
    vertical-align: top;
  }

  .stories-image img {
    border-radius: 100%;
    width: 65px;
    height: 65px;
  }

  .stories-info {
    margin-left: 15px;
  }

  .stories-info h5 {
    margin-bottom: 2px;
  }

  .stories-info span {
    color: #858585;
    font-size: 12px;
  }

  .opening-hours p {
    line-height: 18px;
  }

  .opening-hours span {
    font-weight: 500;
    display: inline-block;
    padding-left: 10px;
  }

  .copyright-text p,
  .footer-link a {
    color: #858585;
    font-size: 12px;
    font-weight: 500;
  }

  .footer-link a {
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
    margin-top: 4px;
  }

  .angle-up-btn {
    position: fixed !important;
    bottom: 50px;
    right: 130px;
    bottom: 30px;
    position: fixed;
    bottom: 20px;
    /*right: 30px;*/
    z-index: 9999;   /* Να είναι πάνω από όλα τα άλλα στοιχεία */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
  }

  .angle-up-btn a {
    background: #727272;
    border: 1px solid #727272;
    border-radius: 3px;
    font-size: 20px;
    color: #393939;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
  }

  .angle-up-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .angle-up-btn a:hover {
    background: #b72b4a;
    color: #ffffff !important;
    transform: translateY(-5px);
  }

  /* Στοχεύουμε το εικονίδιο μέσα στο link κατά το hover */
  .angle-up-btn a:hover, 
  .angle-up-btn a:hover i {
    color: #ffffff !important; /* λευκό βέλος top view στο hover */
  }

  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 100px;
    color: #464646;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
  }

  .social-icon li a:hover {
    background: #4267b2;
    color: #ffffff;
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {
    h1 {
      font-size: 4em;
    }
    h2 {
      font-size: 2.5em;
    }
    h3 {
      font-size: 1.5em;
    }

    header {
      height: inherit;
    }
    header span.date-icon {
      border: 0;
      padding-right: 0;
      padding-left: 0;
    }
    header span.email-icon {
      padding-top: 0;
    }

    .navbar-default .navbar-nav li a {
      padding-right: 15px;
      padding-left: 15px;
    }
  }

  @media only screen and (max-width: 992px) {
    .slider .item {
      background-position: center;
    }

    header {
      padding-bottom: 10px;
    }
    header .text-align-right {
      text-align: left;
    }
    header span {
      padding-top: 0;
      padding-left: 0;
      padding-bottom: 0;
    }
  }

  @media only screen and (max-width: 767px) {
    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
      border-color: transparent;
    }
    .navbar-default .navbar-nav li.appointment-btn {
      margin-left: 15px;
    }
    .navbar-default .navbar-nav li a {
      display: inline-block;
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .news-sidebar {
      margin-top: 2em;
    }

    #appointment-form {
      padding-top: 4em;
      padding-bottom: 4em;
    }

    footer {
      padding-top: 60px;
      padding-bottom: 0;
    }
    .footer-thumb {
      padding-bottom: 10px;
    }

    .border-top {
      text-align: center;
    }

    .copyright-text {
      margin-top: 10px;
    }

    .angle-up-btn {
      bottom: 10em;
      bottom: 30px;
      right: 20px;
    }
  }

  /* Mobile fixes: ensure about and menu are visible and usable on small screens */
  @media only screen and (max-width: 767px) {
    /* Reset heavy left padding and max-width so content fits mobile */
    #about {
      padding-top: 120px; /* reduce vertical top padding for mobile */
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 30px;
      max-width: 100%;
    }

    /* Make the reveal not overflow on small screens */
    .about-reveal, .about-reveal--tl, .about-reveal--tr, .about-reveal--bl, .about-reveal--br {
      transform: none !important;
      opacity: 1 !important;
      filter: none !important;
      transition: none !important;
    }

    /* Ensure menu-alt sits in a top bar and burger stays visible */
    .menu-alt {
      position: fixed;
      top: 8px;
      right: 8px;
      left: auto;
      z-index: 10001;
      gap: 6px;
      padding-top: 6px;
    }

    .menu-alt .burger {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(183,43,74,0.9);
      border-radius: 8px;
      visibility: visible;
      opacity: 1;
    }

    

    /* Full-screen mobile menu overlay */
    .menu-alt .nav__list.menu-open {
      display: flex !important;
      position: fixed;
      inset: 0; /* top:0; right:0; bottom:0; left:0 */
      margin: 0;
      /* reduce padding so centering is more exact; we will absolutely-position the close arrow */
      padding: 20px 20px;
      background: #b72b49; /* original red */
      border-radius: 0;
      flex-direction: column; /* stack vertically */
      align-items: center;    /* center horizontally */
      justify-content: center; /* center items vertically */
      z-index: 10000;
      width: 100%;
      min-height: 100vh; /* ensure full viewport height for centering */
      height: auto;
      overflow-y: auto;
      box-shadow: none;
    }
  /* items stacked full-screen: icons centered, one under the other */
  .menu-alt .nav__item { width: auto; margin: 20px 0; flex: 0 0 auto; }

    /* Each link shows the icon centered above the label (if present). Keep link compact and centered */
    .menu-alt .nav__link {
      position: relative;
      display: flex;
      flex-direction: column; /* icon above text */
      align-items: center;
      justify-content: center;
      width: auto; /* don't stretch full width */
      height: auto;
      padding: 6px 12px;
      color: #ffffff;
      background: transparent;
      border-radius: 6px;
      font-size: 18px;
      text-align: center;
      gap: 8px; /* space between icon and label */
    }

    /* Make icon large and centered (icon on its own line) */
    .menu-alt .nav__link img,
    .menu-alt .nav__link svg,
    .menu-alt .nav__link .inlined-svg {
      width: 56px;
      height: 56px;
      display: block;
      margin: 0 auto 8px auto;
      color: #ffffff;
      fill: currentColor;
    }

    /* Position collapse arrow absolutely so it doesn't affect centering of the list */
    .menu-alt .nav__list .menu-collapse-arrow {
      position: absolute;
      top: 18px;
      right: 18px;
      margin: 0;
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      z-index: 10001;
      border-radius: 8px;
    }

    /* Ensure arrow image/svg is centered inside the absolute button */
    .menu-alt .nav__list .menu-collapse-arrow img,
    .menu-alt .nav__list .menu-collapse-arrow svg {
      width: 80px;
      height: 28px;
      margin: 0;
      display: block;
    }

    /* Ensure particles canvas doesn't sit above menu or main content on mobile */
    #particles-js { z-index: -1; }
    /* hide burger control when the pill menu is open to match previous design */
    .menu-alt.menu-alt-open .burger { visibility: hidden; opacity: 0; }

    /* focus styles for keyboard users */
    .menu-alt .nav__link:focus {
      outline: 3px solid rgba(255,255,255,0.14);
      border-radius: 6px;
    }
  }

  @media only screen and (max-width: 639px) {
    h1 {
      font-size: 3em;
      line-height: 1.2em;
    }
    h2 {
      font-size: 2.1em;
    }
    h4 {
      font-size: 1.4em;
    }
  }


  


  /* Styles for Admin User Edit Form */
.admin-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.admin-form-container .form-group {
    margin-bottom: 20px;
}

.admin-form-container label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.admin-form-container .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.admin-form-container .form-control:focus {
    border-color: #b72b4a;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(24, 128, 56, 0.25);
}

.admin-form-container .btn {
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.admin-form-container .btn-primary {
    background-color: #b72b4a;
    border-color: #b72b4a;
    color: #fff;
}

.admin-form-container .btn-primary:hover {
    background-color: #b72b4a;
    border-color: #b72b4a;
}

.admin-form-container .btn-default {
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #555;
    margin-left: 10px;
}

.admin-form-container .btn-default:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}


/* Στυλ για τα μηνύματα επικύρωσης κωδικού */
.password-requirements {
    list-style: none;
    padding: 0;
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}
.password-requirements li {
    margin-bottom: 3px;
}
.password-requirements li.valid {
    color: green;
}
.password-requirements li.invalid {
    color: red;
}


/*νέα προσθήκη*/

/* Custom styles for social media posts */
.social-post-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-post-card img {
    width: 100%;
    height: 300px; /* Fixed height for images */
    object-fit: cover;
    display: block;
}

.social-post-card .post-content {
    padding: 25px;
}

.social-post-card .post-content h4 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.social-post-card .post-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.social-post-card .post-meta {
    font-size: 0.95em;
    color: #777;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-post-card .post-meta span {
    margin-right: 15px;
}

.social-post-card .post-meta i {
    margin-right: 5px;
    color: #188038; /* Green color for icons */
}

.social-post-card .read-more-btn {
    background-color: #b72b4a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-post-card .read-more-btn:hover {
    background-color: #0d2eab;
}



/* προσθήκη post*/

/* Custom styles for single post page */
.post-detail-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 30px;
}
.post-detail-card h1 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 20px;
}
.post-detail-card .post-meta {
    font-size: 1.1em;
    color: #777;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.post-detail-card .post-meta span {
    margin-right: 20px;
}
.post-detail-card .post-meta i {
    margin-right: 8px;
    color: #188038;
}
.post-detail-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.post-detail-card .post-content {
    font-size: 1.2em;
    line-height: 1.8;
    color: #444;
}


/* Calendar Styles */
.calendar-container {
    font-family: Arial, sans-serif;
    margin-bottom: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-bottom: 15px;
}

.calendar-header h4 {
    margin: 0;
    font-size: 24px;
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.calendar-day-header {
    font-weight: bold;
    padding: 5px;
    color: #555;
}

.calendar-day {
    padding: 15px 5px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #e9ecef;
    transition: background-color 0.2s;
}

.calendar-day.inactive {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.calendar-day.has-appointment {
    background-color: #ffcccc; /* Red for appointments */
    font-weight: bold;
    color: #333;
    position: relative;
}

.calendar-day.current-day {
    border: 2px solid #0d6efd;
    font-weight: bold;
}


/* nuv bar νέο menu*/


.nav {
  position: fixed;
  z-index: 1;
  top: 10px;
  left: 0;
  width: 100px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Place the alternate menu on the right side and leave left space for logo
   This override targets nav elements that also have the .menu-alt class. */
.nav.menu-alt {
  right: 100px; /*καθορισμός απόστασης menu από τη δεξιά πλευρά*/
  left: auto;
  top: 20px; /* slightly lower than default */
  width: auto;
  z-index: 9999; /* ensure it's above other navs */
  display: flex; /* keep our inline layout */
}

@media (max-width: 640px){
.nav.menu-alt {
  right: 25px; /*καθορισμός απόστασης menu από τη δεξιά πλευρά*/
}
}

/* Wrapper for alternate menu + logo to keep logo visible on the left */
.alt-menu-wrapper {
  position: fixed;
  top: 12px;
  left: 30px; /*καθορισμός απόστασης LOGO από την αριστερή πλευρά*/
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo placed in the alt menu wrapper — reuse .logo sizing */
.alt-logo { display: inline-block; }
.alt-logo .logo { 
  width: 160px; 
  height: 40px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  height: 85vh;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav__list--active {
  -wkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.nav__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
  font-size: 24px;
  background: #3e4e62;
  -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav__link:hover {
  background: #fa5252;
}

@media (max-width: 640px) {
  .nav {
    width: 70px;
  }
  .nav__list {
    height: 90vh;
  }

  /* Logo placed in the alt menu wrapper — reuse .logo sizing */
  .alt-logo .logo { 
    width: 180px; 
    height: 90px;
    /* Χρήση filter για σωστό σκίασμα στο περίγραμμα του logo */
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.753));
    
    /* Προαιρετικό: Ομαλή μετάβαση αν θέλεις να φαίνεται πιο "γλυκό" */
    transition: filter 0.3s ease;
  }

    #home h2 {
      color: #b72b4a;
      padding-bottom: 0 0 0 50px;
      margin-top: 150px;
      font-family: "Montserrat", Sans-serif;
      font-size: 30px;
      text-align: left;
      padding-left: 10%;
    }

    #home h1 {
      color: #ffffff;
      padding-bottom: 20px;
      margin-top: 0px;
      font-family: "Montserrat", Sans-serif;
      font-size: 32px;
      line-height: 40px;
      text-align: left;
      padding-left: 10%;
    }

     #home h3 {
      color: #a3a3a3;
      font-size: 1.5rem;
      margin: 0 10% 10% 10%;
    }

    #home .section-btn {
      margin-left: 10%;
    }

    .menu-alt .burger { /*καθορισμός μεγέθους κουμπιου menu*/
      width: 60px;
      height: 60px;
      margin-top: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #b72b49b7;
      border-radius: 8px;
      cursor: pointer;
      transition: background .18s ease;
    }

    .menu-alt .burger:focus { outline: 2px solid rgba(183,43,74,0.3); }
    .menu-alt .burger__patty {
      width: 32px; /*καθορισμός μεγέθους γραμμών κουμπιου menu*/
      height: 2px;
      background: #fff;
      box-shadow: 0 10px 0 #fff, 0 -10px 0 #fff; /*καθορισμός αποστάσεων γραμμών κουμπιου menu*/
    }

    .menu-alt .nav__list {
      display: none;
      list-style: none;
      margin: 0;
      padding: 12px 18px; /* slightly larger padding for visual weight */
      background: #b72b49; /* καθορισμός χρώματος manu */
      border-radius: 10px;
      box-shadow: 0 6px 30px rgba(0,0,0,0.35);
      min-width: 850px; /* ensure the opened menu has a larger width */
      max-width: 350px; /* καθορισμός πλάτους ανοιγόμενου manu */
      max-height: 850px; /* καθορισμός ύψους menu */
    }

}

/* Strong mobile override: ensure the full-screen menu-alt overlay centers items vertically
   and that individual .nav__link elements are not absolutely positioned (they were earlier).
   This block is intentionally specific and placed near the end to override previous rules. */
@media only screen and (max-width: 767px) {
  .menu-alt .nav__list.menu-open {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    padding: 12px 12px !important;
    min-height: 100vh !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
  }

  /* Make each item flow normally so the flex container can center them */
  .menu-alt .nav__list.menu-open .nav__item {
    width: auto !important;
    margin: 18px 0 !important;
    flex: 0 0 auto !important;
    position: relative !important;
  }

  /* Override earlier absolute-positioned .nav__link so icon+label stack and center */
  .menu-alt .nav__list.menu-open .nav__item .nav__link {
    position: static !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    background: transparent !important;
    text-align: center !important;
    gap: 8px !important;
  }

  /* Ensure icons are large and centered */
  .menu-alt .nav__list.menu-open .nav__link img,
  .menu-alt .nav__list.menu-open .nav__link svg,
  .menu-alt .nav__list.menu-open .nav__link .inlined-svg, .menu-collapse-arrow {
    width: 86px !important;
    height: 50px !important;
    margin: 0 auto 8px auto !important;
    display: block !important;
    padding-right: 35px !important;
    margin-right: 450px !important;
    
  }

  /* Keep collapse arrow absolutely positioned and clickable */
  .menu-alt .nav__list.menu-open .menu-collapse-arrow {
    position: absolute !important;
    top: 40px !important;
    right: 185px !important;
    padding-bottom: 50px !important;
  }

  /* Collapse arrow shown inside the opened menu */
  .menu-collapse-arrow {
    display: inline-block;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 8px;
    cursor: pointer;
    width: 46px;
    height: 80px; /*καθορισμός απόστασης βέλους από επάνω*/
    border-radius: 6px;
    text-align: center;
  }
}

/* Additional mobile override: when the alt-menu wrapper contains the opened menu,
   pin the menu to the viewport and center items. This prevents the parent wrapper
   from constraining layout and forcing icons to the right. */
@media only screen and (max-width: 767px) {
  /* Make the surrounding wrapper non-clipping and let the menu occupy the viewport */
  .alt-menu-wrapper .menu-alt.menu-alt-open {
    position: fixed !important;
    inset: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
  }
  

  /* Ensure the nav itself is full and centers content */
  .menu-alt.menu-alt-open .nav__list.menu-open {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  /* Force items and links to center and not use absolute positioning */
  .menu-alt .nav__item {
    position: relative !important;
    margin: 18px 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
    text-align: center !important;
  }

  .menu-alt .nav__link {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
  }
}





/*--------------------------------------------------
  Fix: prevent the custom footer element from covering
  interactive content (debugged: `my-footer2` was
  overlaying parts of the page and blocking :hover)
  This keeps footer in normal flow and ensures it does
  not intercept pointer events intended for above items.
--------------------------------------------------*/
my-footer2,
my-footer2 footer {
  display: block;
  margin-top: auto;
  position: static !important;
  z-index: 0 !important; /* keep underneath main content (containers use z-index:2) */
  /* Prevent the footer element's large hit-area from intercepting pointer events
     across the page. Make the footer non-interactive by default and re-enable
     pointer-events only for actual interactive controls inside the footer. */
  pointer-events: none !important;
}

/* Re-enable pointer-events only for real interactive children inside the footer */
my-footer2 a,
my-footer2 button,
my-footer2 .phone-icon a,
my-footer2 .email-icon a {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 10001 !important; /* keep footer controls clickable above surrounding content */
}

my-footer2 .angle-up-btn {
  pointer-events: auto !important;
  z-index: 10002 !important;
}

/* Ensure buttons in services (and general buttons) can receive hover and show pointer */
#services .services-item .button,
#services .section-btn,
.services-item .button,
a.button,
button,
.services-item .button a {
  pointer-events: auto !important;
  z-index: 5 !important; /* above basic content but below menus */
  cursor: pointer !important;
}

/* Stronger hover visuals for service buttons (override accidental resets) */
#services .services-item .button:hover,
#services .section-btn:hover,
.services-item .button:hover,
a.button:hover,
button:hover {
  transform: translateY(-2px) !important;
}
