/*
  Theme Name: Gotogler Academy
  Theme URI: https://www.gotogler.com/
  Author: Gotogler Technologies
  Author URI: https://www.gotogler.com/
  Description: A custom premium WordPress theme built for Gotogler Academy
  Version: 1.0
*/

:root {
  --primary-color: #4F46E5;
  /* Indigo */
  --primary-hover: #4338CA;
  --secondary-color: #10B981;
  /* Emerald */
  --background-dark: #111827;
  /* Gray 900 */
  --text-light: #F9FAFB;
  --text-muted: #D1D5DB;
  --text-dark: #1F2937;
  --bg-light: #F3F4F6;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.ga-body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.ga-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.ga-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ga-logo img {
  height: 50px;
  width: auto;
}

.ga-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.ga-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.ga-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.ga-nav a:hover {
  color: var(--primary-color);
}

.ga-nav a:hover::after {
  width: 100%;
}

/* =========================================
   HERO SECTION
========================================= */
.ga-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 60px;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.1) 0%, transparent 40%);
}

.ga-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

.ga-hero-content {
  flex: 1;
  max-width: 600px;
}

.ga-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ga-hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.ga-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ga-btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
}

.ga-btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.ga-btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.ga-btn-secondary:hover {
  background-color: var(--card-bg);
  border-color: var(--text-muted);
}

.ga-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.ga-hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 60%);
  z-index: -1;
  filter: blur(40px);
}

.ga-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
   FEATURES (3 STEPS) SECTION
========================================= */
.ga-features {
  padding: 100px 5%;
  background-color: var(--background-dark);
}

.ga-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.ga-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.ga-section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.ga-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.ga-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ga-feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.3);
}

.ga-feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 2rem;
}

.ga-feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.ga-feature-card p {
  color: var(--text-muted);
}

/* =========================================
   COURSES SECTION
========================================= */
.ga-courses {
  padding: 100px 5%;
  background: linear-gradient(to bottom, var(--background-dark), #0f172a);
}

.ga-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.ga-course-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ga-course-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
}

.ga-course-image {
  height: 200px;
  background-color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.ga-course-image {
  font-size: 72px;
  /* For icons */
  font-weight: bold;
}

.ga-course-image.js {
  color: #f7df1e;
}

.ga-course-image.c {
  color: #00599C;
}

.ga-course-image.java {
  color: #f89820;
}

.ga-course-content {
  padding: 30px;
}

.ga-course-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.ga-course-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.ga-courses-cta {
  text-align: center;
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */
.ga-testimonial {
  padding: 100px 5%;
  background-color: #0f172a;
}

.ga-testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  padding: 60px 40px;
  border-radius: 24px;
  position: relative;
}

.ga-quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.5;
  margin-bottom: 20px;
}

.ga-testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 30px;
}

.ga-testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.ga-testimonial-role {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* =========================================
   FOOTER
========================================= */
.ga-footer {
  background-color: #020617;
  padding: 80px 5% 30px;
  border-top: 1px solid var(--border-color);
}

.ga-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.ga-footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.ga-footer-col p,
.ga-footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s;
}

.ga-footer-col a:hover {
  color: var(--primary-color);
}

.ga-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.ga-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ga-social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.ga-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================
   PAGE HERO (Shared across inner pages)
