/* Base */
body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background-color: #1A1A1D; /* Dark slate/navy background */
  color: #CCCCCC; /* Light gray text */
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #111214; /* darker than bg for header */
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #FFB800; /* Gold/yellow */
  letter-spacing: 2px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #CCCCCC;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FFD700; /* bright gold on hover */
}

.cta-button {
  background-color: #FFB800; /* Gold */
  color: #1A1A1D;
  padding: 10px 22px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 8px #FFD700;
}

.cta-button:hover {
  background-color: #FFD700;
  box-shadow: 0 0 15px #FFB800;
  color: #1A1A1D;
}

/* Hero Section */
.hero {
  background: url('../images/benefits-img.jpg'); 
  color: #FFD700; /* Gold text */
  text-align: center;
  padding: 120px 20px 140px;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
  opacity: 0;
  animation: slideInFade 1.8s forwards;
}

.hero p {
  font-size: 22px;
  max-width: 750px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeIn 2.5s forwards;
  animation-delay: 0.8s;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.hero-buttons a {
  margin: 0 12px;
  padding: 14px 32px;
  text-decoration: none;
  border: 2px solid #FFD700;
  color: #FFD700;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 0;
  animation: fadeIn 2.5s forwards;
  animation-delay: 1.6s;
}

.hero-buttons a:hover {
  background-color: #FFD700;
  color: #1A1A1D;
  box-shadow: 0 0 15px #FFB800;
  border-color: #FFB800;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

main {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 30px;
  color: #CCCCCC;
}

h1, h2 {
  color: #FFD700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

p {
  margin-bottom: 24px;
  color: #E0E0E0;
}

/* Welcome fade-in */
.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

/* Services Section */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.service-box {
  background-color: #222; /* Dark card background */
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 20px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 30px rgba(255, 184, 0, 0.3);
}

.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-icon {
  font-size: 30px;
  color: #FFB800;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }
}


/* Portfolio */
.portfolio {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
  justify-content: center;
}

.portfolio-box {
  background-color: #111214;
  border-radius: 12px;
  max-width: 460px;
  flex: 1 1 45%;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  color: #fff;
  overflow: hidden;
}

.portfolio-box img {
  width: 100%;
  border-radius: 12px 12px 0 0;
  height: auto;
  display: block;
}

.portfolio-box h3 {
  margin: 20px 20px 8px;
  color: #FFD700;
}

.portfolio-box p {
  margin: 0 20px 20px;
  color: #E0E0E0;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 2rem auto;
  overflow: hidden;
  background: #222;
  color: #ddd;
  padding: 1.5rem 2rem;
  border-radius: 8px;
}

.testimonial {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}


/* Contact Box */
.contact-box {
  background: #222228;
  color: #FFD700;
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  margin-top: 40px;
}

.contact-button {
  background-color: #FFD700;
  color: #1A1A1D;
  padding: 14px 36px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 0 12px #FFB800;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #FFB800;
  box-shadow: 0 0 18px #FFD700;
}

 .about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }

  .about-text {
    flex: 1 1 55%;
  }

  .about-image {
    flex: 1 1 40%;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 10px;
  }

  .stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    gap: 1.5rem;
  }

  .stat-box {
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    flex: 1 1 200px;
    color: var(--text-color);
  }

  .stat-box strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-color);
  }
  .core-logo-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
}

.logo-with-explanation {
  flex: 1 1 300px;
  text-align: center;
}

.center-logo {
  font-size: 42px;
  font-weight: 900;
  color: #FFB800;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.logo-explanation {
  color: #CCCCCC;
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}


.core-aspects {
  padding: 40px 20px;
  background-color: #1A1A1D; /* dark background to match site */
  color: #CCCCCC;
  text-align: center;
}

.core-aspects h2 {
  color: #FFD700;
  margin-bottom: 30px;
}

