/*--------------------top-header-------------------------*/
.top-header {
  background-color: #568e03;
  padding: 5px 0;
}

.top-left {
  display: flex;
}

.top-header .top-left a {
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
}

.top-right {
  display: flex;
  align-items: center;
}

.top-header .top-right a {
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
}

.top-header .top-right p {
  color: #ababab;
  margin-right: 10px;
  font-size: 14px;
}

.top-header .top-right img {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  margin-top: 5px;
}

.marquee-text {
  width: 40%;
  color: #fff;
  padding: 5px 0;
}

/*------------------------top-header------------------------------*/
/*-----------------------main-header------------------------------*/

.nav-bar .logo-container {
  display: flex;
  align-items: center;
}

.nav-bar .logo-container .logo {
  border-radius: 50%;
  width: 170px;
  height: 85px;
}

.nav-bar .logo-container .img-content {
  h4 {
    border-left: 2px solid #55555578;
    padding-left: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #9f2e2e;
    line-height: 1.3;

    span {
      color: #222;
    }
  }
}

.main-nav ul {
  /* list-style-type: none; */
  display: flex;
  align-items: center;
  /* margin: 0; */
  padding: 0;
}

.main-nav ul li {
  position: relative;
  padding: 0 10px;
}

.main-nav ul li a {
  /* display: flex
; */
  /* align-items: center; */
  color: #222;
  /* text-decoration: none; */
  /* margin-bottom: 50px; */
  font-size: 14px;
  text-transform: uppercase;

  &::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0px;
    height: 2px;
    background-color: var(--top-header-color);
    transition: 0.5s ease-in-out;
  }

  &:hover::after {
    width: 100%;
  }
}

li.dropdown {
  position: relative;

  &:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #fff;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    li {
      padding: 10px;
    }
  }
}

.button {
  margin-left: 10px;
  border-radius: 6px;
}

.main-header .button a {
  color: var(--top-header-color);
  font-size: 14px;
}

.btn-third {
  border: 1px solid var(--top-header-color);
}

.menu-toggle {
  display: none;
}

/*------------------------slider------------------------------*/
.slide {
  width: 100%;
  position: relative;

  /* &::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background-color: #000;
        opacity: 0.7;
    } */
  img {
    width: 100%;
    max-height: 500px;
  }

  .img-content {
    position: absolute;
    z-index: 9;
    top: calc(50% - 100px);
    left: 7%;

    h3 {
      font-size: 26px;
      color: #fff;
      font-weight: 500;
    }

    h2 {
      color: #fff;
      font-size: 50px;
      letter-spacing: 0.5px;
      font-weight: 700;
      text-transform: uppercase;
    }

    p {
      font-size: 40px;
      margin-top: 2px;
      margin-bottom: 20px;
      font-weight: 500;
      color: #fff;
      text-transform: uppercase;
    }

    a {
      font-size: 20px;
      letter-spacing: 1px;
    }
  }

  .img-box {
    z-index: 9999;
    position: absolute;
    width: 100%;
    bottom: 5%;

    .box {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      background-color: #000;
      border-radius: 4px;
      opacity: 0.8;
      padding: 10px;

      &:hover {
        transform: translateY(-10px);
        box-shadow: rgba(248, 246, 246, 0.5) 0px 4px 12px;
      }

      .frame {
        position: relative;
        z-index: 9;

        i {
          margin-right: 10px;
          margin-top: 15px;
          margin-bottom: 15px;
          font-size: 50px;
          color: #FFB606;
        }
      }

      .textover {
        font-size: 25px;
        font-weight: 600;
        line-height: 1.4em;
        position: relative;
        z-index: 2;
        margin-left: 20px;

        p {
          color: #ffff;
          position: relative;
          z-index: 99;
        }
      }
    }
  }
}

/*-------------------------courses----------------------------*/

.courses .course-card {
  background: #fff;
  margin: 20px 0;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: fadeInUp 1s ease;
  transition: transform 0.3s;
}

.courses .card-container {
  padding: 10px;
}

.courses .course-card:hover {
  transform: translateY(-5px);
}

.courses .course-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #f1f1f1;
}

.courses .course-content {
  padding: 20px;
  text-align: center;
}

.courses .course-content h2 {
  font-size: 22px;
  color: #d63031;
  margin-bottom: 5px;
}

