/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Adjust global container padding */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('fonts/BricolageGrotesque-Bold.ttf') format('woff2'),
       url('fonts/BricolageGrotesque-Regular.woff') format('woff');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('fonts/BricolageGrotesque-Italic.woff2') format('woff2'),
       url('fonts/BricolageGrotesque-Italic.woff') format('woff');
  font-weight: 400; /* Italic */
  font-style: italic;
}
html {
  scroll-behavior: smooth;
}

body {
   font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.5;
}

/* Header Section */
header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #0d0d73;
    color: white;
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 1.5rem;
    color: #caa541;
    font-weight: bold;
    margin-left: -100px;
    margin-top: -10px;
}

header .logo img{
    height: 70px;
    width: 70px;
    margin-left: -50px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
    margin-right: 10px;
}

header nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    
}

header nav ul li a:hover{
color: #003d80;
background: #8ec2f9;
padding: 10px 10px;
border-radius: 30px;
}


/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/home.webp')no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background: none; /* Semi-transparent overlay for text */
    padding: 20px;
    border-radius: 10px;
    margin-top: 150px;
}

.hero-content h1 {
    margin-top: -20px;
    font-size: 4.3rem;
    margin-bottom: 15px;
    
    padding-bottom: 20px;
}

.hero-content p {
    font-size: 1.7rem;
    margin-bottom: 20px;
    padding-bottom: 50px;
}

.cta-button {
    padding: 10px 20px;
    background: #0056b3;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    
    border-radius: 5px;
    transition: background 0.3s;
    
}

.cta-button:hover {
    background: #003d80;
}
.employment-pass {
  padding: 80px 40px;
}

.ep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  
}

.ep-text h2 {
  font-size: 2.5rem;
  color: #002855;
  margin-bottom: 20px;
}

.ep-text p {
  font-size: 1.1rem;
  color:  #002855;
  margin-bottom: 30px;
  line-height: 1.8;
}

.ep-text .cta-button {
  background: #002855;
  color: white;
  font-size: 1.2rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}

.ep-text .cta-button:hover {
  background: #2a3e88;

}

.ep-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Calendly widget styling */
.calendly-inline-widget {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 20px;
  overflow: hidden;
}

/* Button styling for popup version */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #002855;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #004080;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ep-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ep-image img {
    margin: auto;
  }
}


.services-section {
  background-color: #e1e1e1;
  padding: 50px 0;

  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  color: #0d0d73;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #002855;
  margin: 10px auto 0;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

.service-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
  margin-bottom: 15px;
}

.service-card .icon img {
  width: 70px;
  height: 70px;
  color:  #002855;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #002855;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.service-card .learn-more {
  display: inline-block;
  font-size: 0.9rem;
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

.service-card .learn-more:hover {
  color: #003d80;
  text-decoration: underline;
}

/* Section: Singapore Employment Pass */
.employment-pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background-color: #f9f9f9;
}

.employment-pass .text-content {
  max-width: 50%;
}

.employment-pass .text-content h2 {
  font-size: 2rem;
  color: #001b5e;
}

.employment-pass .text-content p {
  font-size: 1rem;
  color: #555;
  margin: 1rem 0;
}

.employment-pass .cta-button {
  background-color: #001b5e;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.employment-pass .image-content img {
  max-width: 400px;
  border-radius: 8px;
}

.why-choose-us {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #002855;
  margin-bottom: 40px;
}

.why-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  min-width: 180px;
}

.why-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.why-box h3 {
  font-size: 1.1rem;
  color: #003366;
}

/* Awards*/
.awards {
  background-color: #e8e6e6;
  padding: 20px 20px;
  text-align: center;
  padding-left: 100px;
}

.award-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.award-logos img {
  width: 150px;
  height: 150px;
  background-color: transparent;
  mix-blend-mode: multiply; /* or 'darken' */
  transition: transform 0.3s ease, filter 0.3s ease;
}


.award-logos img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Testimonials Section */
.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2rem;
  color: #002855;
  margin-bottom: 10px;
}

.testimonials .section-subtitle {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.testimonial-card {
  background: #e9e7e7;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 350px;
  margin: auto;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.testimonial-card img {
  width: 160px;
  height: 220px;
  border-radius: 50% 50% 50% 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  margin: 20px 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/*testimonial section */
.testimonial-card h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #002855;
}

.swiper {
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}



  /* Contact Section Styles */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  margin-left: 10px;
}

  .form-container {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .form-container h2 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 20px;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  label {
    margin-bottom: 5px;
    font-weight: bold;
  }

  input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }

  textarea {
    height: 100px;
    resize: none;

  }

  button {
    background-color: #003366;
    color: #fff;
    padding: 10px;
    border: none;
    width: 250px;
    margin-left: 200px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
  }

  button:hover {
    background-color: #00509e;
  }


  .info-container {
    flex: 1;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .info-container h2 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 20px;
  }

  .info-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .info-container p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #666;
  }

  .contact-info p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: bold;
    color: #003366;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      padding: 20px;
    }

    .form-container, .info-container {
      width: 100%;
      margin-bottom: 20px;
    }
  }
.form-container,
.info-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.contact-section{
  margin-top: 30px;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: #fff;
  border: none;
  display: flex;
  justify-content: flex-start; /* Align items to the start (left) */
  align-items: center; /* Vertically center icon and text */
  font-size: 1.1rem;
  font-weight: 600;
  color: #002855;
  cursor: pointer;
  transition: background 0.3s;
}


 .faq-container {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
  }

.faq-section .container h2,
.faq-section .container p{
  align-items: left;
  text-align: left;
}

.faq-section .container p{
  margin-top: -20px;
  margin-bottom: 20px;
}
.faq-question:hover {
  background: #f0f7ff;
}

.faq-question .faq-text{
    margin-left: 140px;
}
.faq-question .faq-icon{
    margin-left: -150px;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer p {
  padding: 0 0 20x;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* FAQ Icons */
.faq-question .faq-icon {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  transition: transform 0.3s;
}
  
.faq-icon {
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px; /* Space between icon and text */
  min-width: 20px; /* Prevent icon resizing */
}

  
.faq-text {
  flex-grow: 1; /* Take remaining space */
  text-align: left;
}
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
  }

.faq-section .container h2,
.faq-section .container p,
.faq-section .faq-cta p{
    text-align: center;
    align-items: center;
    margin-top: 20px;
}
.inline-link {
  color: #002855;
  font-weight: 600;
  text-decoration: underline;
}

.inline-link:hover {
  color: #00509e;
}

.note {
  background: #f8f9fa;
  padding: 12px;
  border-left: 3px solid #002855;
  margin: 15px 0;
  font-size: 0.9rem;
}

.note i {
  color: #002855;
  margin-right: 8px;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
}

.faq-cta a {
  color: #002855;
  font-weight: 600;
  text-decoration: underline;
}

.faq-cta a:hover {
  color: #00509e;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 20px;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .footer-container {
                flex-direction: column;
            }
            
            .footer-col {
                min-width: 100%;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
}


.certificates{
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  margin-top: -70px;
}

.certification-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.certification-badges img {
  background-color: transparent;
  mix-blend-mode: multiply; /* or 'darken' */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.certification-badges img:hover{
   transform: scale(1.05);
}
 /* Footer */
        footer {
            background-color: #08084b;
            color: #fff;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #bbb;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: #fff;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: #fff;
            font-size: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 20px;
            color: #bbb;
            font-size: 14px;
        }
        