/* ============== hero-area ============ */
/* carosel start */
.carousel {
  width: 100%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  width: 100%;
  flex: 0 0 100%;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #333;
}

/* carosel end */

/* ------------------------------------------------- */



/* ------------------------------------------------- */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 0px 0 120px;
  background-image: url("../img/hero/hero-bg.jpg");
  
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section {
    padding: 180px 0 140px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section {
    padding: 180px 0 140px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content {
    margin-bottom: 50px;
  }
}

.hero-section .hero-content span {
  font-family: "Archivo Black", sans-serif;
  font-size: 30px;
  color: #e30613;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content span {
    font-size: 25px;
  }
}

.hero-section .hero-content h1 {
  font-size: 50px;
  margin-bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content h1 {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content h1 {
    font-size: 37px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 36px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 45px;
  }
}

.hero-section .hero-content p {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

.hero-section .hero-shape .shape {
  position: absolute;
  z-index: -1;
}

.hero-section .hero-shape .shape.shape-1 {
  top: -285px;
  right: -300px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-shape .shape.shape-1 {
    top: -420px;
    right: -550px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-shape .shape.shape-1 {
    top: -400px;
    right: -550px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-shape .shape.shape-1 {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-shape .shape.shape-1 {
    display: none;
  }
}

.client-logo-section .single-logo {
  opacity: .43;
  transition: all 0.3s ease-out 0s;
}

.client-logo-section .single-logo:hover {
  opacity: 1;
}

.client-logo-section .single-logo img {
  max-width: 100%;
}















/* ========================================================================= */
/* ================= Placement Section ================= */

.placement-section {
  padding: 80px 0;
  background: #f9fafb;
}

.placement-section .section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.placement-section .section-title p {
  color: red;
  margin-bottom: 40px;
}

/* Carousel Wrapper */
.placement-carousel {
  overflow: hidden;
}

/* Logo Card */
.logo-item {
  background: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 1;
  transition: 0.3s ease;
}

.logo-item:hover img {
  /* filter: grayscale(0); */
  opacity: 0.45;
}

/* Mobile */
@media (max-width: 767px) {
  .placement-section {
    padding: 60px 0;
  }

  .placement-section .section-title h2 {
    font-size: 26px;
  }

  .logo-item img {
    max-height: 40px;
  }
}

/* ================= Gallery Section ================= */

.gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-section .section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallery-section .section-title p {
  color: #666;
  margin-bottom: 50px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Image Card */
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* ================= Tablet ================= */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================= Mobile ================= */
@media (max-width: 767px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-section .section-title h2 {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item img {
    height: 180px;
  }
}
/* ================================================================ */

/* ========================= Courses Section ========================= */
:root{
  --mts-red: #E50914;
  --mts-blue: #174A8B;
  --mts-dark-blue: #0E3C77;
  --mts-bg-light: #F4F6FA;
  --mts-text-muted: #5E6E82;
  --mts-card-border: #E6ECF3;
}

.courses-section{
  padding: 80px 0;
  background: #ffffff;
  
}

.courses-section .section-title h2{
  font-size: 40px;
  font-weight: 800;
  color: var(--mts-dark-blue);
  margin-bottom: 35px;
}

/* Card */
.course-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--mts-card-border);
  transition: 0.3s ease;
  height: 100%;
  
}

.course-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

/* Image */
.course-img{
  height: 210px;
  overflow: hidden;
}

.course-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.course-card:hover .course-img img{
  transform: scale(1.06);
}

/* Body */
.course-body{
  padding: 20px 20px 22px;
}

.course-body h4{
  font-size: 20px;
  font-weight: 800;
  color: var(--mts-dark-blue);
  margin-bottom: 10px;
}

.course-body p{
  font-size: 15px;
  color: var(--mts-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Learn More */
.course-link{
  font-weight: 700;
  text-decoration: none;
  color: var(--mts-red);
  display: inline-block;
  transition: 0.25s ease;
}

.course-link:hover{
  color: var(--mts-blue);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px){
  .courses-section .section-title h2{
    font-size: 32px;
  }
  .course-img{
    height: 190px;
  }
}

@media (max-width: 575px){
  .courses-section{
    padding: 60px 0;
  }
  .course-img{
    height: 180px;
  }
}