* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: "Poppins", sans-serif;
}

/* COMMON WRAPPER */
.wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: #222;
  color: #ccc;
  font-size: 14px;
}

.top-content {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.top-content a {
  color: #f1f1f1;
  text-decoration: none;
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  top: 39px;
  z-index: 2;
  color: white;
  background: #fff;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.logo {
  font-size: 26px;
  font-weight: bold;
}

.logo a {
  display: block;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  color: #000;
}

.menu li a {
  color: #333;
  text-decoration: none;
}

.menu li a:hover {
  color: #2cb3f5;
}

.menu li span {
  display: inline-block;
  vertical-align: middle;
}

.menu li iconify-icon {
  display: inline-block;
  vertical-align: middle;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
  position: relative;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 230px;
}

.small-text {
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 53px;
  margin-bottom: 20px;
  line-height: 65px;
}

.hero-content span {
  width: 640px;
  display: block;
  font-size: 16px;
}

.hero-content .btn {
  display: block;
  width: 150px;
  text-align: center;
  margin-top: 20px;
}

.btn {
  background: #2cb3f5;
  padding: 12px 32px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* FEATURES */
.features {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 70px;
}

.feature-box {
  flex: 1;
  background: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-box:last-child {
  border-right: none;
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.feature-box span {
  color: #2cb3f5;
  font-size: 14px;
}

.feature-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-icon {
  font-size: 80px;
  color: #2cb3f5;
  min-width: 85px;
}





.pc-section {
  background: #fff;
  padding-bottom: 80px;
}

.pc-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  /*font-family: Arial, sans-serif;*/
  padding-bottom: 20px;
}

/* HEADER */
.pc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.pc-title {
  font-size: 32px;
  margin-bottom: 6px;
}

.pc-subtitle {
  color: #777;
}

.pc-arrows span {
  border: 1px solid #ddd;
  padding: 6px 10px;
  margin-left: 6px;
  cursor: pointer;
}

/* GRID */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.pc-card {
  border: 1px solid #eee;
  background: #fff;
  padding-bottom: 20px;
}

.pc-thumb {
  width: 100%;
  display: block;
}

/* AUTHOR */
.pc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.pc-author img {
  border-radius: 50%;
}

/* TITLE */
.pc-card-title {
  padding: 0 15px;
  font-size: 18px;
  margin-bottom: 15px;
}

/* META */
.pc-meta {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 14px;
  color: #777;
}

.pc-meta iconify-icon {
  margin-right: 4px;
}

/* PRICE */
.pc-price.pc-free {
  color: green;
  font-weight: bold;
}

.pc-price.pc-paid {
  color: #ff9800;
  font-weight: bold;
}

.pc-price.pc-sale {
  color: #ff5722;
  font-weight: bold;
}

/* BUTTON */
.pc-btn-wrap {
  text-align: center;
  margin-top: 50px;
}

.pc-btn {
  background: #163d98;
  color: #fff;
  padding: 14px 40px;
  text-decoration: none;
  font-weight: bold;
}


.pc-thumb-wrap {
  position: relative;
}

.pc-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  bottom: -30px;
  /* overlap */
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  background: #fff;
}

/* spacing below image because avatar overlaps */
.pc-author-name {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #555;
}







/* ===== REGISTER SECTION ===== */
.rg-section {
  position: relative;
  background: url("../images/bg01.jpg") center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.rg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.rg-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 2;
}

/* LEFT SIDE */
.rg-left {
  max-width: 55%;
}

.rg-small-text {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.9;
}

.rg-title {
  font-size: 60px;
  margin: 15px 0 30px;
  font-weight: bold;
}

/* TIMER */
.rg-timer {
  display: flex;
  gap: 20px;
}

.rg-time-box {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rg-time-box strong {
  font-size: 28px;
}

.rg-time-box span {
  font-size: 14px;
  opacity: 0.9;
}

/* FORM CARD */
.rg-form-card {
  width: 360px;
  background: #fff;
  color: #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* CURVED YELLOW TOP */
.rg-form-head {
  background: #2bafef;
  color: #fff;
  padding: 30px 20px 50px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-bottom-left-radius: 50% 40px;
  border-bottom-right-radius: 50% 40px;
}

/* FORM */
.rg-form {
  padding: 30px 25px;
}

.rg-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.rg-form button {
  width: 100%;
  background: #1a3e92;
  color: #fff;
  padding: 14px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}



/* ===== WHY CHOOSE US ===== */
.wc-section {
  background: #f3f3f3;
}

.wc-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* HEAD */
.wc-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.wc-subtitle {
  color: #777;
  margin-bottom: 60px;
}

/* GRID */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.wc-card {
  background: #fff;
  padding: 60px 35px;
  box-shadow: 5px 7px 8px #ccc;
}

.wc-icon {
  font-size: 60px;
  color: #3eafff;
  margin-bottom: 25px;
}

.wc-card-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.wc-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* BUTTON */
.wc-btn-wrap {
  margin-top: 60px;
}

.wc-btn {
  background: #1a3e92;
  color: #fff;
  padding: 14px 42px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}







/* ===== EVENTS SECTION ===== */
.ev-section {
  background: #fff;
}

.ev-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px;

}

/* HEADER */
.ev-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.ev-title {
  font-size: 34px;
  margin-bottom: 6px;
}

.ev-subtitle {
  color: #777;
}

.ev-viewall {
  border: 1px solid #ddd;
  padding: 10px 18px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

/* EVENT ITEM */
.ev-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 45px 0;
  border-top: 1px solid #eee;
}

.ev-item:last-child {
  border-bottom: 1px solid #eee;
}

/* DATE */
.ev-date {
  width: 90px;
  text-align: center;
  flex-shrink: 0;
}

.ev-day {
  font-size: 48px;
  font-weight: bold;
  color: #3eafff;
  display: block;
}

.ev-month {
  font-size: 14px;
  color: #777;
  letter-spacing: 2px;
}

/* CONTENT */
.ev-content {
  flex: 1;
}

.ev-event-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.ev-meta {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.ev-meta iconify-icon {
  margin-right: 6px;
  vertical-align: middle;
}

.ev-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  max-width: 520px;
}

/* IMAGE */
.ev-image img {
  width: 420px;
  max-width: 100%;
  display: block;
}




/* ===== LATEST NEWS ===== */
.ln-section {
  position: relative;
  background: url("../images/registeration_bg.jpg") center/cover no-repeat;
  padding: 90px 0 70px;
  color: #fff;
}

.ln-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.ln-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  z-index: 2;
}

/* HEADER */
.ln-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 45px;
}

.ln-title {
  font-size: 34px;
  margin-bottom: 6px;
}

.ln-subtitle {
  opacity: 0.85;
}

.ln-arrows span {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 10px;
  margin-left: 6px;
  cursor: pointer;
}

/* GRID */
.ln-grid {
  /*display: grid;*/
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.ln-card-title {
  margin-top: 18px;
  font-size: 20px;
  text-align: center;
}

/* IMAGE */
.ln-img {
  position: relative;
}

.ln-img img {
  width: 100%;
  display: block;
}

/* TAG */
.ln-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #f5b400;
  color: #000;
  font-size: 14px;
  padding: 6px 14px;
  font-weight: 500;
}

/* DOTS */
.ln-dots {
  text-align: center;
  margin-top: 40px;
}

.ln-dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  display: inline-block;
  border-radius: 50%;
  margin: 0 6px;
}

