 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} 

/* ===============================
   HERO SECTION - DESKTOP STYLES
================================== */
.section-hero {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trusted-students {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.student-profiles {
  display: flex;
  margin-left: -10px;
}

.student-profiles img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}

.students-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.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;
}

.hero-subheading {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.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);
}

.hero-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}


/* ===============================
   HERO SECTION - TABLET (max-width: 1024px)
================================== */
@media (max-width: 1024px) {
  .section-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-content {
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }
}


/* ===============================
   HERO SECTION - MOBILE (max-width: 767px)
================================== */
@media (max-width: 767px) {
  .section-hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .trusted-students {
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }

  .hero-apply-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}


/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 80px 20px;
  background-color: #fff;
}

.about-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 10px;
  font-weight: bold;
}

.about-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.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;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-icon {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section .section-title {
    font-size: 2.2rem;
  }

  .about-section .section-subtitle {
    font-size: 1rem;
  }

  .about-card {
    padding: 25px 15px;
  }
}

@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-section .section-title {
    font-size: 2rem;
    text-align: left;
  }

  .about-section .section-subtitle {
    text-align: left;
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .about-card {
    padding: 20px 15px;
    text-align: left;
  }

  .about-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .about-card h3 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }
}


/* =============================
   Section: Course Highlights Java Testing
============================= */
.section-highlights-testing {
  background: #fff;
  text-align: center;
  padding: 1rem 1rem 4rem;
}

.highlights-title-testing {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 3rem;
}

.highlights-line-testing {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.highlights-line-testing::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, crimson, #9b59b6);
  z-index: 1;
}

