@charset "UTF-8";
.animation-circle {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bounce-content {
  -webkit-animation-name: bounce;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@font-face {
  font-family: "Obviously Narrow";
  src: url("../../sass/font/Obviously-Narrow.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Obviously Narrow";
  src: url("../../sass/font/Obviously-NarrowMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Obviously Narrow";
  src: url("../../sass/font/Obviously-NarrowSemibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Obviously Narrow";
  src: url("../../sass/font/Obviously-NarrowBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --main-text: #ec008c;
}

body {
  background-color: #fefefe;
  line-height: 1.4;
  font-family: "Obviously Narrow", sans-serif !important;
}

.single-body img {
  width: 100% !important;
  height: auto !important;
  border-radius: 30px;
  box-shadow: 0 0 6px rgb(238, 238, 238);
  filter: brightness(1.2);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

:root {
  --primary-color: #d7328a;
  --secondary-color: #0f172a;
  --accent-color: #10b981;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
}

/* ===== Global Styles ===== */
html {
  scroll-behavior: smooth !important;
}

p {
  line-height: 1.8 !important;
  letter-spacing: 0.9px !important;
  color: #313131;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.custom-pagination ul {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.custom-pagination li {
  display: inline-block;
}

.custom-pagination a,
.custom-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  font-weight: 500;
  background: #f5f5f5;
  color: #333;
  transition: 0.3s;
}

.custom-pagination a:hover {
  background: #ec008c;
  color: #fff;
  transform: translateY(-2px);
}

.custom-pagination .current {
  background: #ec008c;
  color: #fff;
  font-weight: bold;
}

.custom-pagination .prev,
.custom-pagination .next {
  width: auto;
  padding: 0 12px;
}

/* SECTION */
.blog-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #efefef;
  /* GRID BACKGROUND */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.032) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.032) 1px, transparent 1px);
  background-size: 70px 70px;
  padding: 100px 0;
}

/* BIG BACKGROUND TEXT */
.bg-text {
  position: absolute;
  top: 40%;
  left: 35%;
  transform: translate(-50%, -50%);
  font-size: 320px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: 10px;
  user-select: none;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.main-row {
  align-items: end;
}

/* LEFT HEADING */
.main-title {
  /* text-transform: uppercase; */
  font-weight: 500;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 97px;
  position: relative;
  z-index: 3;
  color: #000000;
  font-family: "Obviously Narrow", sans-serif;
}

/* RIGHT TEXT */
.description {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  max-width: 500px;
  margin-left: auto;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .main-title {
    font-size: 70px;
    line-height: 42px;
  }
  .bg-text {
    font-size: 220px;
  }
}
@media (max-width: 991px) {
  .blog-section {
    min-height: auto;
    padding: 80px 0;
  }
  .main-title {
    font-size: 58px;
    margin-bottom: 30px;
  }
  .description {
    margin-left: 0;
  }
  .bg-text {
    font-size: 170px;
  }
}
@media (max-width: 768px) {
  .main-title {
    font-size: 46px;
  }
  .description {
    font-size: 17px;
  }
  .bg-text {
    font-size: 110px;
  }
}
@media (max-width: 480px) {
  .main-title {
    font-size: 36px;
  }
  .description {
    font-size: 15px;
    line-height: 1.7;
  }
  .bg-text {
    font-size: 70px;
  }
}
:root {
  --accent-color: #ec008c;
  /* Vibrant Pink from image_56daee.jpg */
  --text-main: #1A1A1A;
  --text-muted: #666666;
  --card-bg: #ffffff;
  --transition-speed: 0.4s;
}

.blog-sections {
  background-color: #efefef;
  padding: 80px 0;
}

/* Grid layout for 4 columns */
/* Modified Grid layout for exactly 2 columns */
.blog-grid {
  display: grid;
  /* This forces two equal columns */
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  /* Essential space for the hover offset */
}

/* Tablet / Mobile tweaks */
@media (max-width: 992px) {
  /* Optional: maintain 2 columns until tablet size, then switch to 1 */
  .blog-grid {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .blog-grid {
    /* Stacks cards on top of each other on mobile */
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-card-container:hover::before {
    transform: translate(8px, -8px);
  }
}
.blog-card-container {
  position: relative;
  z-index: 1;
}

/* 1. Set Opacity to 1 and add the offset directly to the base state */
.blog-card-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 30px;
  z-index: -1;
  /* MODIFICATIONS START HERE */
  opacity: 1;
  /* Always visible */
  transform: translate(12px, -12px);
  /* Permanent offset */
  /* Keep transition if you still want a slight movement on hover */
  transition: transform var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 2. Optional: Add a small extra nudge on hover, or remove this entirely */
.blog-card-container:hover::before {
  transform: translate(16px, -16px);
}

.blog-card {
  background: var(--card-bg);
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 30px;
}

.blog-card-container:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #000;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  color: var(--accent-color);
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
  letter-spacing: normal;
}

.blog-title a {
  text-decoration: none;
  color: var(--text-main);
  transition: color 0.3s;
}

.blog-card-container:hover .blog-title a {
  color: var(--accent-color);
}

.blog-divider {
  width: 35px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 20px;
}

.tag-item {
  background: #f4f4f4;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 5px;
  text-transform: uppercase;
}

.blog-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-more-btn {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.author-name {
  font-size: 12px;
  color: var(--text-muted);
}

/* Tablet / Mobile tweaks */
@media (max-width: 768px) {
  .blog-card-container::before {
    transform: translate(8px, -8px);
    opacity: 1;
  }
}
/* Global Vision Theme Variables */
:root {
  --vzn-black: #000000;
  --vzn-dark-grey: #0f0f0f;
  --vzn-pink: #ec008c;
  --vzn-white: #ffffff;
  --vzn-marquee-text: #1a1a1a;
}

.vzn-main-wrapper {
  background-color: var(--vzn-black);
  color: var(--vzn-white);
  overflow-x: hidden;
  padding: 80px 0;
}

/* ════════════ TWO COLUMN GRID ════════════ */
.vzn-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
  /* Vertical / Horizontal gap */
}

.vzn-card-outer {
  position: relative;
  z-index: 1;
}

.vzn-horizontal-card {
  background: var(--vzn-dark-grey);
  border-radius: 30px;
  display: flex;
  align-items: stretch;
  /* Ensures image fills left side height */
  overflow: hidden;
  height: 300px;
  /* Fixed height for consistent grid */
  border: 1px solid #222;
}

/* ════════════ FULL IMAGE COVER ════════════ */
.vzn-card-figure {
  width: 45%;
  height: 100%;
}

.vzn-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Forces image to cover left side */
  transition: transform 0.6s ease;
}

.vzn-card-outer:hover .vzn-card-figure img {
  transform: scale(1.1);
}

/* ════════════ CONTENT SIDE ════════════ */
.vzn-card-content {
  width: 55%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vzn-meta-tag {
  color: var(--vzn-pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.vzn-entry-title {
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.vzn-entry-title a {
  color: var(--vzn-white);
  text-decoration: none;
  transition: color 0.3s;
}

.vzn-entry-title a:hover {
  color: var(--vzn-pink);
}

.vzn-btn-prime {
  background: var(--vzn-white);
  color: var(--vzn-black);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s;
}

.vzn-btn-prime:hover {
  background: var(--vzn-pink);
  color: var(--vzn-white);
}

/* ════════════ MARQUEE BOTTOM (image_557d99.png) ════════════ */
.vzn-bottom-marquee {
  overflow: hidden;
  padding: 40px 0;
}

.vzn-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: vzn_scroll 30s linear infinite;
}

.vzn-marquee-track span {
  font-size: 120px;
  /* Massive size like image_557d99.png */
  font-weight: 900;
  color: var(--vzn-marquee-text);
  margin-right: 80px;
  letter-spacing: -3px;
}

@keyframes vzn_scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ════════════ PAGINATION ════════════ */
.vzn-pagination-wrap ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 60px;
  gap: 12px;
}

.vzn-pagination-wrap a,
.vzn-pagination-wrap span {
  color: var(--vzn-white);
  padding: 12px 22px;
  background: var(--vzn-dark-grey);
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.vzn-pagination-wrap .current {
  background: var(--vzn-pink);
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1200px) {
  .vzn-blog-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .vzn-horizontal-card {
    flex-direction: column;
    height: auto;
  }
  .vzn-card-figure {
    width: 100%;
    height: 220px;
  }
  .vzn-card-content {
    width: 100%;
    padding: 25px;
  }
  .vzn-marquee-track span {
    font-size: 60px;
  }
}
.schools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.school-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.35s ease;
  border-radius: 30px;
}

.school-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
  transform: translateY(-5px);
}

.card-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.school-card:hover .card-thumb img {
  transform: scale(1.06);
}

.card-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--main-text);
  transition: width 0.4s ease;
  z-index: 2;
}

.school-card:hover .card-bar {
  width: 100%;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--main-text);
  font-weight: 500;
}

.card-name {
  font-size: 21px;
}

.card-sep {
  width: 25px;
  height: 2px;
  background: #C9A84C;
  transition: width 0.3s ease;
}

.school-card:hover .card-sep {
  width: 45px;
}

.card-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.prog-tag {
  font-size: 15px !important;
  padding: 3px 8px;
  border-radius: 30px;
  background: #f5f5f5;
  border: 1px solid #eee;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.card-link {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--main-text);
  text-decoration: none;
  display: inline-flex;
  gap: 5px;
  transition: 0.2s;
}

.card-link:hover {
  gap: 8px;
}

.card-est {
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {
  .schools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .schools-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