.ln-dots .active {
  background: #f5b400;
}






/* ===== WHAT PEOPLE SAY ===== */
.wp-section {
  background: #fff;
}

.wp-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;

}

/* HEAD */
.wp-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.wp-subtitle {
  color: #777;
  margin-bottom: 45px;
}

/* AVATARS */
.wp-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 25px;
}

.wp-avatars img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  opacity: 0.5;
}

.wp-avatar-active {
  position: relative;
}

.wp-avatar-active img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  opacity: 1;
}

.wp-quote {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #f5b400;
  color: #000;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 50%;
  font-weight: bold;
}

/* NAME */
.wp-name {
  font-size: 20px;
  margin-top: 10px;
}

.wp-role {
  color: #777;
  font-size: 14px;
}

/* TEXT */
.wp-text {
  max-width: 750px;
  margin: 25px auto 60px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

/* NEWSLETTER */
.wp-newsletter {
  background: url(../images/bg-newletter.png);
  border: 1px solid #eee;
  padding: 40px 30px;
  max-width: 800px;
  margin: auto;

  max-width: 753px;
  margin: auto;
  text-align: center;
  padding: 0 15px;
  padding-top: 75px;
  padding-bottom: 70px;
  background-size: 100%;
}

.wp-newsletter p {
  margin-bottom: 25px;
  font-size: 15px;
  color: #555;
}

.wp-form {
  display: flex;
  justify-content: center;
}

.wp-form input {
  width: 60%;
  padding: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.wp-form button {
  background: #2cb3f5;
  border: none;
  padding: 14px 30px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}




/* =========================
   FOOTER –  E-world Digifintel Pvt Ltd.
========================= */

.ft-section {
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
  color: #cfcfcf;
  font-family: 'Poppins', sans-serif;
}

.ft-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 20px;
}

/* TOP FOOTER */
.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 31px;
}