.highlight-item-testing {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

.highlight-circle-testing {
  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-testing {
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  padding: 0 0.5rem;
}

@media (max-width: 1024px) {
  .highlights-title-testing {
    font-size: 2rem;
  }

  .highlights-line-testing {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .highlights-line-testing::before {
    display: none;
  }

  .highlight-item-testing {
    flex: 1;
    min-width: calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .section-highlights-testing {
    padding: 1rem 1rem 3rem;
  }

  .highlights-title-testing {
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .highlights-line-testing {
    flex-direction: column;
    gap: 2rem;
  }

  .highlight-item-testing {
    max-width: 100%;
  }

  .highlight-circle-testing {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}


/* ===== Animation Styles ===== */
.scroll-reveal-testing {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-testing.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===============================
   JAVA Testing with Selenium Course Section
=============================== */

.section-java-test-course {
  background-color: #fdfdfd;
  padding: 20px 20px 60px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.java-test-course-container {
  max-width: 1000px;
  margin: 0 auto;
}

.java-test-top-heading {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(crimson);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.java-test-top-subtext {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Main Section Headings */
.java-test-main-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: crimson;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}

.java-test-main-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: crimson;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Subheadings for Each Topic */
.java-test-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  color: crimson;
  margin-top: 30px;
  margin-bottom: 10px;
  border-left: 5px solid crimson;
  padding-left: 12px;
}

/* Paragraphs */
.java-test-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

/* Responsive Tablet */
@media (max-width: 768px) {
  .java-test-main-heading {
    font-size: 2rem;
  }

  .java-test-subheading {
    font-size: 1.3rem;
    padding-left: 10px;
  }

  .java-test-course-text {
    font-size: 1rem;
    text-align: left;
  }
}

/* Responsive Mobile */
@media (max-width: 480px) {
  .section-java-test-course {
    padding: 20px 10px;
  }

  .java-test-main-heading {
    font-size: 1.7rem;
  }

  .java-test-subheading {
    font-size: 1.2rem;
    padding-left: 8px;
  }

  .java-test-course-text {
    font-size: 0.95rem;
  }
}

/* Java Testing with Selenium Course Section (same styling as MERN) */

.section-mern-contents {
  background-color: #f8f9fc;
  padding: 80px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mern-contents-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.mern-contents-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(to right, #e91e63, #673ab7); /* original gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.contents-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  background-color: #ffffff;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-label {
  color: #444;
}

.accordion-label.orange {
  color: #f57c00;
}

.accordion-icon {
  font-size: 24px;
  color: #e91e63;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #fdfdfd;
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  padding: 20px 24px;
  max-height: 500px; /* adjust as needed */
}

.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 16px;
  color: #333;
}

.accordion-list li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .mern-contents-title {
    font-size: 26px;
  }

  .accordion-header {
    font-size: 16px;
  }

  .accordion-list li {
    font-size: 15px;
  }
}


/* ===============================
   Java Testing 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;
  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;
}

.benefits-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.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;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ===============================
   Responsive Design for Java Benefits
=============================== */
@media (max-width: 768px) {
  .java-benefits-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .benefits-cards {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card {
    width: 100%;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .java-benefits-container {
    padding: 0 10px;
  }

  .section-java-benefits {
    padding: 2rem 1rem;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-title {
    font-size: 1.1rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }
}

/* =========================
   Java Counter Section
========================= */
.java-counter-section {
  background: linear-gradient(135deg, crimson 0%, #9b59b6 100%);
  color: #fff;
  padding: 3rem 2rem;
}

.java-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.java-counter-box {
  text-align: center;
  flex: 1;
}

.java-counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.java-counter-box p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.java-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 2rem;
}

@media (max-width: 767px) {
  .java-container {
    flex-direction: column;
    gap: 2rem;
  }

  .java-divider {
    width: 60px;
    height: 2px;
    margin: 0;
  }

  .java-counter {
    font-size: 2rem;
  }
}

/* =========================
   Java Core Skills Section
========================= */
.section-java-skills {
  background: #f8f9fa;
  text-align: center;
}

.java-skills-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 1rem;
}

.java-skills-subtitle {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 3rem;
}

.java-skills-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.java-skill-box {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid;
}

.java-skill-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.java-skill-box.teal { border-left-color: #1abc9c; }
.java-skill-box.blue { border-left-color: #3498db; }
.java-skill-box.green { border-left-color: #2ecc71; }
.java-skill-box.yellow { border-left-color: #f1c40f; }
.java-skill-box.orange { border-left-color: #e67e22; }
.java-skill-box.red { border-left-color: #e74c3c; }

.java-skill-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.java-skill-content h3 i {
  margin-right: 0.5rem;
  color: crimson;
}

.java-skill-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.java-step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: crimson;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .java-skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .java-skills-title {
    font-size: 2rem;
  }

  .java-skills-container {
    grid-template-columns: 1fr;
  }

  .java-skill-box {
    padding: 1.5rem;
  }
}


/* ================================
   Java Testing Hiring Partners Section
================================= */

.section-selenium-hiring {
  background: #f0f9ff;
  padding: 4rem 2rem;
}

.selenium-hiring-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.selenium-hiring-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.selenium-hiring-title .crimson {
  color: crimson;
}

.selenium-hiring-description {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.selenium-hiring-btn {
  display: inline-block;
  background: crimson;
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.selenium-hiring-btn:hover {
  background: #b3002d;
  transform: translateY(-3px);
}

.selenium-logo-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.company-selenium-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 0.5rem;
  border: 2px solid crimson;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.company-selenium-logo:hover {
  transform: scale(1.1);
}

.more-companies-selenium {
  grid-column: span 2;
  text-align: center;
  color: #555;
  font-weight: 600;
  background: #fff;
  font-size: 0.9rem;
  padding: 1rem;
  border-radius: 6px;
  border: 2px solid crimson;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .selenium-hiring-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .selenium-logo-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

  .selenium-hiring-left {
    order: 2;
  }
}

@media (max-width: 480px) {
  .selenium-logo-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .selenium-hiring-title {
    font-size: 2rem;
  }

  .selenium-hiring-description {
    font-size: 1rem;
  }

  .company-selenium-logo {
    width: 70px;
    height: 50px;
  }
}


/* ================================
   Selenium Student Reviews Section
================================== */

.section-selenium-reviews {
  padding: 4rem 2rem;
  background: #fff;
}

.selenium-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.selenium-reviews-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.selenium-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);
}

.selenium-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.selenium-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.selenium-reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.selenium-reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.selenium-reviewer-course {
  font-size: 0.85rem;
  color: #666;
}

.selenium-review-text {
  color: #555;
  line-height: 1.6;
  font-style: italic;
  font-size: 0.95rem;
}

.selenium-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;
}

.selenium-google-logo {
  height: 70px;
  margin-bottom: 2rem;
}

.selenium-rating-value {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
}

.selenium-rating-stars {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.selenium-rating-label {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .selenium-reviews-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .selenium-reviews-cards {
    grid-template-columns: 1fr;
  }

  .selenium-review-header {
    justify-content: center;
  }

  .selenium-google-rating-box {
    padding: 2rem 1rem;
  }
}


/* ==========================================
   Java Testing with Selenium Certificate Timeline
========================================== */

.section-selenium-certificate {
  background: linear-gradient(to right, #1e3a8a, crimson);
  color: #fff;
  padding: 4rem 2rem;
}

.selenium-certificate-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.selenium-certificate-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #fff;
}

.selenium-certificate-timeline {
  position: relative;
  counter-reset: step-counter;
}

.selenium-certificate-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.selenium-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;
}

.selenium-timeline-step.active {
  opacity: 1;
  transform: translateX(0);
}

.selenium-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;
}

.selenium-timeline-circle::after {
  content: counter(step-counter);
  counter-increment: step-counter;
}

.selenium-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%;
}

.selenium-timeline-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.selenium-timeline-step-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.selenium-certificate-image-container {
  position: relative;
  max-width: 400px;
}

.selenium-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;
}

.selenium-certificate-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.selenium-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;
}

.selenium-certificate-badge:hover {
  transform: scale(1);
}

.selenium-certificate-badge .material-icons {
  font-size: 1.5rem;
}

.selenium-certificate-badge p {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1024px) {
  .selenium-certificate-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .selenium-certificate-title {
    font-size: 2.2rem;
  }

  .selenium-certificate-right {
    order: -1;
  }

  .selenium-timeline-step {
    padding-left: 40px;
  }

  .selenium-timeline-circle {
    width: 30px;
    height: 30px;
    left: 10px;
  }
}

@media (max-width: 600px) {
  .selenium-certificate-title {
    font-size: 2rem;
  }

  .selenium-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 with Font Icon */

.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: 30px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 15px;
    left: 15px;
  }
}


/* Scroll to Top Button Bottom Right */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 24px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#scrollTopBtn:hover {
  background-color: #0056b3;
}




/* 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%;
  }
}