@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

@media (min-width: 768px) {
.container {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
}
  
/* header.css - Dark Japanese Theme */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header {
    position: sticky;
    top: 0px;
    z-index: 100;
    background-color: rgb(0 26 80) !important;
    box-shadow: 0 2px 4px rgb(0 26 80);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .brand img {
    width: 32px;
    height: 32px;
  }
  
  .nav-links a {
    color: #e0e0e0;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  
  .enroll-btn {
    transition: all 0.3s ease;
  }
  
  .enroll-btn:hover {
    transform: scale(1.05);
  }
  
  .mobile-nav-list a {
    font-size: 1.125rem;
    color: #e0e0e0;
    text-decoration: none;
  }
  
  .mobile-nav-list a:hover {
    color: #ffcc00;
  }
  
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav.desktop-nav {
      display: none;
    }

    .hidden {
        display: none !important;
      }
      
  }

/* footer */

.footer {
    background-color: rgb(0 22 66);
    box-shadow: 0 2px 4px rgb(0 26 80);
    color: #e5e5e5;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns for desktop */
    gap: 2rem;
    padding: 2rem 8.5rem;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #ffffff;
  }
  
  .footer-section ul li {
    line-height: 1.75rem;
  }
  
  .footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #3b82f6;
  }
  
  .footer-brand img {
    border-radius: 6px;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }
  
  .footer-bottom {
    background-color: rgb(0 22 66);
    color: #aaa;
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-brand,
    .social-icons {
      justify-content: center;
    }
  }
  
  
/* index.css - Japanese Inspired Dark Theme */
  
body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .hero {
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    height: 84vh;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  
  .hero .cta {
    background-color: #ff3e3e;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .hero .cta:hover {
    background-color: #e62e2e;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    background-color: #111;
  }
  
  .feature {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.2s;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .feature h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #ffcc00;
  }
  
  .feature p {
    color: #ccc;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    height: 100%; /* Full height of hero */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ebeff5;
    text-align: center;
    padding: 20px;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7;
  }

  .social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .social-icons a img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .social-icons a img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
  }

  .infinite-marquee {
    background-color: #1a1a1a;
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
  }

  .marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
  }

  .marquee-content {
    display: flex;
    gap: 2rem;
  }

  .news-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #f3f4f6;
  }

  .news-item img {
    width: 24px;
    height: 24px;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
  }
  
  /* about.css - Japanese Inspired Dark Theme */
  
  .section-bg {
      background-image: url('../images/tech-background.jpg'); /* adjust path if needed */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      z-index: 1;
    }
    
  
  .about-section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffcc00;
  }
  
  .about-section p {
    margin-bottom: 20px;
    color: #ccc;
  }
  
  @media (max-width: 768px) {
    .about-section {
      padding: 40px 15px;
    }
  
    .about-section h2 {
      font-size: 1.5rem;
    }
  }

  /* contact.css - Japanese Inspired Dark Theme */
  
  .contact-section {
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffcc00;
    text-align: center;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    color: #ccc;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #e0e0e0;
  }
  
  .contact-form button {
    padding: 12px;
    background-color: #ff3e3e;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #e62e2e;
  }
  
  @media (max-width: 768px) {
    .contact-section h2 {
      font-size: 1.5rem;
    }
  }
  
  /* courses.css - Japanese Inspired Dark Theme */

  .course-icon {
    width: 24px;
    height: 24px;
    stroke: #1D4ED8;
    stroke-width: 2;
    fill: none;
  }
  
  .courses-section {
    padding: 60px 20px;
  }
  
  .courses-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #ffcc00;
  }
  
  .course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .course-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.2);
  }
  
  .course-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #ffcc00;
  }
  
  .course-card p {
    color: #ccc;
  }
    
  @media (max-width: 768px) {
    .courses-section h2 {
      font-size: 1.5rem;
    }
  }
  
/* enrollNow.css - Japanese-inspired dark theme */
  
  /* Header and footer assumed to be styled separately */
  
  /* Hero Section */
  .hero-section {
    background-image: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 1.5rem;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
  }
  
  .hero-content p {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 2rem;
  }
  
  .hero-content .btn {
    padding: 0.75rem 2rem;
    margin: 0.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #3b82f6;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #2563eb;
  }
  
  .btn-link {
    background: none;
    color: #3b82f6;
    text-decoration: underline;
  }
  
  .btn-link:hover {
    color: #60a5fa;
  }
  
  /* Form Section */
  .form-section {
    background-color: #111111;
    padding: 4rem 1.5rem;
  }
  
  .form-wrapper {
    max-width: 768px;
    margin: 0 auto;
    background-color: #1c1c1c;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f1f1;
    text-align: center;
  }
  
  .form-section p {
    font-size: 1rem;
    color: #999;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    color: #ddd;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #333;
    border-radius: 0.375rem;
    background-color: #1f1f1f;
    color: #f1f1f1;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
  }
  
  .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.875rem;
  }
  
  .submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #1d4ed8;
  }

  .nav-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #1a1a1a;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  justify-content: center;
}