.courses .course-content h4 {
  color: #2d3436;
  margin-bottom: 15px;
}

.courses .course-features {
  text-align: left;
  padding-left: 15px;
  margin-bottom: 20px;
}

.courses .course-features li {
  font-size: 15px;
  margin: 6px 0;
  opacity: 0;
  animation: slideIn 0.5s forwards;
}

.course-features li:nth-child(1) {
  animation-delay: 0.2s;
}

.course-features li:nth-child(2) {
  animation-delay: 0.4s;
}

.course-features li:nth-child(3) {
  animation-delay: 0.6s;
}

.course-features li:nth-child(4) {
  animation-delay: 0.8s;
}

.course-features li:nth-child(5) {
  animation-delay: 1s;
}

.courses .course-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.courses .btn {
  background: #d63031;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.courses .btn:hover {
  background: #b71c1c;
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/*----------------------------why-choose --------------------------*/
.why-choose {
  background-color: #f3f3f3;

  .box {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.5s ease-in-out;

    &:hover {
      background-color: rgb(197, 194, 194);
      transform: translateY(-10px);
    }

    .image {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;

      img {
        width: 80px;
      }
    }

    .img-content {
      h4 {
        text-align: center;
        margin: 20px;
      }

      p {
        text-align: justify;
      }
    }
  }
}

/*----------------------------register-section ---------------------*/

.register-section {
  background: url(../images/banner-img1.jpg) no-repeat center center/cover;
  margin: 50px 0;
  padding: 60px 0px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.8;
  }
}

.register-text h4 {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
}

.register-text h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  position: relative;
  margin: 20px 0;
}

