/* ==========================================================================
   RIA Institute of Technology - Custom Premium UI Stylesheet
   ========================================================================== */

/* 1. Global Layouts & Variables */
:root {
  --whatsapp-color: #25D366;
  --call-color: #007bff;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --premium-gradient: linear-gradient(135deg, #179BD7 0%, #0c6a96 100%);
  --success-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --shadow-premium: 0 15px 30px rgba(23, 155, 215, 0.12);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* 2. Global Floating CTAs */
.global-floating-ctas {
  position: fixed;
  left: 25px;
  bottom: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 26px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.whatsapp-float {
  background: var(--success-gradient);
}

.call-float {
  background: var(--premium-gradient);
}

/* Pulse animation ring */
.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
  pointer-events: none;
}

.whatsapp-float .pulse-ring {
  border: 3px solid #25D366;
}

.call-float .pulse-ring {
  border: 3px solid #179BD7;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* 3. Mobile Sticky Bottom CTA Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-cta .cta-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 16px;
  gap: 8px;
  transition: all 0.2s ease;
}

.mobile-sticky-cta .cta-item i {
  font-size: 18px;
}

.mobile-sticky-cta .call-cta {
  background: var(--premium-gradient);
}

.mobile-sticky-cta .whatsapp-cta {
  background: var(--success-gradient);
}

/* Adjust page bottom padding for mobile sticky bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }

  .to-top {
    bottom: 75px !important;
  }
}

/* 4. Glassmorphism & Premium Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(23, 155, 215, 0.1);
  border-color: rgba(23, 155, 215, 0.25);
}

/* Premium Shadows & Gradients */
.premium-shadow {
  box-shadow: var(--shadow-premium);
}

.text-gradient {
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 5. Breadcrumbs Section */
.custom-breadcrumb-section {
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.custom-breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.82);
  z-index: -1;
}

.custom-breadcrumb-section .breadcrumb-content {
  text-align: center;
  color: #fff;
}

.custom-breadcrumb-section h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 15px;
}

.custom-breadcrumb-section ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.custom-breadcrumb-section ul li,
.custom-breadcrumb-section ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.custom-breadcrumb-section ul li a:hover {
  color: var(--color-primary);
}

.custom-breadcrumb-section ul li.active {
  color: var(--color-primary);
}

/* 6. Course Listing Search & Filters */
.filter-wrapper {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
}

.search-bar-inline {
  position: relative;
  margin-bottom: 20px;
}

.search-bar-inline input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.search-bar-inline input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(23, 155, 215, 0.15);
}

.search-bar-inline .search-btn-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 18px;
  color: var(--color-primary);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* 7. Course Details Sticky Sidebar Form */
.sticky-sidebar-box {
  position: sticky;
  top: 20px;
  z-index: 10;
}

.enroll-now-form-card {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-top: 5px solid var(--color-primary);
}

.enroll-now-form-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.form-group-custom {
  margin-bottom: 18px;
}

.form-group-custom label {
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 6px;
  display: block;
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
  transition: all 0.3s ease;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(23, 155, 215, 0.1);
}

/* 8. Modern Styled FAQ Accordion */
.custom-faq-wrapper {
  margin-top: 30px;
}

.custom-faq-item {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-faq-item.active {
  box-shadow: 0 8px 20px rgba(23, 155, 215, 0.06);
  border-color: var(--color-primary);
}

.custom-faq-header {
  padding: 18px 24px;
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: #fdfdfd;
  transition: all 0.2s ease;
}

.custom-faq-header:hover {
  background: var(--color-white2);
  color: var(--color-primary);
}

.custom-faq-header .faq-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.custom-faq-item.active .custom-faq-header .faq-icon {
  transform: rotate(180deg);
}

.custom-faq-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  color: var(--color-paragraph);
  font-size: 15px;
  line-height: 25px;
}

.custom-faq-item.active .custom-faq-body {
  padding: 18px 24px;
  max-height: 1050px;
  border-top: 1px solid var(--color-border);
}

/* 9. Success Story Cards */
.success-story-card {
  padding: 30px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
  border-left: 4px solid var(--color-primary);
}

.success-story-card .journey-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.success-story-card .journey-step {
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 6px;
  flex: 1;
  min-width: 140px;
}