.ft-top .ft-brand {
  width: 90%;
}

/* BRAND */
.ft-logo img {
  margin-bottom: 15px;
}

.ft-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #bdbdbd;
  margin-bottom: 20px;
  width: 100%;
}

/* CONTACT */
.ft-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-contact li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.ft-contact iconify-icon {
  font-size: 18px;
  color: #ffb400;
  margin-top: 2px;
}

/* SOCIAL */
.ft-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.ft-social iconify-icon {
  font-size: 18px;
  cursor: pointer;
  color: #bdbdbd;
  transition: 0.3s;
}

.ft-social iconify-icon:hover {
  color: #ffb400;
}

/* COLUMNS */
.ft-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 18px;
}

.ft-col a {
  display: block;
  font-size: 14px;
  color: #bdbdbd;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.ft-col a:hover {
  color: #ffb400;
  padding-left: 4px;
}

/* DIVIDER */
.ft-divider {
  margin: 10px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* BOTTOM */
.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9e9e9e;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-bottom-links a {
  margin-left: 18px;
  color: #9e9e9e;
  text-decoration: none;
  transition: 0.3s;
}

.ft-bottom-links a:hover {
  color: #ffb400;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ft-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ft-bottom {
    flex-direction: column;
    text-align: center;
  }

  .ft-bottom-links a {
    margin: 0 10px;
  }
}













/* ===== PRIVACY POLICY PAGE ===== */


.pp-page {
  padding: 80px 0;
  background: rgba(0, 0, 0, .08);
  font-family: 'Poppins', sans-serif;
  padding-top: 150px;
}

.pp-header {
  margin-bottom: 40px;
}

.pp-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pp-header p {
  color: #777;
  font-size: 15px;
}

.pp-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.pp-content h2 {
  font-size: 18px;
  margin: 35px 0 12px;
  font-weight: 600;
}

.pp-content h3 {
  font-size: 17px;
  margin: 20px 0 8px;
  font-weight: 500;
}

.pp-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.pp-content ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 6px;
}

/* ===== REFUND POLICY PAGE ===== */
.rp-page {
  padding: 80px 0;
  background: rgba(0, 0, 0, .08);
  font-family: 'Poppins', sans-serif;
  padding-top: 150px;
}

.rp-header {
  margin-bottom: 40px;
}

.rp-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.rp-header p {
  color: #777;
  font-size: 15px;
}

