body {
    background-color: #f4f4f4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
    color: white;
}

a:hover {
    color: #88c9e7;
}

/* header, footer {
    padding: 20px;
    background-color: #0073aa;
    color: white;
    text-align: center;
} */
/* .wp-block-outermost-icon-block{
    display: block;
 } */

p {
    margin: 0 !important;
}

.hero-col {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease;
}

.hero-col.show {
  opacity: 1;
  transform: translateY(0);
}
.about-col {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease;
}

.about-col.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-col:hover {
  transform: translateY(-15px);
  background-color: #0795fbe2;
}
.p-col:hover {
  transform: translateY(-15px);
}
.p-col {
  transition: all 0.6s ease-out;
}

.image-fill-column {
    display: flex !important;
    align-items: stretch !important;
}
.image-fill-column .wp-block-image {
    width: 100% !important;
    flex: 1 !important;
}
.image-fill-column .wp-block-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.course-img {
    transition: transform 0.3s ease !important;
    transform-origin: center center !important;
}

.course-img:hover {
    transform: scale(1.05) !important;
    overflow: hidden;
}

main {
    padding: 40px;
}

.swiper-slide-next .c-text {
  background-color: rgba(0, 217, 255, 0.918) !important; 
  padding: 5px;/* change to your desired color */
}

.course-col {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease-out;
}

.course-col.show {
  opacity: 1;
  transform: scale(1);
}
.course-col:hover .course-title {
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.5s ease;
}
/* .course-col:hover .overlay { */
  /* opacity: 0.8; show dark overlay */
  /* transition: opacity 0.3s ease; */
/* } */
.course-img {
  transition: transform 0.5s ease; 
  /* smooth zoom */
}

.course-col:hover .course-img {
  transform: scale(1.1); 
  opacity: 0.5;
  
}
.course-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.course-container img {
  display: block;

}

.full-height {
  flex: 1;         /* fill vertical space */
  height: 100%;    /* ensure 100% height */
}

/* //About Row Home  */
/* starting state: hidden and shifted left */
.about-row {
  opacity: 0;
  transform: translateX(-150px);   /* shift left */
  transition: all 1.5s ease-out;
}

/* when active (visible) */
.about-row.show {
  opacity: 1;
  transform: translateX(0);
}

/* starting state */
.whatwedo {
  opacity: 0;
  transform: translateX(150px);   /* start shifted right */
  transition: all 1.5s ease-out;
}

/* active state */
.whatwedo.show {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children (optional for smoother reveal) */
.whatwedo > * {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.whatwedo.show > * {
  opacity: 1;
  transform: translateX(0);
}

.whatwedo.show > *:nth-child(1) { transition-delay: 0.2s; }
.whatwedo.show > *:nth-child(2) { transition-delay: 0.4s; }
.whatwedo.show > *:nth-child(3) { transition-delay: 0.6s; }
.whatwedo.show > *:nth-child(4) { transition-delay: 0.8s; }



/* our exprience */
/* starting state */
.our-experience {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* active state */
.our-experience.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* stagger effect for children (headings, paragraphs, etc.) */
.our-experience > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.our-experience.show > * {
  opacity: 1;
  transform: translateY(0);
}

.our-experience.show > *:nth-child(1) { transition-delay: 0.2s; }
.our-experience.show > *:nth-child(2) { transition-delay: 0.4s; }
.our-experience.show > *:nth-child(3) { transition-delay: 0.6s; }
.our-experience.show > *:nth-child(4) { transition-delay: 0.8s; }

/* //Our Purpose  */
/* starting state */
.our-pourpose {
  opacity: 0;
  transform: translateY(60px);  /* start lower (down) */
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* active state */
.our-pourpose.show {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children inside */
.our-pourpose > * {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.our-pourpose.show > * {
  opacity: 1;
  transform: translateY(0);
}

/* stagger timings */
.our-pourpose.show > *:nth-child(1) { transition-delay: 0.2s; }
.our-pourpose.show > *:nth-child(2) { transition-delay: 0.4s; }
.our-pourpose.show > *:nth-child(3) { transition-delay: 0.6s; }
.our-pourpose.show > *:nth-child(4) { transition-delay: 0.8s; }








