/* ===== COMPLETE CSS FILE ===== */
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: inherit;
}

    body {
      font-family: 'Poppins', sans-serif;
      /* margin: 20px; */
    }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove gaps between sections */
section {
  margin: 0;
  padding: 4rem 0;
}

/* Ensure consistent container widths */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
/*Responsive for Global Styles */
@media (max-width: 1024px) {
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}




/* ===============================
   HERO SECTION ARTS - DESKTOP
================================== */
.section-hero-arts {
  padding: 4rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-arts {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Text Side */
.trusted-learners-arts {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.learner-profiles-arts {
  display: flex;
  margin-left: -10px;
}

.learner-profiles-arts img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}

.learners-text-arts {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.hero-title-arts {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.highlight-gradient-arts {
  background: linear-gradient(45deg, crimson, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading-arts {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-apply-btn-arts {
  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-arts:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Right Image Side */
.hero-image-arts {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-radius: 20px;
}

.hero-image-arts img {
  max-width: 100%;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
  border: 3px solid crimson;
}

/* ===============================
   TABLET (Max-width: 1024px)
================================== */
@media (max-width: 1024px) {
  .section-hero-arts {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-content-arts {
    gap: 3rem;
  }

  .hero-title-arts {
    font-size: 2.5rem;
  }

  .hero-subheading-arts {
    font-size: 1.1rem;
  }

  .hero-image-arts img {
    max-height: 350px;
  }
}

/* ===============================
   MOBILE (Max-width: 767px)
================================== */
@media (max-width: 767px) {
  .section-hero-arts {
    padding: 4rem 1rem 2rem;
  }

  .hero-content-arts {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .trusted-learners-arts {
    justify-content: center;
  }

  .hero-title-arts {
    font-size: 2rem;
  }

  .hero-subheading-arts {
    font-size: 1rem;
  }

  .hero-apply-btn-arts {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .hero-image-arts {
    padding: 1rem;
    border-radius: 15px;
  }

  .hero-image-arts img {
    max-width: 350px;
  }
}

















/* ========== About Section: Arts Software ========== */
.about-section-arts {
  padding: 80px 20px;
  background-color: #fff;
}

.section-title-arts {
  text-align: center;
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-subtitle-arts {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout for cards */
.about-grid-arts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card-arts {
  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-arts:hover {
  transform: translateY(-5px);
}

.about-icon-arts {
  font-size: 2.5rem;
  color: crimson;
  margin-bottom: 20px;
}

.about-card-arts h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.about-card-arts p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .about-grid-arts {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title-arts {
    font-size: 2.2rem;
  }

  .section-subtitle-arts {
    font-size: 1rem;
  }

  .about-card-arts {
    padding: 25px 15px;
  }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .about-grid-arts {
    grid-template-columns: 1fr;
  }

  .section-title-arts {
    font-size: 2rem;
    text-align: left;
  }

  .section-subtitle-arts {
    text-align: left;
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .about-card-arts {
    padding: 20px 15px;
    text-align: left;
  }

  .about-icon-arts {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .about-card-arts h3 {
    font-size: 1.2rem;
  }

  .about-card-arts p {
    font-size: 0.95rem;
  }
}

/* =============================
   Section: Course Highlights Arts
============================= */
.section-highlights-arts {
  background: #fff;
  text-align: center;
  padding: 1rem 1rem 4rem; /* 🔻 Reduced top padding */
}

.highlights-title-arts {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 3rem;
}

.highlights-line-arts {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.highlights-line-arts::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, crimson, #9b59b6);
  z-index: 1;
}

.highlight-item-arts {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

.highlight-circle-arts {
  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-arts {
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* ===== Responsive: Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .highlights-title-arts {
    font-size: 2rem;
  }

  .highlights-line-arts {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .highlights-line-arts::before {
    display: none;
  }

  .highlight-item-arts {
    flex: 1;
    min-width: calc(50% - 1rem);
  }
}

/* ===== Responsive: Mobile (max-width: 767px) ===== */
@media (max-width: 767px) {
  .section-highlights-arts {
    padding: 1rem 1rem 3rem; /* Top padding reduced from 4rem → 1rem */
  }

  .highlights-title-arts {
    margin-top: 0;        /* Remove any margin on top */
    margin-bottom: 2rem;  /* Keep bottom margin for spacing */
  }


  .highlights-line-arts {
    flex-direction: column;
    gap: 2rem;
  }

  .highlight-item-arts {
    max-width: 100%;
  }

  .highlight-circle-arts {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ===== Animation Styles ===== */
.scroll-reveal-arts {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-arts.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===============================
   MS Office Course Section
=============================== */
.section-msoffice-course {
  background-color: #fdfdfd;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.msoffice-course-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading */
.msoffice-course-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 40px;
  text-align: center;
}

/* Subheadings for Each Tool */
.msoffice-subheading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b2002d;
  margin-top: 40px;
  margin-bottom: 10px;
  border-left: 5px solid crimson;
  padding-left: 12px;
}

/* Paragraphs */
.msoffice-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

/* Dual Images (Shared Course Image Style) */
.dual-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.course-img {
  width: 45%;
  max-width: 360px;
  border-radius: 50%;
  border: 4px dashed crimson;
  padding: 5px;
  box-shadow: 0 4px 18px rgba(220, 20, 60, 0.3);
  transition: transform 0.3s ease;
}

.course-img:hover {
  transform: scale(1.05);
}

/* Tablet View */
@media (max-width: 768px) {
  .msoffice-course-heading {
    font-size: 2.2rem;
  }

  .msoffice-subheading {
    font-size: 1.4rem;
    padding-left: 10px;
    margin-top: 30px;
  }

  .msoffice-course-text {
    font-size: 1rem;
    text-align: left;
  }

  .dual-images {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .course-img {
    width: 80%;
    border-radius: 30px;
  }
}
/* Mobile View */
@media (max-width: 480px) {
  .section-msoffice-course {
    padding-top: 20px; /* Reduced from default 60px to 20px */
  }

  .msoffice-course-heading {
    font-size: 1.8rem;
    padding: 0 1rem 1.5rem; /* Removed top padding, adjusted bottom */
  }

  .msoffice-subheading {
    font-size: 1.3rem;
    padding-left: 8px;
  }

  .msoffice-course-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .msoffice-course-container {
    padding: 0 10px;
  }

  .course-img {
    width: 90%;
    max-width: 100%;
    border-radius: 20px;
  }
}


/* ===============================
   Tally Course Section
=============================== */
.section-tally-course {
  background-color: #fffefc;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.tally-course-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Section Heading */
.tally-course-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 40px;
  text-align: center;
}

/* Subheadings for Concepts */
.tally-subheading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b2002d;
  margin-top: 40px;
  margin-bottom: 10px;
  border-left: 5px solid crimson;
  padding-left: 12px;
}

/* Text Paragraphs */
.tally-course-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

/* Image Styling */
.dual-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.course-img {
  width: 45%;
  max-width: 360px;
  border-radius: 50%;
  border: 4px dashed crimson;
  padding: 5px;
  box-shadow: 0 4px 18px rgba(220, 20, 60, 0.3);
  transition: transform 0.3s ease;
}

.course-img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 768px) {
  .tally-course-heading {
    font-size: 2.2rem;
  }

  .tally-subheading {
    font-size: 1.4rem;
    padding-left: 10px;
    margin-top: 30px;
  }

  .tally-course-text {
    font-size: 1rem;
    text-align: left;
  }

  .dual-images {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .course-img {
    width: 80%;
    border-radius: 30px;
  }
}

/* Mobile */
/* Mobile */
@media (max-width: 480px) {
  .section-tally-course {
    padding-top: 10px; /* ↓ Reduce from 60px to 20px */
  }

  .tally-course-heading {
    font-size: 1.8rem;
    padding: 0 1rem 1.5rem; /* Remove top padding if not needed */
  }

  .tally-subheading {
    font-size: 1.3rem;
    padding-left: 8px;
  }

  .tally-course-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .tally-course-container {
    padding: 0 10px;
  }

  .course-img {
    width: 90%;
    max-width: 100%;
    border-radius: 20px;
  }
}

/* ection-office-tally-contents */
.section-office-tally-contents {
  background: #fff;
  padding: 1rem 1rem;
}

.office-tally-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.accordion-column {
  flex: 1 1 45%;
  min-width: 300px;
  background: #fdfdfd;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contents-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 1rem;
  text-align: center;
}

.contents-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: crimson;
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.1);
}

.accordion-header {
  background: #f8f9fa;
  padding: 0.8rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item.active .accordion-header {
  background: crimson;
  color: #fff;
}

.accordion-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #fff;
}

.accordion-content {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1rem;
  max-height: 300px;
}

.accordion-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.accordion-list li {
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.95rem;
  color: #444;
}

.accordion-list li::before {
  content: "✓";
  color: crimson;
  position: absolute;
  left: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .office-tally-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contents-title {
    font-size: 1.5rem;
    text-align: left;
  }
}

/* ========== MS Office Benefits ========== */

.section-msoffice-benefits {
  background: #f9f9f9;
  padding: 2rem 1rem;
}

.msoffice-benefits-container {
  max-width: 1000px;
  margin: 0 auto;
}

.msoffice-benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: crimson;
  text-align: center;
  margin-bottom: 2rem;
}

.msoffice-benefits-subtitle {
  font-size: 1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.msoffice-benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.msoffice-benefit-card {
  background: #fff;
  padding: 1.8rem 1.2rem;
  border-radius: 10px;
  border: 1px solid crimson;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.msoffice-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.msoffice-benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: crimson;
}

.msoffice-benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #333;
}

.msoffice-benefit-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ===== Counter Section ===== */

.msoffice-counter-section {
  background: linear-gradient(135deg, crimson 0%, #9b59b6 100%);
  color: #fff;
  padding: 3rem 1rem;
}

.msoffice-counter-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.msoffice-counter-box {
  text-align: center;
  flex: 1;
  min-width: 220px;
}

.msoffice-counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.msoffice-counter-box p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.msoffice-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 2rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .msoffice-counter {
    font-size: 2.5rem;
  }

  .msoffice-counter-section {
    padding: 2.5rem 1rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .msoffice-counter-section {
    padding: 2rem 1rem;
  }

  .msoffice-counter-container {
    flex-direction: column;
    gap: 1rem;
  }

  .msoffice-counter {
    font-size: 1.8rem;
  }

  .msoffice-divider {
    width: 40px;
    height: 1px;
  }

  .msoffice-counter-box p {
    font-size: 0.95rem;
  }
}

/* ===== Core Competencies - Arts Software (MS Office, Tally) ===== */

.section-arts-competency {
  background: #f8f9fa;
  text-align: center;
  padding: 4rem 1rem;
}

.arts-competency-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: crimson;
  margin-bottom: 1rem;
}

.arts-competency-subtitle {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 3rem;
}

.arts-competency-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.arts-competency-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;
}

.arts-competency-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.arts-competency-box.red { border-left-color: #dc143c; }
.arts-competency-box.blue { border-left-color: #007bff; }
.arts-competency-box.green { border-left-color: #28a745; }
.arts-competency-box.orange { border-left-color: #fd7e14; }
.arts-competency-box.teal { border-left-color: #20c997; }
.arts-competency-box.purple { border-left-color: #6f42c1; }

.arts-competency-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.arts-competency-content h3 i {
  margin-right: 0.5rem;
  color: crimson;
}

.arts-competency-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.arts-competency-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;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .arts-competency-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .arts-competency-title {
    font-size: 2rem;
  }

  .arts-competency-container {
    grid-template-columns: 1fr;
  }

  .arts-competency-box {
    padding: 1.5rem;
  }
}

/* ===== Our Arts Center Advantages - MS Office, Tally ===== */

.arts-feature-section {
  background: crimson;
  padding: 4rem 1rem;
  color: #fff;
}

.arts-feature-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.arts-feature-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.arts-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.arts-feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  color: #fff;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease forwards;
}

.arts-feature-card:nth-child(1) { animation-delay: 0.2s; }
.arts-feature-card:nth-child(2) { animation-delay: 0.4s; }
.arts-feature-card:nth-child(3) { animation-delay: 0.6s; }

.arts-feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: gold;
}

.arts-feature-card .material-icons {
  font-size: 3rem;
  color: gold;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.arts-feature-card:hover .material-icons {
  transform: scale(1.2);
  color: #fff;
}

.arts-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.arts-feature-card p {
  color: #f2f2f2;
  line-height: 1.6;
}

/* ===== Tablet View ===== */
@media (max-width: 1024px) {
  .arts-feature-heading {
    font-size: 2rem;
  }

  .arts-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .arts-feature-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 767px) {
  .arts-feature-grid {
    grid-template-columns: 1fr;
  }

  .arts-feature-card {
    padding: 2rem 1.5rem;
  }

  .arts-feature-card:active {
    transform: scale(0.97);
  }

  .arts-feature-card:hover {
    transform: scale(1.03);
  }

  .arts-feature-card .material-icons {
    font-size: 2.5rem;
  }
}

/* ================================
   Our Prestigious Recruiters - Arts
================================ */

.section-arts-hiring {
  background: #fff5f5;
  padding: 4rem 2rem;
}

.arts-hiring-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.arts-hiring-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.arts-hiring-title .crimson {
  color: crimson;
}

.arts-hiring-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.arts-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);
  border: 2px solid transparent;
}

.arts-hiring-btn:hover {
  transform: translateY(-3px);
  background: #b3002d;
  border-color: #fff;
}

.arts-logo-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.arts-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  padding: 0.5rem;
  border: 2px solid crimson;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.arts-logo:hover {
  transform: scale(1.1);
  border-color: #b3002d;
}

.arts-more-companies {
  grid-column: span 2;
  text-align: center;
  color: #555;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  border: 2px solid crimson;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Layouts */
@media (max-width: 768px) {
  .arts-hiring-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .arts-logo-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

  .arts-hiring-left {
    order: 2;
  }
}

@media (max-width: 480px) {
  .arts-logo-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .arts-hiring-title {
    font-size: 2rem;
  }

  .arts-hiring-description {
    font-size: 1rem;
  }

  .arts-logo {
    width: 70px;
    height: 50px;
  }
}

/* ================================
   Reviews Section for Arts Software
================================== */

.section-reviews {
  padding: 4rem 2rem;
  background: #fff;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.review-card {
  padding: 1.2rem;
  background: #fef7f8;
  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);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.reviewer-course {
  font-size: 0.85rem;
  color: #666;
}

.review-text {
  color: #555;
  line-height: 1.6;
  font-style: italic;
  font-size: 0.95rem;
}

.google-rating-box {
  background: #fff;
  border: 3px solid crimson;
  border-radius: 15px;
  padding: 3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
  transition: all 0.3s ease;
  height: fit-content;
  width: 100%;
  margin: auto;
}

.google-rating-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
}

.google-logo {
  height: 70px;
  margin-bottom: 2rem;
}

.rating-value {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.rating-stars {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.rating-label {
  color: #666;
  font-weight: 500;
  font-size: 1rem;
}

/* Responsive Layouts */
@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reviews-cards {
    grid-template-columns: 1fr;
  }

  .review-header {
    justify-content: center;
  }

  .google-rating-box {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .rating-value {
    font-size: 2.2rem;
  }

  .rating-stars {
    font-size: 1.5rem;
  }

  .rating-label {
    font-size: 0.9rem;
  }
}

/* ===== Certificate Timeline Section - Arts Software ===== */
.section-arts-certificate {
 background: linear-gradient(to right, #6a11cb 0%, crimson 100%);
  color: #fff;
  padding: 4rem 2rem;
}

.arts-certificate-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.arts-certificate-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.arts-certificate-timeline {
  position: relative;
  counter-reset: step-counter;
}

.arts-certificate-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.arts-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;
}

.arts-timeline-step.active {
  opacity: 1;
  transform: translateX(0);
}

.arts-timeline-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: #dc143c;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arts-timeline-circle::after {
  content: counter(step-counter);
  counter-increment: step-counter;
}

.arts-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%;
}

.arts-timeline-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.arts-timeline-step-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

/* Certificate Image Section */
.arts-certificate-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arts-certificate-image-container {
  position: relative;
  max-width: 400px;
}

.arts-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;
}

.arts-certificate-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.arts-certificate-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #dc143c;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 80px;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.arts-certificate-badge:hover {
  transform: scale(1);
}

.arts-certificate-badge .material-icons {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.arts-certificate-badge p {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .arts-certificate-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .arts-certificate-title {
    text-align: center;
    font-size: 2.2rem;
  }

  .arts-certificate-right {
    order: -1;
  }

  .arts-certificate-image-container {
    max-width: 350px;
    margin: 0 auto;
  }

  .arts-timeline-step {
    padding-left: 40px;
  }

  .arts-timeline-circle {
    width: 30px;
    height: 30px;
    left: 10px;
  }
}

@media (max-width: 600px) {
  .arts-certificate-title {
    font-size: 2rem;
  }

  .arts-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%;
  }
}