.rp-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.rp-content h2 {
  font-size: 18px;
  margin: 30px 0 12px;
  font-weight: 600;
}

.rp-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.rp-content ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 6px;
}





/* ================================
   CONTACT INFO SECTION
================================ */

.ci-section {
  padding: 80px 20px;
  background: rgba(0, 0, 0, .02);
  font-family: 'Poppins', sans-serif;
  padding-top: 200px;
}

.ci-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.ci-card {
  background: #fff;
  text-align: center;
  padding: 45px 25px;
  border-radius: 8px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.ci-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* ICON */
.ci-icon {
  font-size: 46px;
  margin-bottom: 18px;
}

.ci-icon.blue iconify-icon {
  color: #0d6efd;
}

.ci-icon.green iconify-icon {
  color: #2dbf64;
}

.ci-icon.yellow iconify-icon {
  color: #ffb400;
}

/* TEXT */
.ci-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.ci-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* ACTIVE CARD BOTTOM BORDER */
.ci-card.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #ffb400;
  border-radius: 0 0 8px 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ci-wrapper {
    grid-template-columns: 1fr;
  }
}





/* ================================
   CONTACT FORM SECTION
================================ */

.cf-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.cf-wrapper {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.cf-title {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 45px;
  line-height: 1.4;
}

/* FORM */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* INPUTS */
.cf-form input,
.cf-form textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ededed;
  background: #fafafa;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cf-form input:focus,
.cf-form textarea:focus {
  border-color: #ffb400;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.12);
}

.cf-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* BUTTON */
.cf-btn {
  margin-top: 25px;
  align-self: center;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  background: #ffb400;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cf-btn:hover {
  background: #e6a800;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .cf-title {
    font-size: 22px;
  }
}



/* =========================
   MAP SECTION
========================= */

.map-section {
  padding: 60px 20px 40px;
  background: #ffffff;
}

.map-wrapper {
  max-width: 1200px;
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* =========================
   PARTNER LOGOS
========================= */

.partner-section {
  padding: 40px 20px 60px;
  background: #ffffff;
}

.partner-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 60px;
}

.partner-logos img {
  max-height: 42px;
  opacity: 0.5;
  transition: 0.3s ease;
  filter: grayscale(100%);
}

.partner-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ARROWS */
.partner-arrow {
  font-size: 32px;
  color: #c7c7c7;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.partner-arrow:hover {
  color: #ffb400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-logos {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .partner-arrow {
    display: none;
  }
}


.contact_us_main {
  background: rgba(0, 0, 0, .03);
}



/* ===========================
   COURSE PAGE
=========================== */

.course-page {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background: rgba(0, 0, 0, .04);
}

.course-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

/* TOP BAR */
.course-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.course-controls {
  display: flex;
  gap: 10px;
}