.services {
  display: flex;
  justify-content: center; /* center the service items horizontally */
  gap: 40px; /* space between each box */
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.service-item {
  background-color: #1A1A1D;
  border-radius: 10px;
  padding: 20px;
  max-width: 280px;
  flex: 1 1 280px; /* flexible width but minimum 280px */
  box-shadow: 0 0 15px #FFD700;
  transition: transform 0.3s ease;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-item:hover, .service-item:focus {
  transform: translateY(-8px);
  box-shadow: 0 0 30px #FFB800;
  outline: none;
}

.service-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.service-text {
  text-align: left;
  color: #EEE;
  font-size: 16px;
  line-height: 1.3;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .core-logo-section {
    flex-direction: column;
    align-items: center;
  }

  .core-aspects {
    width: 100%;
  }

  .logo-with-explanation {
    width: 100%;
    margin-bottom: 30px;
  }
}

.logo-section {
  text-align: center;
  margin: 50px 0 30px;
}

.logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}
.solution {
      margin-bottom: 20px;
      padding: 15px;
      background: #eef3f7;
      border-radius: 6px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .solution img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 10px 0;
      border-radius: 6px;
    }
.services {
  padding: 40px 20px;
  background-color: #1A1A1D;
  color: #ccc;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-box {
  background-color: #2C2C30;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--primary-color-hover, #FFD700);
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-hero .hero-content {
  text-align: center;
}

/* Pricing Section Styles */
.pricing-table {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 50px 0;
  flex-wrap: wrap;
}

.pricing-card {
  background-color: #2C2C31;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: #FFD700;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2rem;
  margin: 10px 0 20px;
  color: #fff;
}

.pricing-card .price span {
  color: #FFB800;
  font-weight: bold;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  color: #ccc;
  margin-bottom: 20px;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #444;
}

.pricing-card.featured {
  border: 2px solid #FFD700;
  background-color: #1A1A1D;
}

.projects-section {
  padding: 80px 20px;
  background-color: #1A1A1D;
  color: #ffffff;
}

.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.subheading {
  color: #d4af37; /* gold accent */
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-heading {
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: bold;
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #cccccc;
}

.project-card {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 40px;
}

.project-text {
  flex: 1;
}

.project-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.project-text p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #cccccc;
}

.project-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.project-text ul li {
  margin-bottom: 8px;
}

.project-link {
  color: #a84ae2; /* matching your existing "Get Started" button */
  text-decoration: none;
  font-weight: bold;
}

.project-link:hover {
  text-decoration: underline;
}

.project-image {
  flex: 1;
  max-width: 500px;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.leadership-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 3rem 1rem;
}

.leader-card {
  background: #1a1a1a; /* match your site theme */
  color: #d4af37;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.7);
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
}

.leader-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #d4af37;
}

.leader-card .title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

/*coe*/
.coe-section {
  background-color: #1a1a1d;
  padding: 50px 20px;
  color: #fff;
}

.coe-section .section-title {
  color: #FFD700;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 10px;
}

.coe-section .section-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 40px;
}

.course-category {
  margin-bottom: 40px;
}

.course-category h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  padding-left: 10px;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.course-card {
  background-color: #2c2c2e;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 184, 0, 0.1);
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.course-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1em;
}

.course-card p {
  font-size: 0.95em;
  color: #ddd;
}

.note {
  text-align: center;
  font-size: 1em;
  margin-top: 30px;
  color: #f0f0f0;
}

.register-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: var(--primary-color);
  color: #1A1A1D;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.register-button:hover {
  background-color: var(--primary-color-hover);
  color: #000;
}

/*faq*/
/* FAQ Styles */
.faq-container {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  color: #fff;
}

.faq-container h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
  font-size: 1rem;
}

.faq-item {
  background: #1a1a1d;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #333;
}

.faq-question {
  background: none;
  color: #FFD700;
  font-size: 1.1rem;
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #111;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
  color: #ccc;
}

.faq-answer a {
  color: #FFB800;
  text-decoration: underline;
}

/*faq close*/
/*careers*/
/* Careers Styles */
.careers-container {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  color: #fff;
}

.hero-section {
  text-align: center;
  margin-bottom: 50px;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.hero-section p {
  color: #ccc;
  font-size: 1rem;
  margin: 15px 0;
}

.apply-button {
  background: var(--primary-color);
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

.open-positions h2,
.culture h2,
.apply h2 {
  color: var(--primary-color);
  margin-top: 40px;
  font-size: 1.8rem;
}

.job-listing {
  background: #1f1f22;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.job-listing h3 {
  color: #FFD700;
  margin-bottom: 10px;
}

.job-listing p {
  margin: 5px 0;
  color: #ccc;
}

.culture p,
.apply p {
  color: #ccc;
  margin-top: 10px;
}
/*trems*/
.legal-container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  color: #ccc;
}

.legal-container h1 {
  color: var(--primary-color);
  margin-top: 40px;
  font-size: 2rem;
}

.legal-container h2 {
  color: #FFD700;
  margin-top: 20px;
  font-size: 1.3rem;
}

.legal-container p {
  line-height: 1.6;
  margin-bottom: 15px;
}
/*isi logo*/
.innostorey-image {
  display: block;
  max-width: 600px;   /* bigger width */
  width: 100%;
  margin: 30px auto 50px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.3);
}





/* Footer */
footer {
  background-color: #111214;
  color: #CCCCCC;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 60px 60px;
  gap: 40px;
  font-size: 14px;
}

footer div {
  flex: 1 1 200px;
  min-width: 180px;
}

footer h3 {
  color: #FFD700;
  margin-bottom: 20px;
}

footer a {
  display: block;
  margin-bottom: 12px;
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #FFD700;
}

footer p {
  margin: 6px 0;
}

.social-icons a {
  color: #CCCCCC;
  margin-right: 16px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
}

.footer-bottom {
  flex-basis: 100%;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #999999;
}

.footer-bottom a {
  color: #999999;
  text-decoration: underline;
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav {
    margin-top: 12px;
    flex-basis: 100%;
    text-align: center;
  }
  nav a {
    margin: 0 12px 12px;
  }
  .services, .portfolio, .testimonials {
    flex-direction: column;
    align-items: center;
  }
  .service-box, .portfolio-box, .testimonial {
    max-width: 100%;
    flex: none;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
  header {
    padding: 15px 20px;
  }
  .cta-button {
    margin-top: 12px;
  }
}

 