.success-story-card .journey-arrow {
  color: var(--color-primary);
  font-size: 20px;
}

.success-story-card .journey-step .label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-black2);
}

.success-story-card .journey-step .label.after {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.success-story-card .journey-step .value {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-secondary);
}

.success-story-card .journey-step .small.text-after {
  color: var(--whatsapp-color);
}

/* 10. Star Rating Utility */
.star-rating-custom {
  color: #FFC107;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

/* 11. Custom Spacing & Grid Utilities System */
.section-padding-lg {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

.card-padding {
  padding: 30px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.container-custom {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.grid-layout-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-layout-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-layout-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* 12. Modern UI & Reusable Component Classes */
.card-style {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}

.card-style:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(23, 155, 215, 0.1);
  border-color: rgba(23, 155, 215, 0.2);
}

.btn-primary-custom {
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.32px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 14px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.4s ease;
  border: none;
}

.btn-primary-custom:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.32px;
  color: var(--color-white);
  background: var(--color-black);
  padding: 14px 24px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.4s ease;
  border: none;
}

.btn-secondary-custom:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Typography styles to avoid inline configs */
.font-size-36 {
  font-size: 36px !important;
}

.line-height-1 {
  line-height: 1 !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.line-height-28 {
  line-height: 28px !important;
}

.font-size-45 {
  font-size: 45px !important;
}

.line-height-26 {
  line-height: 26px !important;
}

.font-size-38 {
  font-size: 38px !important;
}

.opacity-90 {
  opacity: 0.90 !important;
}

.min-width-140 {
  min-width: 140px !important;
}

.border-radius-12 {
  border-radius: 12px !important;
}

.max-width-80 {
  max-width: 80px !important;
}

.max-width-70 {
  max-width: 70px !important;
}

.height-400 {
  max-height: 400px !important;
  object-fit: cover;
}

.height-200 {
  height: 200px !important;
  object-fit: cover;
}

.height-150 {
  height: 150px !important;
  object-fit: cover;
}

.max-height-55 {
  max-height: 55px !important;
}

.max-height-50 {
  max-height: 50px !important;
}

.width-259 {
  width: 259px !important;
}

.logo-img-header {
  max-height: 55px;
}

/* Table structures */
.blog-details-table {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.newsletter-input-custom {
  border: none;
  background: transparent;
  width: 80%;
  padding-left: 5px;
  color: var(--color-white);
}

.about-content {
  font-size: 16px;
  line-height: 28px;
}

.experience-badge {
  min-width: 140px;
  border-radius: 12px;
}

.experience-number {
  font-size: 36px;
  line-height: 1;
}

.icon-xl {
  font-size: 45px;
}

.icon-lg {
  font-size: 36px;
}

.section-bg-light {
  background: #f8f9fa;
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.px-lg-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.card-premium {
  padding: 30px;
  border: none;
  border-radius: 15px;
  height: 100%;
}

.card-premium-lg {
  padding: 50px;
  border: none;
  border-radius: 15px;
  height: 100%;
}

.text-center-card {
  text-align: center;
}

.shadow-premium {
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.radius-12 {
  border-radius: 12px;
}

.radius-15 {
  border-radius: 15px;
}

.img-cover {
  width: 100%;
  height: auto;
  display: block;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.line-height-26 {
  line-height: 26px;
}

.line-height-28 {
  line-height: 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.blog-meta .badge {
  border-radius: 30px;
  padding: 8px 16px;
}

.meta-item {
  font-size: 14px;
  color: #6c757d;
}

/* 13. Responsive Audit Media Queries */
@media (max-width: 1199px) {
  .grid-layout-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .section-padding-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .grid-layout-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-layout-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid-layout-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .section-padding-lg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-padding-sm {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-layout-3,
  .grid-layout-4 {
    grid-template-columns: 1fr;
  }

  .card-padding {
    padding: 20px;
  }

  .glass-card span.small {
    font-size: 0.675em !important;
  }
}

/*==================================================
Premium Course Hero
==================================================*/

.course-hero-section {

  position: relative;

  padding: 120px 0 80px;

  background:
    linear-gradient(135deg,
      #081C3A 0%,
      #103B73 60%,
      #1859A8 100%);

  overflow: hidden;

}

.hero-overlay {

  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(255, 255, 255, .12),
      transparent 45%);

}

.course-breadcrumb {

  background: none;

  padding: 0;

}

.course-breadcrumb li,
.course-breadcrumb a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 15px;
}

.course-breadcrumb li::before {
  color: rgba(255, 255, 255, .85) !important;
}

.course-breadcrumb .active {

  color: #fff;

}

.course-branch-tag {

  display: inline-flex;

  align-items: center;

  padding: 8px 20px;

  border-radius: 40px;

  background: rgba(255, 255, 255, .12);

  color: #fff;

  font-weight: 600;

  backdrop-filter: blur(15px);

}

.course-hero-title {

  font-size: 56px;

  font-weight: 700;

  color: #fff;

  line-height: 1.2;

}

.course-hero-description {

  color: rgba(255, 255, 255, .85);

  font-size: 17px;

  line-height: 30px;

}

.course-hero-description p {

  color: inherit;

}

.hero-glass-card {

  height: 100%;

  min-height: 110px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  padding: 24px;

  border-radius: 18px;

  background: rgba(255, 255, 255, .12);

  border: 1px solid rgba(255, 255, 255, .18);

  backdrop-filter: blur(18px);

  transition: .3s ease;

}

.hero-glass-card:hover {

  transform: translateY(-5px);

  background: rgba(255, 255, 255, .18);

}

.hero-glass-card small {

  color: #d8d8d8;

  font-size: 14px;

  font-weight: 500;

  margin-bottom: 12px;

}

.hero-glass-card h6 {

  color: #fff;

  font-size: 20px;

  font-weight: 700;

  margin: 0;

  line-height: 1.4;

}

@media (max-width:991px) {

  .course-hero-section {

    padding: 90px 0 60px;

  }

  .course-hero-title {

    font-size: 38px;

  }

  .course-hero-description {

    font-size: 16px;

    line-height: 28px;

  }

}

@media (max-width:767px) {

  .course-hero-title {

    font-size: 30px;

  }

  .course-branch-tag {

    font-size: 13px;

  }

  .hero-glass-card {

    min-height: 95px;

    padding: 18px;

  }

  .hero-glass-card h6 {

    font-size: 18px;

  }

}

@media (max-width:575px) {

  .course-hero-section {

    padding: 70px 0 50px;

  }

  .hero-glass-card {

    min-height: 90px;

    padding: 16px;

  }

  .hero-glass-card small {

    font-size: 13px;

  }

  .hero-glass-card h6 {

    font-size: 16px;

  }

}

/*==================================================
Reusable Course Content
==================================================*/

.course-content {
  color: #495057;
  font-size: 16px;
  line-height: 1.9;
  word-break: break-word;
  overflow-wrap: break-word;
}

.course-content>*:first-child {
  margin-top: 0;
}

.course-content>*:last-child {
  margin-bottom: 0;
}

/* Paragraph */

.course-content p {
  margin-bottom: 1rem;
  line-height: 1.9;
}

/* Headings */

.course-content h1,
.course-content h2,
.course-content h3,
.course-content h4,
.course-content h5,
.course-content h6 {
  color: #1d3557;
  font-weight: 700;
  line-height: 1.4;
  margin: 1.5rem 0 1rem;
}

.course-content h1 {
  font-size: 2rem;
}

.course-content h2 {
  font-size: 1.75rem;
}

.course-content h3 {
  font-size: 1.5rem;
}

.course-content h4 {
  font-size: 1.3rem;
}

.course-content h5 {
  font-size: 1.15rem;
}

.course-content h6 {
  font-size: 1rem;
}

/* Lists */

.course-content ul,
.course-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.course-content ul {
  list-style: disc;
}

.course-content ol {
  list-style: decimal;
}

.course-content li {
  margin-bottom: .6rem;
  line-height: 1.8;
  list-style: auto;
}

.course-content ul ul,
.course-content ol ol,
.course-content ul ol,
.course-content ol ul {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

/* Links */

.course-content a {
  color: #0d6efd;
  text-decoration: none;
  transition: .3s;
}

.course-content a:hover {
  text-decoration: underline;
}

/* Images */

.course-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1rem 0;
  display: block;
}

/* Tables */

.course-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  display: block;
  overflow-x: auto;
}

.course-content table th,
.course-content table td {
  border: 1px solid #dee2e6;
  padding: 12px;
  white-space: nowrap;
}

.course-content table th {
  background: #f8f9fa;
  font-weight: 600;
}

/* Blockquote */

.course-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0d6efd;
  background: #f8f9fa;
  color: #495057;
  font-style: italic;
}

/* Inline Code */

.course-content code {
  background: #f1f3f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
}

/* Code Block */

.course-content pre {
  background: #212529;
  color: #fff;
  padding: 18px;
  border-radius: 10px;
  overflow-x: auto;
}

.course-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

/* Horizontal Rule */

.course-content hr {
  border: 0;
  border-top: 1px solid #dee2e6;
  margin: 2rem 0;
}

/*==================================================
Why Choose Us
==================================================*/
.why-Choose-section h2 {
  font-size: 1.75rem;
}

.why-section-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 26px;
}

.why-description {
  max-width: 850px;
}

.why-card {
  background: #fff;
  border: 1px solid #edf1f7;
  border-radius: 20px;
  padding: 35px 28px;
  transition: .35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: #0d6efd;
  transition: .35s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.why-card:hover::before {
  height: 100%;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 28px;
  margin-bottom: 25px;

}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d3557;
}

.why-card p {
  margin: 0;
  color: #6c757d;
  line-height: 1.8;
  font-size: 15px;
}

/*==================================================
SEO Text Block
==================================================*/

.seo-header {
  padding: 22px 35px;
  background: linear-gradient(135deg,
      #0d6efd,
      #084298);
  color: #fff;

}

.seo-header h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

.seo-content {
  font-size: 16px;
  line-height: 2;
}

/* Highlight Box */

.seo-content blockquote {
  background: #f8fbff;
  border-left: 5px solid #0d6efd;
}

/* Tables */

.seo-content table {
  margin: 2rem 0;
}

.seo-content img {
  border-radius: 14px;
}

/*==================================================
Course FAQ
==================================================*/

.faq-header {
  padding: 10px 40px 10px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  color: #0d6efd;
  font-size: 28px;
}

.faq-description {
  max-width: 850px;
  margin: auto;
}

.course-faq-accordion .accordion-item {
  border: none;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.course-faq-accordion .accordion-button {
  background: #fff;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 17px;
  color: #1d3557;
  box-shadow: none;
}

.course-faq-accordion .accordion-button:not(.collapsed) {
  background: #0d6efd;
  color: #fff;
}

.course-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.course-faq-accordion .accordion-body {
  padding: 25px 30px;
  background: #fff;
}

.course-faq-accordion .accordion-button::after {
  transition: .3s;
}

/* Responsive */

@media (max-width: 991px) {

  .course-content {
    font-size: 15px;
  }

  .course-content h1 {
    font-size: 1.8rem;
  }

  .course-content h2 {
    font-size: 1.55rem;
  }

  .course-content h3 {
    font-size: 1.35rem;
  }

  .why-Choose-section h2 {
    font-size: 1.55rem;
    line-height: 32px;
  }

  .seo-header {
    padding: 15px 20px;
  }

  .seo-header h2 {
    font-size: 1.55rem;
    line-height: 32px;
  }

}

@media (max-width: 767px) {

  .course-content {
    font-size: 14px;
    line-height: 1.8;
  }

  .course-content h1 {
    font-size: 1.6rem;
  }

  .course-content h2 {
    font-size: 1.4rem;
  }

  .course-content h3 {
    font-size: 1.25rem;
  }

  .course-content ul,
  .course-content ol {
    padding-left: 1.2rem;
  }

  .why-Choose-section h2 {
    font-size: 1.4rem;
    line-height: 25px;
  }

  .seo-header {
    padding: 8px 12px;
  }

  .seo-header h2 {
    font-size: 1.4rem;
    line-height: 25px;
  }

  .faq-header {
    padding: 15px 20px 15px;
  }

  .course-faq-accordion .accordion-button {
    padding: 13px;
    font-size: 16px;
    line-height: 20px;
  }

  .course-faq-accordion .accordion-body {
    padding: 18px;
  }
}