.course-controls select,
.course-controls input {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* GRID */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.course-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-body {
  padding: 18px;
}

.course-author {
  font-size: 13px;
  color: #777;
}

.course-body h3 {
  font-size: 16px;
  margin: 8px 0 12px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.course-meta .free {
  color: green;
  font-weight: 600;
}

.course-meta .price {
  color: #ff5722;
  font-weight: 600;
}

/* SIDEBAR */
.course-sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.course-sidebar h4 {
  margin-bottom: 12px;
  margin-top: 20px;
}

.course-sidebar label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.filter-btns {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.filter-btns button {
  padding: 8px 15px;
  border: none;
  cursor: pointer;
}

.filter-btns .apply {
  background: #ffb400;
}

.filter-btns .reset {
  background: #eee;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .course-wrapper {
    grid-template-columns: 1fr;
  }

  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}


.courses_us_main {
  margin-top: 120px;
}


/* AUTH MODAL */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.auth-modal.active {
  display: block;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.auth-box {
  position: relative;
  width: 400px;
  max-width: 90%;
  background: #fff;
  margin: 8% auto;
  padding: 30px;
  border-radius: 8px;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.auth-tabs button {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #777;
  font-family: poppins;
}

.auth-tabs button.active {
  color: #000;
  border-bottom: 2px solid #2cb3f5;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h3 {
  margin-bottom: 20px;
}

.auth-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: #2cb3f5;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
}

.auth-btn:hover {
  background: #163d98;
}

.auth-switch {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}

.auth-switch a {
  color: #163d98;
  font-weight: 600;
}


/* ===============================
   TERMS & CONDITIONS PAGE
================================ */

.tc-page {
  padding: 80px 0;
  background: rgba(0, 0, 0, .08);
  font-family: 'Poppins', sans-serif;
  padding-top: 150px;
}

.tc-header {
  margin-bottom: 40px;
}

.tc-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.tc-header p {
  font-size: 15px;
  color: #777;
}

.tc-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.tc-content h2 {
  font-size: 18px;
  margin: 35px 0 12px;
  font-weight: 600;
  color: #222;
}

.tc-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.tc-content ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}


.event-section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  padding-top: 150px;
  background: rgba(0, 0, 0, .03);
}

.event-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

.event-tabs .tab {
  cursor: pointer;
  padding-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.event-tabs .tab.active {
  color: #ffb400;
  border-bottom: 2px solid #ffb400;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.event-item {
  display: grid;
  grid-template-columns: 80px 1fr 300px;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.event-date {
  text-align: center;
}

.event-date .day {
  font-size: 42px;
  font-weight: 600;
  color: #ffb400;
}

.event-date .month {
  font-size: 14px;
  color: #777;
}

.event-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.event-info .meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.event-info p {
  font-size: 15px;
  color: #555;
}

.event-img img {
  width: 100%;
  border-radius: 6px;
}


/*////////////////////////=================ABOUT US*/


.about-stats {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding-top: 150px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.stat-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.stat-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 15px;
  color: #555;
}

/* Color Themes */
.stat-card.green h3 {
  color: #6fcf97;
}

.stat-card.blue h3 {
  color: #4d7cff;
}

.stat-card.yellow h3 {
  color: #f2b705;
}

.stat-card.orange h3 {
  color: #f2994a;
}



.special-section {
  padding: 80px 20px;
  background: #f4f7fb;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 15px;
  color: #666;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.special-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.special-card:hover {
  transform: translateY(-6px);
}

.special-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.special-card h3 {
  font-size: 20px;
  margin: 20px;
  color: #222;
}

.special-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 20px 20px;
}

.special-card a {
  display: inline-block;
  margin: 0 20px 25px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.special-card a:hover {
  text-decoration: underline;
}

.team-wrapper {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* Testimonial */
.testimonial {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.testimonial .quote {
  font-size: 60px;
  color: #ffb703;
  display: block;
  margin-bottom: -10px;
}

.testimonial p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-weight: 500;
  color: #555;
}

.testimonial h4 span {
  font-weight: 400;
  color: #888;
}

.team-wrapper hr {
  margin: 70px auto;
  max-width: 1100px;
  border: none;
  border-top: 1px solid #eee;
}

/* Team Section */
.team-section {
  text-align: center;
}

.team-section h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 8px;
}

.team-section .subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.team-card {
  text-align: center;
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 6px;
  border: 2px dashed #cfd6ff;
  margin: auto;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 18px;
  font-size: 18px;
  color: #222;
}

.team-card p {
  font-size: 14px;
  color: #ffb703;
  font-weight: 500;
  margin: 4px 0;
}

.team-card span {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  display: block;
  margin-top: 6px;
}

.btn-team {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 32px;
  background: #ffb703;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
}


.pc-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.pc-thumb-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.pc-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.pc-wrapper .owl-carousel .owl-nav {
  display: block !important;
  position: absolute;
  right: 0;
  top: -100px;
}

.pc-wrapper .owl-carousel .owl-dots {
  display: none;
}

.pc-wrapper .owl-carousel .owl-nav button {
  font-size: 30px !important;
  background: #ccc !important;
  width: 25px;
  height: 37px;
  line-height: 37px !important;
}

.ln-section .owl-carousel .owl-dots.disabled {
  display: block;
}

.testimonial-section {
  text-align: center;
  padding: 80px 20px;
}

.testimonial-carousel .testimonial-item {
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.4s ease;
  padding: 30px;
}

.testimonial-carousel .owl-item.active.center .testimonial-item {
  opacity: 1;
  transform: scale(1);
}

.avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 4px solid #f1f1f1;
}

.owl-item.active.center .avatar img {
  border-color: #ff4d4d;
}

.testimonial-item h4 {
  margin: 10px 0 5px;
}

.testimonial-item span {
  color: #777;
  font-size: 14px;
}

.testimonial-item p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
}


#carousel3 .owl-carousel .owl-item img {
  width: auto !important;
}


