@font-face {
    font-family: 'SfPro';
    src: url('fonts/sf-pro-text_regular.woff2') format('woff2'),
    url('fonts/sf-pro-text_bold.woff2') format('woff2'),
    url('fonts/sf-pro-text_light.woff2') format('woff2'),
    url('fonts/sf-pro-text_semibold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

@font-face {
    font-family: 'Axiforma'; /* Custom font name */
    src: url('fonts/Axiforma-Bold.woff2') format('woff2'),
    url('fonts/Axiforma-Regular.woff2') format('woff2');
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: #111;
  background: white;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* 🔄 Main Navigation */
.main-nav {
  background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    margin: 0 auto;
    max-width: 1200px;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
}

.logo img{
  width: 200px;
}

.logo span {
  color: #900C3F;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #1B2A37;
  font-weight: 500;
  padding: 5px 0;
  display: inline-block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #1B2A37;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


.logout-btn {
  padding: 5px 10px;
  background: #eee;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.hero {
  position: relative;
  color: white;
  padding:120px 20px;
  overflow: hidden;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/peopleLearning.jpg') center / cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,#0f2635, #29648b);
  z-index: -2;
}


.hero-content {
  display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0;
}

.hero-content h1 span {
  color: #90C6DD;
}

.hero-content p {
  font-size: 1.2rem;
  font-family: "Raleway", sans-serif;
}

.hero-buttons button {
  margin-right: 10px;
  margin-top: 15px;
}

.hero-buttons{
  display: flex
;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}


.primary-btn {
  background: white;
  color: #0f2635;
  font-family: "Raleway", sans-serif;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
   transition: color 0.3s ease;
}

.primary-btn:hover{
  background-color: #1B2A37;
  color: white;
}


.secondary-btn {
  background: white;
  color: #0f2635;
  font-family: "Raleway", sans-serif;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.secondary-btn:hover{
  background-color: #1B2A37;
  color: white;
}


.hero-image .image-placeholder {
  background: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-size: 40px;
}

.image-placeholder img{
  width: 100%
}

.stats {
  padding: 100px 0;
  background: #fff;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat .icon {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #0f2635;
}

.stat strong{
  font-size: 1.5rem;
}

.stat{
  background: white;
padding: 30px 0px;
width: 30%;
display: flex;
flex-direction: column;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
border-radius: 8px;

}

.courses {
      padding: 0px 0px 100px 0;
}

.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.courses-grid {
    display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
}

.course-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.card-image {
  font-size: 40px;
  margin-bottom: 15px;
  background: #e9eff2;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.course-card img{
  width: 100%;
}

.instructor {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.details {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}

.start-btn {
  background: #90C6DD;
  font-family: "Raleway", sans-serif;
  color: white;
  border: none;
  padding: 8px 15px;
  margin-top: 15px;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
}


.cta {
  background: #0f2635;
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-bottom: 1px solid #0A1B26;
}

.cta .go-btn {
  margin-top: 15px;
  background: #e11d48;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.site-footer {
  background: #0f2635;
  color: #eee;
  padding: 40px 0px 0;
  font-family: 'SfPro', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-logo {
  width: 120px;
  padding: 10px;
  display: block;
  margin-bottom: 10px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: #0a1b26;
  text-align: center;
  padding: 15px;
  position: relative;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}



/* 🔲 Hamburger Menu */
.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  color: #111;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: none;
  gap: 15px;
}


/* Centered container with box shadow */
.containerPrivacy {
  max-width: 960px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/* Style all tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 16px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}

/* Table headers and cells */
table td,
table th {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

/* Optional: alternate row color for clarity */
table tr:nth-child(even) {
  background-color: #f1f1f1;
}

/* Optional: bold first column (like term/definition) */
table td:first-child {
  font-weight: bold;
  width: 30%;
}


#about-us {
  background: #90C6DD;
  color: white;
  padding: 80px 20px;
  font-family: "Raleway", sans-serif;
}

#about-us .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#about-us .text-content {
  flex: 1 1 500px;
  max-width: 600px;
}

#about-us h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

#about-us p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

#about-us .illustrations {
  flex: 1 1 400px;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

#about-us .illustrations img {
  max-width: 120px;
  height: auto;
}

.hero-about {
  position: relative;
  color: white;
  padding:120px 20px;
  overflow: hidden;
  z-index: 0;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/About-us-back.webp') center / cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.hero-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,#0f2635, #29648b);
  z-index: -2;
}

.info-section {
  display: flex;
    justify-content: space-around;
    padding: 40px;
    background-color: white;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
  max-width: 300px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 20px;
}

.info-card img{
  max-width: 100px;
}

.info-number {
  font-size: 48px;
  font-weight: bold;
  color: #c1c1c1;
  margin-bottom: 15px;
}

.info-section h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.info-section p {
  font-size: 16px;
  color: #555;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/office.webp') center / cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,#0f2635, #29648b);
  z-index: -2;
}

.testimonials-section {
  position: relative;
    text-align: left;
    margin: 0 auto;
    padding: 59px 60px;
        }
        .testimonials-section h2 {
          font-size: 3rem;
            color: white;
            margin-bottom: 5px;
            margin-bottom: 50px;
        }
        .testimonials-section p {
            color: #ddd;
            font-weight: bold;
            font-size: 14px;
        }
        .testimonial {
                display: flex;
    width: 45%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 40px 20px;
    vertical-align: top;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
        }
        .testimonial img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            margin-bottom: 10px;
        }
        .quote {
            font-size: 18px;
            color: white;
            margin: 10px 0;
            position: relative;
        }
        .author {
            font-weight: bold;
            color: #90C6DD;
            font-size: 16px;
            display: block;
        }
        .company {
            color: #d4d4d4;
            font-size: 14px;
            margin-top: -5px;
        }

        .testWrapper{
          display: flex;
          padding: 30px 50px 50px 50px;
          justify-content: center;
          align-items: center;
        }

.section-wrapper{
  max-width: 1200px;
  margin: 0 auto;
}        


.association-card{
  max-width: 300px;
}

.association-card img{
  max-width: 300px;
  width: 300px;
}

.cardWrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}


.contact-section {
        background: white;
        padding: 80px 140px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 0.5px solid #666;
    }
    
    
    .contact-container {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
    }
    
    
    .contact-info {
        width: 40%;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
        color: #0a1b26;
    }
    
    .contact-info p {
        font-size: 1.1rem;
        color: #5a5a5a;
    }
    
    .contact-label {
        font-size: 0.9rem;
        letter-spacing: 2px;
        color: #888;
        margin-top: 20px;
    }
    
    .email, .phone {
        font-size: 1.2rem;
        font-weight: bold;
        color: #000;
    }
    
    .contact-flags {
        margin-top: 20px;
    }
    
    .contact-flags img {
        width: 40px;
        height: auto;
        margin-right: 10px;
    }
    
    
    .contact-form {
        width: 43%;
        font-family: 'Raleway', sans-serif;
        background: transparent;
        padding: 20px;
        border-radius: 10px;
    }
    
    .contact-form form {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 547px;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-family: 'Raleway', sans-serif;
        width: 95%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 1rem;
        background-color: white;
    }
    
    .contact-form .inline-fields {
        display: flex;
        gap: 10px;
    }
    
    .contact-form .inline-fields input {
        width: 50%;
    }
    
    textarea {
        height: 100px;
        resize: none;
    }
    
    
    .checkbox-container {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        color: #5a5a5a;
    }
    
    .checkbox-container input {
        width: auto;
    }
    
    .contact-form select {
        font-family: 'Raleway', sans-serif;
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 1rem;
        background-color: white;
        color: #333;
        appearance: none; 
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="gray"><polygon points="0,0 14,0 7,8"/></svg>');
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
    }
    
    
    
    .submit-btn {
        background: #0a1b26;
        font-family: 'Raleway', sans-serif;
        padding: 12px 20px;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: opacity 0.3s;
    }
    
    .submit-btn:hover {
        opacity: 0.8;
    }


/* Make tables responsive on small screens */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  table {
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
        background: white;
        position: absolute;
        right: 0%;
        top: 95px;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0px 0px 6px 6px;
        overflow: hidden;
        z-index: 1000;
        width: 100%;
        padding: 10px 0px;
  }

  .nav-links a {
    padding: 10px 20px;
        display: block;
        border-bottom: 1px solid #eee;
        width: 82%;
        text-align: center;
    }


  .nav-links.show {
    display: flex;
  }

  .navbar .container {
    position: relative;
  }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    box-shadow: none;
  }

  .hamburger {
    display: none;
  }


}


/* -------------------------
   📱 Responsive (Mobile)
--------------------------*/
@media (max-width: 768px) {

  .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-divider {
        display: none;
    }

  .contact-section{
        padding: 60px 0px !important;
    }

    .contact-form{
        width: 90% !important;
    }

    .contact-form input, .contact-form textarea {
        width: 94% !important;
    }
    
    .contact-info {
        width: 100% !important;
        text-align: center;
    }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

    .stat {
    background: white;
    padding: 30px 0px;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.stats {
    padding: 10px 0;
    background: #fff;
}

.testWrapper {
    flex-direction: column;
        width: 100%;
        padding: 0px;
}

.testimonial {
    width: 100%;
}

  .hero-buttons {
    display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
  }

  .hero-image {
    margin-top: 20px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }

  .testimonials-section h2
 {
    font-size: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.association-card img {
    max-width: 300px;
    width: 220px;
}

.association-card h2 {
  text-align: end;
  margin-bottom: 45px;
}

.info-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 40px;
    background-color: white;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cardWrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
  .courses-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .navbar .container {
    flex-direction: column;
    gap: 10px;
  }

  .logout-btn {
    width: 100%;
  }

  nav {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .logo {
    text-align: center;
  }
}

/*COURSES PAGE*/

.courses-filter{
  background-color: #F9FAFB;
    border-radius: 10px;
    padding: 10px 30px 10px 30px;
        margin: 50px auto;
}

.courses-filter h2{
  margin: 3px 0 10px 0;
}

.courses-filter i{
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.titleWrapper{
  display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #0A1B26;
}

#search-input{
width: 30%;
    border-radius: 5px;
    font-size: 1rem;
    padding: 5px 8px;
    font-family: "Raleway", sans-serif;
    border: 0.5px solid #1B2A37;
}

#level-filter{
width: 30%;
    border-radius: 5px;
    font-size: 1rem;
    padding: 10px 8px;
    font-family: "Raleway", sans-serif;
    border: 0.5px solid #1B2A37;
}

.filter-bar{
  display: flex;
    gap: 10px;
}


/* Cookie Banner Styling */
#cookie-banner {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: fixed;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    background: white;
    color: #212529;
    padding: 20px;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 0.7rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
}

.cookie-banner-content h3 {
    margin: 0 0 10px;
}

.cookie-banner-content ul {
    text-align: center;
    padding-left: 20px;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-btn {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin: 5px;
}

.cookie-accept {
    background: #161718;
    color: white;
}

.cookie-accept:hover {
    background: #212529;
    transform: scale(1.05);
}

.cookie-decline {
    background: #ddd;
    color: #212529;
}

.cookie-decline:hover {
    background: #bbb;
    transform: scale(1.05);
}

.cookie-settings {
    background: #f8f8f8;
    color: #212529;
}

.cookie-settings:hover {
    background: #e0e0e0;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 309px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.cookie-settings-content h3 {
    margin: 0 0 10px;
}

.cookie-close {
    background: red;
    color: white;
}

.cookie-close:hover {
    background: darkred;
}

@media (max-width: 768px) {
#cookie-banner {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3sease-in-out;
    position: fixed;
    bottom: 24px;
    left: 49.5%;
    transform: translateX(-50%);
    width: 84%;
    /* max-width: 900px; */
    background: white;
    color: #212529;
    padding: 20px;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3sease-in-out;
}
}