.back-arrow {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.back-arrow:hover {
  transform: translateX(-5px);
}

.nav-title {
  font-weight: 600;
}

  
  /* Responsive */
  @media (min-width: 768px) {
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  
    .hero-content h1 {
      font-size: 3rem;
    }
  
    .hero-content p {
      font-size: 1.25rem;
    }
  }

  /* popup.css - Japanese-inspired dark theme for enquiry popup */
/* Base popup styling (shared) */
/* Base popup style */
.scroll-popup-enquiry {
  display: block;
  position: fixed;
  background: #1a1a1a;
  color: #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  max-width: 30%;
  padding: 1.5rem;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
  right: 30%;
  top: 10%;
}


.popup-content {
  position: relative;
}

.popup-content h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #fff;
}

.popup-content ul {
  padding-left: 1rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.popup-content .cta {
  background-color: #22c55e;
  padding: 0.75rem;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #ccc;
}

.close-popup:hover {
  color: #fff;
}

form input, form select, form button {
  width: 100%;
  margin-bottom: 10px;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

form button {
  background-color: #ef4444;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #dc2626;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.popup-content {
  padding: 2rem;
  position: relative;
}

.popup-content h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  color: #ffffff;
  border-bottom: 1px solid #444;
  padding-bottom: 0.5rem;
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #bbb;
  cursor: pointer;
  transition: color 0.3s;
}

.close-popup:hover {
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form select {
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #2a2a2a;
  color: #f0f0f0;
  font-size: 1rem;
  transition: background-color 0.3s;
}

form input:focus,
form select:focus {
  outline: none;
  background-color: #333;
}

form button {
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #d62839;
}

/* Responsive */
@media (max-width: 480px) {
  .popup-content {
    padding: 1.5rem;
  }

  .popup-content h2 {
    font-size: 1.25rem;
  }

  form input,
  form select,
  form button {
    font-size: 0.95rem;
  }
}

/* Offer Popup Styling */
#scrollPopup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 20%;
  width: 100vw;
  height: 100vh;
  background: #00000091;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.popup-content-enquiry {
  background: #fff;
  color: black;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  border-radius: 10px;
  padding: 20px;
  overflow-y: auto;
}

/* Mobile Optimized */
@media (max-width: 480px) {
  .popup-content-enquiry {
    padding: 15px;
    font-size: 14px;
  }

  .popup-content-enquiry input,
  .popup-content-enquiry select,
  .popup-content-enquiry button {
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }
}


.scroll-popup-offer {
  display: none;
  position: fixed;
  right: 20px;
  top: 20px;
  background-color: #1a1a1a;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 9998;
  animation: fadeInUp 0.3s ease-in-out;
}

.close-popup-enquiry{
  cursor: pointer;
  float: right;
}

.popup-content-offer {
  position: relative;
}

.popup-content-offer h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.popup-content-offer ul {
  padding-left: 1rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.offer-cta-button {
  display: block;
  background-color: #22c55e;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.offer-cta-button:hover {
  background-color: #16a34a;
}

.close-popup-offer {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #bbb;
}

.close-popup-offer:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .scroll-popup-enquiry,
  .scroll-popup-offer {
    left: 40% !important;
    right: auto !important;
    top: 20px !important;
    transform: translateX(-50%);
    width: 90%;
    max-width: 75%;
  }
}

/* sticker */
.announcement-sticker {
  position: fixed;
  top: 20px;
  right: -40px;
  background: linear-gradient(135deg, #10b981, #059669); /* green gradient */
  transform: rotate(45deg);
  padding: 8px 30px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  pointer-events: none;
  user-select: none;
  border-radius: 6px;
}

.announcement-text {
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
}

/* Mobile adjustment */
@media (max-width: 480px) {
  .announcement-sticker {
    top: 15px;
    right: -50px;
    padding: 6px 20px;
  }

  .announcement-text {
    font-size: 12px;
  }
}

.announcement-sticker {
  animation: shakeTag 3s infinite ease-in-out;
}

@keyframes shakeTag {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-3px); }
}