/* ===== PAGINATION STYLES ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 20px 0;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}

.page-btn.active {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-dots {
  padding: 0 8px;
  color: #999;
}

/* ===== NO RESULTS STATE ===== */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-results iconify-icon {
  color: #ccc;
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #333;
}

.no-results p {
  font-size: 16px;
  color: #999;
}

/* ===== COURSE CARD HOVER EFFECT ===== */
.course-card {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===== RESPONSIVE PAGINATION ===== */
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
  }

  .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}



/* ===== CART BADGE ===== */
.cart-badge {
  background: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: bold;
  margin-left: 5px;
  display: none;
}

/* ===== AUTH MESSAGES ===== */
.auth-message {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: center;
}

.auth-message.error {
  background: #fee;
  color: #c33;
  border: 1px solid #fcc;
}

.auth-message.success {
  background: #efe;
  color: #3c3;
  border: 1px solid #cfc;
}

/* ===== COURSE ACTIONS BUTTONS ===== */
.course-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-add-cart,
.btn-view-details,
.btn-enroll-free {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-add-cart {
  background: #4a90e2;
  color: white;
}

.btn-add-cart:hover {
  background: #357abd;
}

.btn-view-details {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.btn-view-details:hover {
  background: #e9ecef;
}

.btn-enroll-free {
  background: #27ae60;
  color: white;
}

.btn-enroll-free:hover {
  background: #229954;
}

/* ===== CART PAGE ===== */
.cart-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.cart-wrapper h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart iconify-icon {
  color: #ccc;
  margin-bottom: 20px;
}

.cart-items {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.cart-item-price {
  font-size: 20px;
  font-weight: bold;
  color: #4a90e2;
}

.remove-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-summary {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  margin-left: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
}

.summary-row.total {
  border-top: 2px solid #eee;
  padding-top: 15px;
  font-size: 20px;
  font-weight: bold;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #27ae60;
  color: white;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #229954;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.checkout-section {
  background: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 6px;
  cursor: pointer;
}

.payment-option input {
  margin-right: 10px;
}

.order-summary-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  position: sticky;
  top: 20px;
}

.order-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.order-item img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.order-totals {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.btn-place-order {
  width: 100%;
  padding: 15px;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-place-order:hover {
  background: #229954;
}

.secure-checkout {
  text-align: center;
  color: #27ae60;
  font-size: 13px;
  margin-top: 15px;
}

/* ===== SUCCESS/FAILED PAGES ===== */
.success-container,
.failed-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-card,
.failed-card {
  background: white;
  max-width: 700px;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.order-info-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: left;
}

.order-info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.purchased-courses {
  margin: 30px 0;
  text-align: left;
}

.purchased-course-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
}

.purchased-course-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.success-actions,
.failed-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #4a90e2;
  color: white;
}

.btn-secondary {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.btn-primary:hover {
  background: #357abd;
}

.btn-secondary:hover {
  background: #e9ecef;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .course-actions {
    flex-direction: column;
  }
}