/* Banner start */
.featured-section {
  position: relative;
  width: 100%;
}
.intro{
  margin: 20px auto !important;
}
.post-header {
  position: relative;
}

.post-thumbnail img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 900px) {
  .post-thumbnail img {
     height: 50vh;
  }
}

.meta-data {
  max-width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  z-index: 2;
}

.post-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 0.9rem;
  opacity: 0.9;
}


/* rotate border */
.rotate-border {
  padding: 50px 0;
  width: 90%;
  margin: 0 auto;
}

.category-main-heading {
  font-family: 'raleway', Helvetica, Arial, sans-serif;
  font-size: 40px;
  color: #000000;
  text-align: center;
  margin-bottom: 50px !important;
}

.ytt-rotate-detail {
  position: relative;
  padding: 20px;
  box-shadow: 0 0 8px #e9e9e9;
  border-radius: 12px;
  z-index: 0;
  overflow: hidden;
  background: #fff;
  /* or your content background color */
}

/* Rotating snake-like border */
.ytt-rotate-detail::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 16px;
  /* slightly larger than the box */
  background: conic-gradient(from 0deg,
      red, orange, yellow, green, blue, indigo, violet, red);

  z-index: -1;
}

.ytt-rotate-detail::before {
  animation: spin-snake 4s linear infinite;
}

/* Optional inner background to keep content clear */
.ytt-rotate-detail::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 10px;
  z-index: -1;
}

.ytt-rotate-detail-heading {
  margin: 0;
  text-align: center;
}

.ytt-rotate-detail p {
  text-align: center;
}

@keyframes spin-snake {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* rotate border end */

/* ea section satrt */

.east-asia-section {
  padding: 70px 0;
  background-color: #e0f9ed63;
}

.ea-container {
  max-width: 90%;
  margin: auto;
}

.ea-intro {
  text-align: center;
  max-width: 750px;
  margin: 10px auto 50px;
  color: #555;
}

.ea-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.ea-row.reverse .ea-image {
  order: 2;
}

.ea-row.reverse .ea-content {
  order: 1;
}

/* image styling */
.ea-image {
  overflow: hidden;
  border-radius: 16px;
}

.ea-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .5s ease;
}

.ea-row:hover .ea-image img {
  transform: scale(1.06);
}

/* content */
.ea-content h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.ea-content p {
  line-height: 1.6;
  color: #444;
}

/* mobile */
@media (max-width: 900px) {
  .ea-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ea-row.reverse .ea-image,
  .ea-row.reverse .ea-content {
    order: unset;
  }

  .ea-image img {
    height: 250px;
  }
}

/* ea section end */

/* content with left image start */

/* content-with-left-image */

.content-with-left-image,
.content-with-right-image {
  width: 100%;
  background-color: #f9f0e063;
}
.cwli-header{
  padding: 20px;
}
.cwli,
.cwri {
  display: flex;
  align-items: stretch;
}

.right {
  padding: 50px 30px;
}

.cwli .left,
.cwri .left,
.cwli .right,
.cwri .right {
  flex: 1;
}

/* Image container fills full column height */
.img-holder {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image fills available space */
.img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content spacing */
.content-holder {
  padding: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .right {
    padding: 30px 20px;
  }

  .reverse-right {
    order: 2;
  }

  .reverse-left {
    order: 1;
  }

  .cwli,
  .cwri {
    flex-direction: column;
  }

  .img-holder {
    height: 300px;
  }
}
/* content with left image end */

/* sea section start here */
.sea-section {
  padding: 70px 0;
  background: #f7f9fc;
}

.sea-container {
  max-width: 90%;
  margin: auto;
}

.sea-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.sea-intro {
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #555;
  margin-bottom: 50px;
}

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

/* FEATURE BLOCK */
.sea-feature {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.sea-feature img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .4s ease;
}

.sea-feature:hover img {
  transform: scale(1.07);
}

.sea-content {
  padding: 25px;
}

.sea-content h3 {
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .sea-layout {
    grid-template-columns: 1fr;
  }

  .sea-feature img {
    height: 250px;
  }
}

/* sea section end */


/* blue grid started here */
.seo-process {
  max-width: 90%;
  margin: auto;
  padding: 60px 0;
  text-align: center;
}

.seo-process h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.step-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.step {
  background: #003173;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content {
  padding: 0 20px 30px 20px;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px #ffffff36;
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #003173;
  background: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 0 10px #fff;
}

.step h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.step p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}
/* seo precess end  */