========================================= */
.ga-page-hero {
  padding: 160px 5% 100px;
  background: radial-gradient(circle at center top, rgba(79, 70, 229, 0.15) 0%, var(--background-dark) 80%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.ga-page-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.ga-page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.ga-page-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================
   COURSES PAGE GRID
========================================= */
.ga-courses-page-section {
  padding: 80px 5%;
  background-color: var(--background-dark);
}

.ga-courses-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .ga-courses-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ga-course-card-premium {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ga-course-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(79, 70, 229, 0.15);
}

.ga-course-img-wrapper {
  position: relative;
  height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

/* Distinctive gradient backgrounds for courses */
.ga-course-img-wrapper.gradient-bg-1 {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

.ga-course-img-wrapper.gradient-bg-2 {
  background: linear-gradient(135deg, #991b1b 0%, #0f172a 100%);
}

.ga-course-img-wrapper.gradient-bg-3 {
  background: linear-gradient(135deg, #854d0e 0%, #0f172a 100%);
}

.ga-course-img-wrapper.gradient-bg-4 {
  background: linear-gradient(135deg, #0f766e 0%, #0f172a 100%);
}

.ga-course-img-wrapper.gradient-bg-5 {
  background: linear-gradient(135deg, #065f46 0%, #0f172a 100%);
}

.ga-course-img-wrapper.gradient-bg-6 {
  background: linear-gradient(135deg, #6b21a8 0%, #0f172a 100%);
}

.ga-course-img-wrapper.gradient-bg-7 {
  background: linear-gradient(135deg, #0369a1 0%, #0f172a 100%);
}

.ga-course-img-wrapper.gradient-bg-8 {
  background: linear-gradient(135deg, #b45309 0%, #0f172a 100%);
}

.ga-course-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.ga-course-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 1;
}

.ga-course-card-premium:hover .ga-course-img-wrapper img {
  transform: scale(1.1) rotate(-2deg);
}

.ga-course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(79, 70, 229, 0.9);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ga-course-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
  background: rgba(15, 23, 42, 0.95);
  margin-top: -30px;
  border-radius: 20px 20px 0 0;
}

.ga-course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.ga-course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ga-course-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 600;
}

.ga-course-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.ga-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.3);
  color: #a5b4fc;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.ga-btn-outline:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 8px 15px rgba(79, 70, 229, 0.3);
}

/* =========================================
   SINGLE COURSE HERO
========================================= */
.ga-single-hero {
  padding: 160px 5% 100px;
  background: linear-gradient(135deg, #0f172a 0%, var(--background-dark) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.ga-single-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.ga-single-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ga-single-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.ga-single-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================
   SINGLE COURSE LAYOUT
========================================= */
.ga-single-content-layout {
  padding: 80px 5%;
  background-color: var(--background-dark);
}

.ga-single-layout-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.ga-single-left {
  position: sticky;
  top: 100px;
}

.ga-single-featured-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.ga-single-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.ga-single-featured-image.fallback-bg {
  height: 400px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--primary-color);
  opacity: 0.8;
}

.ga-single-article {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.ga-single-article h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-light);
  font-size: 2rem;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.ga-single-article h2:first-child {
  margin-top: 0;
}

.ga-single-article p {
  margin-bottom: 20px;
  color: var(--text-muted) !important;
}

.ga-single-article span,
.ga-single-article div {
  color: var(--text-muted);
}

.ga-single-article ul {
  list-style: none;
  margin-bottom: 30px;
}

.ga-single-article ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.ga-single-article ul li i {
  color: var(--secondary-color);
  margin-top: 5px;
}

/* =========================================
   CONTACT FORM SECTION
========================================= */
.ga-course-contact {
  padding: 80px 5%;
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.ga-contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.ga-contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.ga-contact-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 15px;
}

.ga-contact-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.ga-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ga-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ga-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ga-form-group label {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.95rem;
}

.ga-form-group input,
.ga-form-group textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ga-form-group input:focus,
.ga-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.ga-btn-full {
  width: 100%;
  margin-top: 10px;
  font-size: 1.1rem;
  padding: 16px;
}

/* =========================================
   FAQ SECTION
========================================= */
.ga-course-faq {
  padding: 100px 5%;
  background-color: var(--background-dark);
}

.ga-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.ga-faq-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.ga-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ga-accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.ga-accordion-btn {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.ga-accordion-btn:hover {
  background: rgba(255, 255, 255, 0.02);
}

.ga-accordion-btn i {
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.ga-accordion-btn.active i {
  transform: rotate(180deg);
}

.ga-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.1);
}

.ga-accordion-content p {
  padding: 0 25px 25px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   TRAINERS PAGE
========================================= */
.ga-trainers-section {
  padding: 80px 5%;
  background-color: var(--background-dark);
}

.ga-trainers-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ga-trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

@media (min-width: 1024px) {
  .ga-trainers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ga-trainer-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.ga-trainer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(79, 70, 229, 0.15);
}

.ga-trainer-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.ga-trainer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ga-trainer-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.1);
}

.ga-trainer-card:hover .ga-trainer-img-wrapper img {
  transform: scale(1.05);
}

.ga-trainer-social {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
}

.ga-trainer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #0077b5;
  /* LinkedIn Blue */
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.ga-trainer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 119, 181, 0.5);
}

.ga-trainer-info {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ga-trainer-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}

.ga-trainer-details {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ga-trainer-details p {
  margin-bottom: 10px;
}

.ga-trainer-details p:last-child {
  margin-bottom: 0;
}

/* =========================================
   CONTACT US PAGE
========================================= */
.ga-contact-page-section {
  padding: 80px 5%;
  background-color: var(--background-dark);
}

.ga-contact-page-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.ga-contact-heading {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.ga-contact-subheading {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.ga-info-card-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ga-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(30, 41, 59, 0.4);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
}

.ga-info-card:hover {
  transform: translateX(5px);
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(79, 70, 229, 0.3);
}

.ga-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ga-info-details h3 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.ga-info-details p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.ga-info-details a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ga-info-details a:hover {
  color: var(--primary-color);
}

.ga-map-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color) !important;
  font-weight: 500;
  font-size: 0.95rem;
}

.ga-map-link i {
  margin-left: 5px;
  font-size: 0.85em;
}

/* Form Area specific styling */
.ga-form-wrapper {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ga-form-wrapper h3 {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.ga-no-form-notice {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.ga-no-form-notice i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  opacity: 0.7;
}

.ga-no-form-notice p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Fallback styling for external plugin forms inside .ga-form-wrapper */
.ga-form-wrapper form input[type="text"],
.ga-form-wrapper form input[type="email"],
.ga-form-wrapper form input[type="tel"],
.ga-form-wrapper form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ga-form-wrapper form input:focus,
.ga-form-wrapper form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.ga-form-wrapper form button[type="submit"],
.ga-form-wrapper form input[type="submit"] {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.ga-form-wrapper form button[type="submit"]:hover,
.ga-form-wrapper form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

/* =========================================
   COMPANIES & PLACEMENTS PAGE
========================================= */

/* Statistics Banner */
.ga-stats-section {
  padding: 60px 5%;
  background: linear-gradient(90deg, var(--background-dark) 0%, rgba(30, 41, 59, 1) 50%, var(--background-dark) 100%);
  border-bottom: 1px solid var(--border-color);
}

.ga-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .ga-stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ga-stat-box {
  padding: 20px;
  position: relative;
}

.ga-stat-box::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ga-stat-box:last-child::after,
.ga-stat-box:nth-child(2n)::after {
  display: none;
}

@media (min-width: 768px) {
  .ga-stat-box:nth-child(2n)::after {
    display: block;
  }

  .ga-stat-box:last-child::after {
    display: none;
  }
}

.ga-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #34d399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ga-stat-label {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hiring Partners section */
.ga-partners-section {
  padding: 100px 5%;
  background-color: var(--background-dark);
}

.ga-section-header.text-center {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ga-section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
}

.ga-section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

.ga-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .ga-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .ga-partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ga-partner-logo {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 140px;
}

.ga-partner-logo:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ga-partner-logo i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.ga-partner-logo:hover i {
  color: white;
}

.ga-partner-logo span {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
}

/* Testimonials Section */
.ga-testimonials-section {
  padding: 100px 5%;
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
}

.ga-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ga-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ga-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ga-testimonial-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ga-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(79, 70, 229, 0.3);
}

.ga-testimonial-quote i {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.5;
  margin-bottom: 15px;
}

.ga-testimonial-quote p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
}

.ga-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.ga-author-avatar i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.ga-author-info h4 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.ga-author-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* =========================================
   NEWS & NOTIFICATIONS (Front Page)
========================================= */
.ga-news-section {
  padding: 80px 5%;
  background: var(--background-dark);
}

.ga-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ga-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ga-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ga-news-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ga-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(79, 70, 229, 0.3);
}

.ga-news-image {
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.ga-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ga-news-card:hover .ga-news-image img {
  transform: scale(1.05);
}

.ga-news-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.ga-news-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ga-news-meta {
  display: flex;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.ga-news-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.ga-news-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.ga-news-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ga-news-title a:hover {
  color: var(--primary-color);
}

.ga-news-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ga-news-read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.ga-news-read-more:hover {
  color: var(--primary-color-hover);
}

.ga-no-news {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* =========================================
   BLOG ROLL PAGE (home.php)
========================================= */
.ga-blog-page-section {
  padding: 80px 5%;
  background: var(--background-dark);
}

.ga-blog-page-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ga-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .ga-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ga-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ga-blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ga-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(79, 70, 229, 0.4);
}

.ga-blog-image {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ga-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ga-blog-card:hover .ga-blog-image img {
  transform: scale(1.08);
}

.ga-blog-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.ga-blog-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ga-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.ga-date {
  color: var(--text-muted);
}

.ga-category a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  background: rgba(79, 70, 229, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.ga-category a:hover {
  background: rgba(79, 70, 229, 0.2);
}

.ga-blog-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.ga-blog-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ga-blog-title a:hover {
  color: var(--primary-color);
}

.ga-blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.ga-blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: auto;
}

.ga-blog-read-more {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.ga-blog-read-more:hover {
  color: var(--primary-color);
}

.ga-author {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Pagination Styling */
.ga-pagination {
  margin-top: 60px;
  text-align: center;
}

.ga-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  border-radius: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  list-style: none;
  /* if wrapped in ul/li */
}

ul.page-numbers {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

ul.page-numbers li {
  margin: 0 4px;
}

.ga-pagination .page-numbers.current,
.ga-pagination .page-numbers:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.ga-pagination .page-numbers.prev,
.ga-pagination .page-numbers.next {
  width: auto;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.05);
}

/* =========================================
   SINGLE POST LAYOUT (single.php)
========================================= */
.ga-single-post-section {
  padding: 80px 5%;
  background: var(--background-dark);
}

.ga-single-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.ga-single-article {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ga-single-header {
  padding: 50px 50px 30px;
  text-align: center;
}

.ga-single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.ga-single-category a {
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-color);
  padding: 6px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.ga-single-category a:hover {
  background: rgba(79, 70, 229, 0.2);
}

.ga-single-title {
  font-family: 'Poppins', sans-serif;
  color: white;
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0;
}

.ga-single-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.ga-single-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ga-single-content {
  padding: 50px;
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
}

.ga-single-content h1,
.ga-single-content h2,
.ga-single-content h3,
.ga-single-content h4 {
  color: white;
  font-family: 'Poppins', sans-serif;
  margin-top: 40px;
  margin-bottom: 20px;
}

.ga-single-content p {
  margin-bottom: 25px;
}

.ga-single-content a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.ga-single-content a:hover {
  border-color: var(--primary-color);
}

.ga-single-content ul,
.ga-single-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.ga-single-content li {
  margin-bottom: 10px;
}

.ga-single-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px 30px;
  margin: 40px 0;
  background: rgba(255, 255, 255, 0.02);
  font-style: italic;
  font-size: 1.2rem;
  color: white;
  border-radius: 0 10px 10px 0;
}

.ga-single-footer {
  padding: 30px 50px;
  border-top: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}

.tags-links {
  color: var(--text-muted);
}

.tags-links a {
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: 6px;
  margin-left: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tags-links a:hover {
  background: var(--primary-color);
}

/* Post Navigation (Prev/Next) */
.ga-post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}

.ga-nav-previous,
.ga-nav-next {
  flex: 1;
}

.ga-nav-next {
  text-align: right;
}

.ga-post-navigation a {
  display: block;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ga-post-navigation a:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ga-post-navigation i {
  color: var(--primary-color);
  margin: 0 8px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
  .ga-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .ga-hero-title {
    font-size: 2.8rem;
  }

  .ga-hero-content {
    margin-bottom: 40px;
  }

  .ga-single-layout-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ga-single-left {
    position: static;
  }

  .ga-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ga-header-container {
    flex-direction: column;
    gap: 15px;
  }

  .ga-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ga-hero-title {
    font-size: 2.2rem;
  }

  .ga-section-title {
    font-size: 2rem;
  }

  .ga-courses-page-grid {
    grid-template-columns: 1fr;
  }

  .ga-page-title {
    font-size: 2.2rem;
  }

  .ga-single-title {
    font-size: 2.5rem;
  }

  .ga-contact-container {
    padding: 30px;
  }
}