 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} 


/* ===============================
   FULLSTACK HERO SECTION - DESKTOP
================================== */
.section-fullstack-hero {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fullstack-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trusted-learners {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.learner-profiles {
  display: flex;
  margin-left: -10px;
}

.learner-profiles img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}

.learners-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.fullstack-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.highlight-gradient {
  background: linear-gradient(45deg, crimson, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fullstack-hero-subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.fullstack-hero-apply-btn {
  display: inline-block;
  background: linear-gradient(45deg, crimson, purple);
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.fullstack-hero-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.fullstack-hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}


/* ===============================
   FULLSTACK HERO SECTION - TABLET
================================== */
@media (max-width: 1024px) {
  .section-fullstack-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .fullstack-hero-content {
    gap: 3rem;
  }

  .fullstack-hero-title {
    font-size: 2.5rem;
  }

  .fullstack-hero-subheading {
    font-size: 1.1rem;
  }
}


/* ===============================
   FULLSTACK HERO SECTION - MOBILE
================================== */
@media (max-width: 767px) {
  .section-fullstack-hero {
    padding: 5rem 1rem 2rem;
  }

  .fullstack-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .trusted-learners {
    justify-content: center;
  }

  .fullstack-hero-title {
    font-size: 2rem;
  }

  .fullstack-hero-subheading {
    font-size: 1rem;
  }

  .fullstack-hero-apply-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}


/* ===============================
   FULLSTACK ABOUT SECTION
================================== */
.about-fullstack-section {
  padding: 80px 20px;
  background-color: #fff;
}

.fullstack-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 10px;
  font-weight: bold;
}

.fullstack-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.fullstack-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.fullstack-about-card {
  background-color: #f9f9f9;
  border: 2px solid crimson;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.fullstack-about-card:hover {
  transform: translateY(-5px);
}

.fullstack-about-icon {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 20px;
}

.fullstack-about-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.fullstack-about-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


/* Responsive: Tablet */
@media (max-width: 992px) {
  .fullstack-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fullstack-section-title {
    font-size: 2.2rem;
  }

  .fullstack-section-subtitle {
    font-size: 1rem;
  }

  .fullstack-about-card {
    padding: 25px 15px;
  }
}


/* Responsive: Mobile */
@media (max-width: 600px) {
  .fullstack-about-grid {
    grid-template-columns: 1fr;
  }

  .fullstack-section-title {
    font-size: 2rem;
    text-align: left;
  }

  .fullstack-section-subtitle {
    text-align: left;
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .fullstack-about-card {
    padding: 20px 15px;
    text-align: left;
  }

  .fullstack-about-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .fullstack-about-card h3 {
    font-size: 1.2rem;
  }

  .fullstack-about-card p {
    font-size: 0.95rem;
  }
}

/* =============================
   Section: Course Highlights Fullstack
============================= */
.section-highlights-fullstack {
  background: #fff;
  text-align: center;
  padding: 1rem 1rem 4rem;
}

.highlights-title-fullstack {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 3rem;
}

.highlights-line-fullstack {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.highlights-line-fullstack::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, crimson, #9b59b6);
  z-index: 1;
}

.highlight-item-fullstack {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

.highlight-circle-fullstack {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, crimson, #9b59b6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.highlight-text-fullstack {
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  .highlights-title-fullstack {
    font-size: 2rem;
  }

  .highlights-line-fullstack {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .highlights-line-fullstack::before {
    display: none;
  }

  .highlight-item-fullstack {
    flex: 1;
    min-width: calc(50% - 1rem);
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 767px) {
  .section-highlights-fullstack {
    padding: 1rem 1rem 3rem;
  }

  .highlights-title-fullstack {
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .highlights-line-fullstack {
    flex-direction: column;
    gap: 2rem;
  }

  .highlight-item-fullstack {
    max-width: 100%;
  }

  .highlight-circle-fullstack {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ===== Animation Styles ===== */
.scroll-reveal-fullstack {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-fullstack.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===============================
   Java & Python Full Stack Course Section
=============================== */

.fullstack-top-heading {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(45deg, crimson, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fullstack-top-subtext {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.section-fullstack-course {
  background-color: #fdfdfd;
  padding: 20px 20px 60px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.fullstack-course-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main Section Headings */
.fullstack-main-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: crimson;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}

.fullstack-main-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: crimson;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Subheadings for Each Topic */
.fullstack-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #b2002d;
  margin-top: 30px;
  margin-bottom: 10px;
  border-left: 5px solid crimson;
  padding-left: 12px;
}

/* Paragraphs */
.fullstack-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

/* Responsive Tablet */
@media (max-width: 768px) {
  .fullstack-main-heading {
    font-size: 2rem;
  }

  .fullstack-subheading {
    font-size: 1.3rem;
    padding-left: 10px;
  }

  .fullstack-course-text {
    font-size: 1rem;
    text-align: left;
  }
}

/* Responsive Mobile */
@media (max-width: 480px) {
  .section-fullstack-course {
    padding: 20px 10px;
  }

  .fullstack-main-heading {
    font-size: 1.7rem;
  }

  .fullstack-subheading {
    font-size: 1.2rem;
    padding-left: 8px;
  }

  .fullstack-course-text {
    font-size: 0.95rem;
  }
}


/* ===============================
   Fullstack Java Contents Section
=============================== */
.section-java-contents {
  background-color: #ffffff;
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.java-contents-container {
  max-width: 800px;
  margin: 0 auto;
}

.java-contents-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(to right, crimson, #b20063);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Accordion Styles */
.contents-accordion-java {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.section-java-contents {
  background-color: #ffffff;
  padding: 1rem 1rem 3rem; /* Reduced top padding from 3rem to 2rem */
  font-family: 'Poppins', sans-serif;
}


.accordion-item-java {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item-java.active {
  border-color: crimson;
  box-shadow: 0 3px 12px rgba(220, 20, 60, 0.1);
}

.accordion-header-java {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: #f9f9f9;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-item-java.active .accordion-header-java {
  background: crimson;
  color: #fff;
}

.accordion-label-java {
  font-weight: 600;
  font-size: 1rem;
}

.accordion-item-java.active .accordion-label-java {
  color: #fff;
}

.accordion-icon-java {
  transition: transform 0.3s ease;
}

.accordion-item-java.active .accordion-icon-java {
  transform: rotate(180deg);
  color: #fff;
}

.accordion-content-java {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item-java.active .accordion-content-java {
  padding: 1.5rem;
  max-height: 250px;
}

.accordion-list-java {
  list-style: none;
}

.accordion-list-java li {
  padding: 0.4rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.accordion-list-java li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: crimson;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .java-contents-title {
    font-size: 1.8rem;
  }

  .accordion-header-java {
    padding: 1rem 1.2rem;
  }

  .accordion-item-java.active .accordion-content-java {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .java-contents-container {
    padding: 0 10px;
  }

  .section-java-contents {
    padding: 2rem 1rem;
  }

  .accordion-list-java li {
    font-size: 0.95rem;
  }
}


/* ===============================
   Fullstack Java Benefits Section
=============================== */
.section-java-benefits {
  background-color: #fafafa;
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.java-benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.java-benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(to right, crimson, #b20063);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.java-benefits-subtitle {
  font-size: 1rem;
  color: #444;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.java-benefits-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.java-benefit-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 30%;
  min-width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.java-benefit-card:hover {
  transform: translateY(-5px);
}

.java-benefit-icon {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 1rem;
}

.java-benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.java-benefit-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .java-benefits-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .java-benefits-cards {
    flex-direction: column;
    align-items: center;
  }

  .java-benefit-card {
    width: 100%;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .java-benefits-container {
    padding: 0 10px;
  }

  .section-java-benefits {
    padding: 2rem 1rem;
  }

  .java-benefit-card {
    padding: 1rem;
  }

  .java-benefit-title {
    font-size: 1.1rem;
  }

  .java-benefit-text {
    font-size: 0.9rem;
  }
}

/* ===========================
   Fullstack Java Counter Section (Responsive with Gradient)
=========================== */
.section-java-counter {
  background: linear-gradient(135deg, crimson, #9b59b6);
  padding: 4rem 1rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.java-counter-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.java-counter-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.java-counter-item:hover {
  transform: scale(1.05);
}

.java-counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.java-counter-label {
  font-size: 1rem;
  color: #f0f0f0;
}

/* Responsive Fix */
@media (max-width: 480px) {
  .java-counter-number {
    font-size: 2.2rem;
  }

  .java-counter-label {
    font-size: 0.95rem;
  }

  .section-java-counter {
    padding: 3rem 1rem;
  }
}


/* java-skills */

.section-java-skills {
  padding: 4rem 1rem;
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.java-skills-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1c1c1c;
}

.java-skills-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #555;
}

.java-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.java-skill-card {
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-left: 6px solid transparent;
}

.java-skill-card:hover {
  transform: translateY(-6px);
}

.java-skill-icon {
  font-size: 1.5rem;
  color: crimson;
  margin-bottom: 0.75rem;
}

.java-skill-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.java-skill-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Circular number badge */
.java-skill-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e60023;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colored borders (like your image) */
.border-teal { border-left-color: #20c997; }
.border-blue { border-left-color: #0d6efd; }
.border-green { border-left-color: #198754; }
.border-yellow { border-left-color: #ffc107; }
.border-orange { border-left-color: #fd7e14; }
.border-red { border-left-color: #dc3545; }



/* === Fullstack Java Course Benefits Section === */
/* =========================
   Java Features Section
========================= */
.java-feature-section {
  background: #fff;
}

.java-feature-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.java-feature-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c62828;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.java-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.java-feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease forwards;
}

.java-feature-card:nth-child(1) { animation-delay: 0.2s; }
.java-feature-card:nth-child(2) { animation-delay: 0.4s; }
.java-feature-card:nth-child(3) { animation-delay: 0.6s; }

.java-feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #2e7d32;
}

.java-feature-card .material-icons {
  font-size: 3rem;
  color: #c62828;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.java-feature-card:hover .material-icons {
  transform: scale(1.2);
  color: #2e7d32;
}

.java-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.java-feature-card p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .java-feature-heading {
    font-size: 2rem;
  }

  .java-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .java-feature-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .java-feature-heading {
    font-size: 2rem;
  }

  .java-feature-grid {
    grid-template-columns: 1fr;
  }

  .java-feature-card {
    padding: 2rem 1.5rem;
  }

  .java-feature-card:active {
    transform: scale(0.97);
  }

  .java-feature-card:hover {
    transform: scale(1.03);
  }

  .java-feature-card .material-icons {
    font-size: 2.5rem;
  }
}


.section-java-hiring {
  padding: 60px 20px;
  background: linear-gradient(to right, #f3f3f3, #ffffff);
}

.java-hiring-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.java-hiring-left {
  flex: 1 1 45%;
}

.java-hiring-title {
  font-size: 2rem;
  color: #1b1b1b;
  margin-bottom: 15px;
}

.java-hiring-title .crimson {
  color: crimson;
}

.java-hiring-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.java-hiring-right {
  flex: 1 1 45%;
}

.java-hiring-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
}

.java-hiring-logos img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
  /* Removed grayscale and hover effect */
}


.java-hiring-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .java-hiring-container {
    flex-direction: column;
    text-align: center;
  }

  .java-hiring-left, .java-hiring-right {
    flex: 1 1 100%;
  }
}


/*  */
.section-java-reviews {
  padding: 3rem 1rem;
  background: linear-gradient(145deg, #f1f1f1, #ffffff);
  font-family: 'Poppins', sans-serif;
}

.java-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.java-reviews-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2b2b2b;
  font-weight: 600;
}

.java-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.java-review-box {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.java-review-box:hover {
  transform: translateY(-5px);
}

.java-review-icon {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 1rem;
}

.java-review-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.java-review-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #111;
}

.java-review-role {
  font-size: 0.95rem;
  color: #777;
}


/* ================================
   Fullstack Java Student Reviews Section
================================== */
.section-java-reviews {
  padding: 4rem 2rem;
  background: #fff;
}

.java-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.java-reviews-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.java-review-card {
  padding: 1.2rem;
  background: #f9f7ff;
  border-radius: 15px;
  border: 2px solid crimson;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.1);
}

.java-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.java-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.java-reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.java-reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.java-reviewer-course {
  font-size: 0.85rem;
  color: #666;
}

.java-review-text {
  color: #555;
  line-height: 1.6;
  font-style: italic;
  font-size: 0.95rem;
}

.java-google-rating-box {
  background: #fff;
  border: 3px solid crimson;
  border-radius: 15px;
  padding: 3rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
  height: fit-content;
}

.java-google-logo {
  height: 70px;
  margin-bottom: 2rem;
}

.java-rating-value {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
}

.java-rating-stars {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.java-rating-label {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .java-reviews-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .java-reviews-cards {
    grid-template-columns: 1fr;
  }

  .java-review-header {
    justify-content: center;
  }

  .java-google-rating-box {
    padding: 2rem 1rem;
  }
}

/* ================================
   Fullstack Java Certificate Timeline Section
================================== */
.section-java-certificate {
  background: linear-gradient(to right, #1e3a8a, crimson);
  color: #fff;
  padding: 4rem 2rem;
}

.java-certificate-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.java-certificate-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #fff;
}

.java-certificate-timeline {
  position: relative;
  counter-reset: step-counter;
}

.java-certificate-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.java-timeline-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 60px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.java-timeline-step.active {
  opacity: 1;
  transform: translateX(0);
}

.java-timeline-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  color: crimson;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.java-timeline-circle::after {
  content: counter(step-counter);
  counter-increment: step-counter;
}

.java-timeline-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  width: 100%;
}

.java-timeline-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.java-timeline-step-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.java-certificate-image-container {
  position: relative;
  max-width: 400px;
}

.java-certificate-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}

.java-certificate-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.java-certificate-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: crimson;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  min-width: 80px;
  text-align: center;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.java-certificate-badge:hover {
  transform: scale(1);
}

.java-certificate-badge .material-icons {
  font-size: 1.5rem;
}

.java-certificate-badge p {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1024px) {
  .java-certificate-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .java-certificate-title {
    font-size: 2.2rem;
  }

  .java-certificate-right {
    order: -1;
  }

  .java-timeline-step {
    padding-left: 40px;
  }

  .java-timeline-circle {
    width: 30px;
    height: 30px;
    left: 10px;
  }
}

@media (max-width: 600px) {
  .java-certificate-title {
    font-size: 2rem;
  }

  .java-certificate-right {
    display: none;
  }
}




/* footer */

.footer {
  background-color: #1c1c22;
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Fix logo spacing */
.footer-logo-img {
  width: 100px;
  margin: -25px 0; /* adds top and bottom spacing */
  margin-bottom: 3px;
}

/* Make the paragraph justified */
.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;  /* <-- this makes it align full */
}


.footer-logo-text {
  font-size: 20px;
  color: crimson;
  margin-bottom: 15px; /* increased from 10px */
}


.footer-col h3 {
  color: crimson;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: crimson;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
}
.location-link {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
}

.location-link:hover {
  color: crimson;
  text-decoration: underline;
}


.social-icons a {
  display: inline-flex;                  /* Centers icon in circle */
  align-items: center;
  justify-content: center;
  width: 36px;                           /* Fixed width */
  height: 36px;                          /* Same height = circle */
  border-radius: 50%;                   /* Makes it a circle */
  border: 1px solid crimson;
  background-color: transparent;
  color: white;
  font-size: 16px;
  margin-right: 8px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: crimson;
  color: white;
}


.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}
/* Normal-looking link */
.plain-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.plain-link:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
.footer-container {
  gap: 0px !important;
}

.footer-col {
  margin-bottom: 10px !important;
}


  .footer-col h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-col ul li {
    margin-bottom: 4px;
  }

  .footer-logo-img {
    width: 80px;
  }

  .footer-logo-text {
    font-size: 18px;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: left;
    margin-top: 20px;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll-to-Top Floating Button using ID */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

#scrollTopBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Tablet View */
@media screen and (max-width: 1024px) {
  .whatsapp-float {
    left: 12px;
    bottom: 70px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  #scrollTopBtn {
    right: 55px;
    bottom: 70px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/* Mobile View */
@media screen and (max-width: 600px) {
  .whatsapp-float {
    left: 10px;
    bottom: 80px; /* Adjust if navbar is present */
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  #scrollTopBtn {
    right: 30px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}



/* Enroll Button */
.enroll-btn {
  background-color: crimson;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background-color: darkred;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Form Container */
.form-container {
  background: #fff;
  padding: 5px 20px;         /* 🔻 Reduced padding */
  border-radius: 12px;
  width: 90%;
  max-width: 400px;           /* 🔻 Reduced width too */
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}



.form-container h2 {
  margin-bottom: 20px;
  color: crimson;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: crimson;
  cursor: pointer;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: crimson;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: crimson;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 7px;
}

.submit-btn:hover {
  background-color: darkred;
}

/* Responsive */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  .enroll-btn {
    width: 100%;
  }
}



/* Enroll Button */
.enroll-btn {
  background-color: crimson;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background-color: darkred;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Form Container */
.form-container {
  background: #fff;
  padding: 5px 20px;         /* 🔻 Reduced padding */
  border-radius: 12px;
  width: 90%;
  max-width: 400px;           /* 🔻 Reduced width too */
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}



.form-container h2 {
  margin-bottom: 20px;
  color: crimson;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: crimson;
  cursor: pointer;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: crimson;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: crimson;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 7px;
}

.submit-btn:hover {
  background-color: darkred;
}

/* Responsive */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  .enroll-btn {
    width: 100%;
  }
}