.timer {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.time-box {
  width: 80px;
  height: 80px;
  padding: 50px;
  position: relative;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.time-box span {
  color: #fff;
  position: relative;
}

.time-box span:first-child {
  font-size: 24px;
}

.form-container {
  position: relative;
  margin-left: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: #000;
  max-width: 500px;
  width: 100%;
}

.form-header {
  background: #e42320;
  padding: 20px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.form-body {
  padding: 30px;
}

.form-body input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
}

.form-body button {
  background: black;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.form-body button:hover {
  background: #333;
}

/*-------------------------------events section -------------------------------*/
.event-section {
  max-width: 1000px;
  margin: auto;
}

.event {
  display: flex;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.event:nth-child(2) {
  animation-delay: 0.3s;
}

.date {
  background-color: #f54b64;
  color: white;
  padding: 30px 20px;
  text-align: center;
  font-weight: 600;
}

.date span {
  display: block;
}

.date .day {
  font-size: 32px;
  line-height: 1;
}

.date .month {
  font-size: 14px;
}

.event-details {
  flex: 1;
  padding: 20px;
  position: relative;
}

.event-details h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #333;
}

.meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.meta i {
  margin-right: 5px;
  color: #f54b64;
}

.event-details p {
  margin: 0;
  color: #555;
}

.event-img {
  width: 200px;
  object-fit: cover;
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .event {
    flex-direction: column;
  }

  .event-img {
    width: 100%;
    height: auto;
  }
}

/*-----------------------------------skills section -------------------------------------*/
.skills {
  background-image: url(../images/skill-bg.avif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  z-index: 99;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.85;
  }
}

.skills .slider-2 {
  position: relative;
  z-index: 9;
}

.skills .box {
  padding: 10px;
  position: relative;
  z-index: 9;
}

.skills .box img {
  width: 100%;
  height: 200px;
  border-radius: 6px;
}

.skills .box .img-content {
  position: absolute;
  display: inline-block;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-prev,
.slick-next {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.slick-prev::before {
  line-height: 44px;
  font-size: 24px;
  color: #000;
}

.slick-prev:hover {
  background-color: var(--top-header-color);
}

.slick-next::before {
  line-height: 44px;
  font-size: 24px;
  color: #000;
}

.slick-next:hover {
  background-color: var(--top-header-color);
}

.skills .title {
  position: relative;
  z-index: 9;

  h2 {
    position: relative;
    z-index: 9;
    color: #fff;
  }

  p {
    position: relative;
    z-index: 9;
    color: #fff;
  }
}

@media(max-width:1024px) {
  .slick-prev {
    left: 0px;
    z-index: 9;
  }

  .slick-next {
    right: 0px;
    z-index: 9;
  }
}

@media(max-width:768px) {
  .skills .slider-2 .box .button a {
    font-size: 12px;
    padding: 8px;
  }

  .skills .slider-2 .box .button {
    display: block;
  }

  .slick-prev {
    left: 0px;
    z-index: 9;
  }

  .slick-next {
    right: 0px;
    z-index: 9;
  }
}

/*-------------------footer-----------------------------------------*/

.footer {
  background: #111;
  padding: 50px 20px;

}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: rgb(241 222 222 / 67%) 0px 3px 8px;
}

.footer-logo .social-icons a img {
  height: 30px;
  width: 30px;
  box-shadow: none;
}

.footer-logo p {
  margin: 10px 0;
  color: #bbb;
}

.footer-contact {
  margin-top: 15px;
}

.footer-contact div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
}

.footer-contact i {
  /* color: #f4a701; */
  color: #d32f2f;
  margin-right: 10px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column h3 {
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #f4a701;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
  color: #777;

  span {
    display: none;
  }
}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #f4a701;
}

.social-icons {
  display: flex;
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  color: #bbb;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f4a701;
}

.bg-img-sec {
  position: relative;
  background-image: url(../images/join-us.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 80vh;
}

.bg-img-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgb(244, 167, 1, 0.5);  */
  background: rgb(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

.bg-img-sec .bg-img-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  color: #fff;
}

.bg-img-sec .bg-img-content h3 {
  color: #fff;
  /* font-family: "Roboto" sans-serif; */
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.bg-img-sec .bg-img-content p {
  color: #fff;
  /* font-family: "Roboto" sans-serif; */
  font-size: 20px;
  text-transform: uppercase;
}

.bg-img-sec .bg-img-content .btnn {
  background-color: transparent;
  color: #000;
  /* border: 2px solid #f39c12; */
  width: 30%;
  z-index: 1;
}

.bg-img-sec .bg-img-content .btnn:hover {
  background-color: #000;
  color: #fff;
}

/*------------------------------------testimonials---------------------------------------*/

.testimonial-section {
  max-width: 800px;
  margin: auto;
  padding: 50px 20px;
}

.testimonial-header h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.testimonial-header p {
  font-size: 16px;
  color: #777;
  margin-bottom: 30px;
  text-align: center;
}

/* Image Thumbnails */
.testimonial-thumbs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-thumbs img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-thumbs .active {
  border: 3px solid #f4a701;
  opacity: 1;
  transform: scale(1.2);
}

/* Content Slider */
.testimonial-content {
  text-align: center;
}

.testimonial-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-content h4 {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

/* Custom Dots */
.slick-dots li button:before {
  font-size: 10px;
  color: gray;
}

.slick-dots .slick-active button:before {
  color: #f4a701;
}

/*------------------envelope------------------------------*/
.enve-section {
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  position: relative;
}


.enve-section .subscribe-container {
  position: relative;
  width: 500px;
  background: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Background Envelope Effect */
.enve-section .envelope {
  position: absolute;
  width: 520px;
  height: 180px;
  top: 10px;
  left: 429px;
  background: white;
  border: 1px solid #ddd;
  z-index: 1;
  transform: rotate(-2deg);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.envelope::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  top: 0;
  background: repeating-linear-gradient(90deg, red, red 10px, white 10px, white 20px, blue 20px, blue 30px);
}

.subscribe-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.subscribe-form input {
  width: 70%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-size: 16px;
}

.subscribe-form button {
  width: 30%;
  /* background: #f4a701; */
  background: #d32f2f;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0 5px 5px 0;
  font-weight: bold;
}

.subscribe-form button:hover {
  background: #e69500;
}

/*------------------------circular  custom section ---------------------*/
.custom-section {
  padding: 60px 0;
  background-image: url(../images/custom.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.circle-container {
  max-width: 100%;
  overflow: hidden;
}

.circle-wrapper {
  position: relative;
  width: clamp(300px, 50vw, 400px);
  height: clamp(300px, 50vw, 400px);
  margin: 50px auto;
}

.dotted-path {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--top-header-color);
  border-radius: 50%;
  z-index: 0;
}

.dot-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: transform 1s ease-in-out;
}

.item-dot {
  width: clamp(50px, 14vw, 80px);
  height: clamp(50px, 14vw, 80px);
  background: var(--top-header-color);
  border-radius: 10px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.5s, transform 1s;
  transform-origin: center;
}

.item-dot img {
  width: 50%;
  height: auto;
  margin-bottom: 6px;
}

.item-dot span {
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.item-dot.active {
  background: #4c9aff;
}

.item-dot.active span {
  color: #fff;
}

.center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #4c9aff;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

@media (max-width: 768px) {
  .center-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .item-dot span {
    font-size: 8px;
  }

  .center-title {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
}

.fixed {
  position: fixed;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/*------------------- about page css -----------------*/
.banner-all {
  background-image: url(../images/about-banner.avif);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: 0.7;
  }

  .main-content {
    display: inline-block;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    h1 {
      font-size: 42px;
      text-align: center;
      color: #fff;
      font-weight: 500;
      position: relative;
      z-index: 99;
    }

    a {
      color: #fff;
      font-size: 20px;
      position: relative;
      z-index: 99;
    }

    span {
      color: #fff;
      font-size: 20px;
      position: relative;
      z-index: 99;
    }
  }
}

.vision .box p {
  font-size: 16px;
  text-align: justify;
}

.vision .image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.mission .box p {
  font-size: 16px;
  text-align: justify;
}

.mission .image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.aspiration .box p {
  font-size: 16px;
  text-align: justify;
}

.aspiration .image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/*--------------------------courses-----------------------------*/
/*-----------------css by rachit -------------------------------*/

.digital-marketing-section {
  background-color: #f8f9fd;
  padding: 40px 0;
}


.dm-left h2 {
  font-size: 36px;
  color: #0c2543;
  line-height: 1.5;
  margin-bottom: 10px;
}

.dm-left h2 span {
  color: #d32f2f;
}

.dm-left p {
  font-size: 12px;
  color: #0c2543;
  margin-bottom: 20px;
  text-align: left;
  padding-right: 20px;
}

.dm-left p span {
  color: #d32f2f;
  font-size: 18px;
}

.dm-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.dm-left ul li {
  font-size: 18px;
  color: #0c2543;
  margin-bottom: 12px;
}

.dm-left ul li i {
  color: #d32f2f;
  margin-right: 10px;
}

.brochure-btn {
  display: inline-block;
  background-color: #d32f2f;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 20px;
}


.digital-marketing-section .dm-left ul li span {
  color: #d32f2f;
  font-size: 20px;
  font-weight: 500;
}

.dm-right img {
  width: 100%;
  /* height: 300px; */
  border-radius: 8px;
}


.digital-marketing-section .dm-left ul li {
  margin-right: 10px;
  font-size: 14px;
}

/*---------------------------updated by manjul -------------------------*/
/*---------------------courses digital marketing section 2 -----------------------*/
.course-section h3 {
  margin-top: 40px;
  color: #ffc107;
}

.course-section p {
  color: #fff;
}

.course-section .box {
  background: #222;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.course-section .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/*--------------------------digital marketing course page book your consultation ------------------------------*/

.left-content h2 {
  font-size: 36px;
  line-height: 1.3;
  color: rgb(12, 37, 67);
  margin-bottom: 10px;
}

.left-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 20px;
}

.left-content h2 span {
  color: var(--top-header-color);
}

.btn-contact {
  background-color: #d32f2f;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
}

.right-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.right-content .box {
  margin-bottom: 20px;
  height: 140px;
  padding: 10px;
  background-color: rgb(0 151 255);
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 1s;
  text-align: center;
  font-size: 16px;
}

.right-content .box:hover {
  transform: rotateY(360deg);
}

/*-----------------------------------job-role section ------------------------------*/

.job-roles-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  /* font-family: "Roboto" sans-serif; */
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: rgb(12, 37, 67);
  line-height: 1.3;
  margin-bottom: 30px;
}

.roles-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.role-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.role-item {
  background-color: #d32;
  padding: 20px;
  border-radius: 8px;
  font-size: 18px;
  color: #fff;
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

.role-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/*----------------------------franchiese section ----------------------------*/
.franchise-why-choose {
  padding: 40px 0;
}

.franchise-why-choose h2 {
  text-align: center;
  font-size: 30px;
}

.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.feature-box {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #d32f2f;
}

.feature-box p {
  font-size: 14px;
  line-height: 1.6;
}

/*--------------------franchiese form section ------------------------*/

.franchise-section {
  padding: 40px 0;
}

.badge {
  background-color: #d32f2f;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.franchise-content .contact {
  margin: 10px 0;
  font-size: 16px;
}

.franchise-content h2 {
  font-size: 32px;
  line-height: 1.4;
  margin: 20px 0;
  color: rgb(12, 37, 67);
}

.franchise-content .details {
  font-size: 16px;
  margin: 20px 0;
}

.talk-btn {
  display: inline-block;
  background-color: #d32f2f;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  border-radius: 5px;
}

.franchise-form {
  background: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
}

.franchise-form h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.franchise-form p {
  margin-bottom: 20px;
}

.franchise-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.franchise-form button {
  width: 100%;
  background-color: #d32f2f;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.franchise-form button:hover {
  background-color: #f39c12;
}

/*----------------------counter --------------------------*/
.counter-section {
  margin: 40px 0;
  padding: 60px 20px;
  background: var(--top-header-color);
  color: #fff;
  text-align: center;
}

.counter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.counter-box {
  flex: 1 1 200px;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.count {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00ffe7;
}

/*------------wp icon -------------------*/
.whatsapp-icon {
  position: fixed;
  background-color: #fff;
  z-index: 9999;
  bottom: 100px;
  right: 15px;
  width: 60px;
  height: 60px;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
}

/*--------------------privacy and policy page ----------------------------*/
.privacy .policy1 {
  margin-bottom: 20px;

  h3 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(12, 37, 67);
    margin-bottom: 10px;
  }

  p {
    font-size: 1rem;
    color: #343a40;
    margin-bottom: 10px;

    span {
      color: var(--top-header-color);
    }
  }

  ul {
    padding-left: 40px;

    li {
      list-style-type: disc;
      color: #333;
    }
  }
}

.top-footer {
  padding-bottom: 40px;

  .content {
    p {
      font-size: 1rem;
      color: #343a40;
      margin-bottom: 10px;
    }
  }
}

.button3 {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 50px;
  line-height: 45px;

  a {
    width: 100%;
    padding: 0 10px;
  }
}

/*--------------------terms & condition ------------------------*/

.terms-list {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}

.terms-list li {
  counter-increment: section;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
  color: #343a40;
}

.terms-list li::before {
  content: counter(section) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #222;
  font-weight: 700;
  font-size: 18px;
}

.terms-list strong {
  color: #555;
  font-weight: 600;
  font-size: 1.1rem;
}

.terms-list a {
  color: #1a73e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-list a:hover {
  text-decoration: underline;
  color: #0d47a1;
}

.terms-note,
.terms-link {
  margin-top: 30px;
  font-size: 16px;
  color: #424242;
}

.terms-footer {
  margin-top: 40px;
  font-size: 15px;
  color: #555;
}

.terms-footer p {
  margin-bottom: 8px;
}

/*--------------------refund and cancellation ------------------------*/
.refund-content {

  p {
    color: #343a40;
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/*-------------------------contact-page--------------------------------*/
/* Contact Boxes */
.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.info-box p {
  color: #1a73e8;
}

.info-box a {
  color: #1a73e8;
}

.info-box img {
  width: 40px;
  margin-bottom: 15px;
  color: var(--top-header-color);
}

.info-box h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--top-header-color);
}

/* Contact Section */
.contact-wrapper {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.contact-form {
  background-color: #333;
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 25px;
  color: var(--top-header-color);
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  font-family: sans-serif;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form form button {
  background: var(--top-header-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form form button:hover {
  background: rgba(145, 10, 10, 0.884);
}

.contact-image {
  min-height: 100%;
  background: url(../images/conatct-right.png) center/cover no-repeat;
}

/*----------------------pop-up---------------------------*/
/* Trigger Button */


/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background: #fff;
  padding: 30px 25px;
  width: 90%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
  position: relative;
  font-family: 'Roboto', sans-serif;
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 5px;
  color: var(--top-header-color);
  text-align: center;
}

.subtext {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.submit-btn {
  background-color: var(--top-header-color);
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #0d47a1;
}

.close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .modal-content {
    padding: 20px;
  }
}

/*-----------------------login ----------------------*/

/* Modal Background */
.modal-login {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.login-content {
  background: #fff;
  padding: 30px 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
  position: relative;
}

.login-content h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--top-header-color);
  text-align: center;
}

.login-content input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.login-btn {
  background-color: var(--top-header-color);
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #0d47a1;
}

.close-login {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .login-content {
    padding: 20px;
  }
}

/*--------------------placement page secction ------------------*/

.placement-section {
  position: relative;
  background: url('../images/placement-img.jpg') center/cover no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.placement-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* .placement-section .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
} */

.placement-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

.placement-content .icon {
  background: #d32;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.placement-content .badge {
  background: #d32;
  padding: 10px 30px;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 20px;
}

.placement-content h2 {
  font-size: 36px;
  margin: 0 0 15px;
  line-height: 1.3;
}

.placement-content h2 span {
  display: block;
}

.placement-content p {
  font-size: 18px;
  color: #ddd;
}

/*--------------placement columns-----------------------*/
.our-partner {
  img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s;
  }
}

.gap {
  gap: 30px;
}

/*------------gallery---------------*/
.gallery {
  a {
    img {
      height: 250px;
      width: 100%;
      object-fit: cover;
    }
  }
}

/*----------------Free Demo class-----------------------*/


/* Modal Background */
.modal2 {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Content */
.modal-content2 {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Close Button */
.close-btn2 {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.close-btn2:hover {
  color: #000;
}

/* Form Styles */
#demoForm form input[type="text"],
#demoForm form input[type="email"],
#demoForm form input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#demoForm form button {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

#demoForm form button:hover {
  background-color: #45a049;
}

/*------------------chatbot----------------------*/

#chatbot-btn {
  position: fixed;
  bottom: 30px;
  right: 13px;
  background: linear-gradient(135deg, #d32f2f, #d32f2f);
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}

#chatbot-btn:hover {
  transform: scale(1.1);
}

#chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-height: 520px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}

#chatbot-header {
  background: linear-gradient(135deg, #d32f2f, #d32f2f);
  color: #fff;
  padding: 18px;
  font-size: 20px;
  text-align: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

#chatbot-messages {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  background-color: #f0f4f8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bot,
.user {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.bot {
  background: #e0f2f1;
  color: #d32f2f;
  align-self: flex-start;
}

.user {
  background: linear-gradient(135deg, #d32f2f, #d32f2f);
  color: #fff;
  align-self: flex-end;
}

.option-btn {
  background-color: #d32f2f;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin: 6px 6px 0 0;
  transition: background-color 0.3s;
}

.option-btn:hover {
  background-color: #2E7D32;
}

#input-section {
  display: flex;
  border-top: 1px solid #ddd;
  background: #fff;
}

#user-input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
  font-size: 15px;
  border-bottom-left-radius: 18px;
}

#send-btn {
  padding: 14px;
  background-color: #d32f2f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-bottom-right-radius: 18px;
  transition: background-color 0.3s;
}

#send-btn:hover {
  background-color: #2E7D32;
}

#chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

#chatbot-messages::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

/*-----------------------------select------------------------------------*/
.form-container {
  .form-body {
    select {
      color: #757575;
      width: 100%;
      border: none;
      padding: 10px;
      border-bottom: 2px solid #ccc;
      outline: none;
      margin-bottom: 20px;
    }
  }
}

/*------------------------------------form for dynamic uses --------------------------*/
/* message boxes reuse your colour palette — tweak values if needed */
.msg-error {
  background: #ffd7d7;
  color: #b60000;
  padding: .6rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem
}

.msg-success {
  background: #d4f9d4;
  color: #107c10;
  padding: .6rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem
}

/* keep your existing .field-label / .field-input etc. if they already exist;
   otherwise these defaults match your previous look */
.field-label {
  display: block;
  font-weight: 600;
  margin: .8rem 0 .25rem
}

.field-input,
.field-select {
  width: 100%;
  padding: .55rem .75rem;
  border: 1px solid #ccc;
  border-radius: 4px
}

.submit-btn {
  padding: .6rem 2.2rem;
  background: var(--top-header-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer
}

/*----------------------------------------------------------------------------------------*/


.submit-message {
  background-color: yellow;
}

.submit-message h3 {
  color: #107c10;
  text-align: center;
  font-size: 14px;
  padding: 5px 10px;
  margin-top: 10px;
}

.error {
  color: red;
  font-size: 14px;
  position: relative;
  bottom: 10px;
}

/*-----------------------*/
.download-btn {

  background: #d63031;
  color: white;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}