@charset "utf-8";
/* General Section Styling */

/*.banner_main_spp {
  position: relative;
  max-width:1200px;
  height: 400px; 
  background-image: url('../images/og index banner.png'); 
  background-size: cover;
  background-position: center;
	margin: 0 auto;
	text-align: center;
	border-radius: 0px 0px 8px 8px;
}*/


.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px 20px;
  background: #f8f9fa;
}

/* Card Styling */
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  max-width: 250px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Card Image */
.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* Titles & Description */
.service-card h3 {
  font-size: 1.2rem;
  margin: 15px 0 5px;
  color: #333;
}

.service-card h4 {
  font-size: 1rem;
  color: #777;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

/* Dark Button */
.dark-btn {
  background: #222;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.3s;
    text-decoration: none;
}
.btn-size-sml{
    width: 200px; height: auto;
}
.btn-align {margin: 0 auto;}

.dark-btn:hover {
  background: #000;
}
.dark-btn a {color: whitesmoke; text-decoration: none;}
/* Responsive Design */
@media (max-width: 1024px) {
  .services-section {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 600px) {
  .services-section {
    grid-template-columns: repeat(1, 1fr); /* 1 column on small screens */
  }
}

.banner_poster_add  {
     position: relative;
  max-width:1200px;
  height: 400px; /* Adjust as needed */
   margin: 0 auto;
	text-align: center;
	
}


.banner_poster_add img{
    border-radius: 5px;
    width: 100%;
    height: auto;
}
.instructor-recruitment-section {
 
   background: linear-gradient(to top, #272727, #313131);
  padding: 3rem 1rem;
  border-top: 3px solid #222;
    
}

.recruitment-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.recruitment-image {
  flex: 1 1 350px;
  text-align: center;
}

.recruitment-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.recruitment-content h2 {color: snow;}

.recruitment-content {
  flex: 2 1 500px;
	
}
.recruitment-content p{
	color: lightgray;
	
}
.recruitment-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.recruitment-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.recruitment-content .dark-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
    border: thin #E9E9E9 solid;
}

.recruitment-content .dark-btn:hover {
  background: #444;
}


.social-media-app-style {
  background: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
    text-decoration: none;
}

.social-container {
  max-width: 800px;
  margin: 0 auto;
}

.social-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.social-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #111;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.app-icon:hover {
  transform: scale(1.1);
  background-color: #f0f0f0;
}

/* Platform specific brand hover colors */
.app-icon.facebook:hover {
  color: #1877f2;
}

.app-icon.instagram:hover {
  color: #e1306c;
}

.app-icon.youtube:hover {
  color: #ff0000;
}

.app-icon.tiktok:hover {
  color: #000;
}
/* --- Modern Cookie Consent Banner --- */
#consentBanner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: rgba(30, 30, 30, 0.95);
  color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  max-width: 600px;
  width: 90%;
  padding: 1.2em 1.5em;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
#consentBanner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#consentBanner p {
  margin: 0 0 10px;
  line-height: 1.4;
  text-align: center;
}

#consentBanner .buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

#consentBanner button {
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

#consentBanner button.accept {
  background: #2e8b57;
  color: #fff;
}
#consentBanner button.accept:hover {
  background: #33a162;
}

#consentBanner button.reject {
  background: #444;
  color: #f1f1f1;
}
#consentBanner button.reject:hover {
  background: #555;
}

/* Mobile adjustments */
@media (max-width: 500px) {
  #consentBanner {
    font-size: 13px;
    padding: 1em;
  }
  #consentBanner .buttons {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- Announcement Banner --- */
.announcement-section {
  background: linear-gradient(135deg, #1C5E52 0%, #26816e 100%);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-in-out;
}

.announcement-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.announcement-icon {
  font-size: 2.5rem;
  color: #ffeb3b;
  animation: bounce 2s infinite;
}

.announcement-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.announcement-content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 10px;
}

.announcement-btn {
  display: inline-block;
  background: #fff;
  color: #1C5E52;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.announcement-btn:hover {
  background: #ffeb3b;
  color: #000;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .announcement-content h2 { font-size: 1.4rem; }
  .announcement-content p { font-size: 0.95rem; }
}
/* === HERO BANNER (STUDY - PRACTICE - PASS) === */
.hero-spp {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Make hero image fully responsive and keep aspect ratio */
.hero-spp .hero-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* maintain proportions */
  overflow: hidden;
}

.hero-spp .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fills banner properly */
  display: block;
}

/* Overlay Text Content */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1rem 3rem;
}

/* Headings */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: #f1f1f1;
  margin-bottom: 1.3rem;
}

/* CTA Button */
.hero-btn {
  background: #e30613; /* SPP red */
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.hero-btn:hover {
  background: #1c5e52; /* SPP green */
}

/* === Responsive Adjustments === */
@media (max-width: 1024px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-overlay { padding: 2rem 1rem 2.5rem; }
}

@media (max-width: 768px) {
  .hero-spp .hero-image {
    aspect-ratio: 4 / 3; /* slightly taller for mobile */
  }
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-btn { font-size: 0.9rem; padding: 10px 22px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.3rem; }
  .hero-subtitle { font-size: 0.85rem; }
  .hero-overlay { padding: 1.5rem 1rem 2rem; }
  .hero-btn { font-size: 0.85rem; padding: 8px 20px; }
	.hero-spp {border-radius: 0px;}
}

.find-out-more {
	display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px 20px 0px;
  background: #f8f9fa;
	
}
