:root {
  --hero-bg-start: #3b4a96;
  --hero-bg-end: #2a3a8a;

  --hero-text-primary: #ffffff;
  --hero-text-secondary: #dbeaff;

  --hero-button-arrow: #4f60d1;
  --hero-button-text: #333;

  --tag-bg: rgba(255, 255, 255, 0.1);
  --tag-border: rgba(255, 255, 255, 0.2);

  --guid-title-text: #1a1a1a;
  --guid-body-text: #5a677d;

  --cta-bg-light: #f7f9ff;
  --cta-title-red: #ff6363;
  --cta-text-dark: #373a40;

  --tag-text: #5a4fcf;
  --border: #e9ecef;

  --cta-button-arrow: #6c63ff;
  --cta-pattern-color: #e1e5f2;
  --hero-card-primary: #f0f0f7;
  --selection-text-secondary: rgba(255, 255, 255, 0.8);
  --guid-title-blue: #4350B4;
  --guid-body-blue: #313a8c;
    --guid-title-dark: #1c1c1c;
  --overlay-bg: rgba(255, 255, 255, 0.1);
  --overlay-border: rgba(255, 255, 255, 0.2);
  --overlay-text-primary: #ffffff;
}

@media screen and (max-width: 768px) {

  .guid-title,
  .guid-body,
  .selection-title,
  .university-title,
  .content-overlay-panel {
    font-size: 32px;
  }
}

/* button css */

.hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--hero-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  font-weight: 600;
  color: var(--hero-button-text);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: var(--hero-button-text);
  text-decoration: none;
}

.hero-cta span {
  padding: 0.8rem 1.5rem;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.hero-cta .arrow-wrapper {
  background-color: var(--hero-button-arrow);
  color: white;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  align-self: stretch;
}
.guid-cta {
  background-color: #ffffff;
  color: var(--guid-title-text);
  border: 1px solid var(--cta-pattern-color);
  border-radius: 8px;
  overflow: hidden;
}

.guid-cta span {
  padding: 0.8rem 1.5rem;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.guid-cta .arrow-wrapper {
  background-color: #4f60d1;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  align-self: stretch;
}











/* section 1 */


.hero-section-three-col {
  min-height: 80vh;
  display: grid;
  align-items: center;
  background: linear-gradient(105deg, var(--hero-bg-end) 0%, var(--hero-bg-start) 100%);
  color: var(--hero-text-primary);
  border-radius: 24px;
  margin: 100px 1rem;
  overflow: hidden;

}

.hero-center-three-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-areas: "title image text";
  gap: 3rem;
  align-items: center;
  height: 100%;
}

.hero-content-left {
  grid-area: title;
  text-align: left;
  position: relative;
  margin: 0 auto;
  align-self: end;
}

.hero-image-container {
  grid-area: image;
  position: relative;
  /* max-width: 950px; */
  /* margin: 0 auto; */
  align-self: end;
}

.hero-content-right {
  grid-area: text;
  display: flex;
  flex-direction: column;
  /* gap: 2rem; */
  text-align: left;
  align-items: flex-start;
  text-align: left;
  position: relative;
  margin: 70px 10px 70px 50px;
  align-self: end;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.15;
  margin: 70px 10px 70px 50px;
  padding: 0;
  color: #e9ecefb5;
}

.hero-text {
  color: #e9ecefb5;
  font-size: 24px;
  max-width: 400px;
}

.hero-image {
  width: 100%;
}



.arrow-wrapper {
  background-color: var(--hero-button-arrow);
  display: grid;
  place-items: center;
  padding: 0.8rem;
  align-self: stretch;
}

.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--tag-bg);
  border: 1px solid var(--tag-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff9e;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tag-study {
  top: 10%;
  left: 10%;
}

.tag-prosper {
  bottom: 45%;
  left: 0%;
}

.tag-build {
  top: 30%;
  right: 5%;
}


@media screen and (max-width: 1023px) {
  .hero-center-three-col {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "title"
      "text";
    gap: 1rem;
    padding: 2rem;
  }

  .hero-image-container {

    align-self: auto;
    max-width: 350px;
  }

  .hero-content-left,
  .hero-content-right {

    align-self: auto;
    text-align: center;
    margin: 0;
  }

  .hero-content-right {
    align-items: center;
  }

  .hero-title {
    text-align: center;
    font-size: 56px;
    margin: 0;
    padding: 0;
  }

  .hero-text {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 2rem;
  }
}


@media screen and (max-width: 767px) {
  .hero-section-three-col {
    margin: 50px 1rem;
    min-height: auto;
  }

  .hero-center-three-col {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-text {
    font-size: 16px;
  }

  .floating-tag {
    padding: 0.5rem 1rem;
    font-size: 14px;
    gap: 0.5rem;
  }

  .floating-tag svg {
    width: 20px;
    height: 20px;
  }

  .tag-study {
    top: 5%;
  }

  .tag-prosper {
    bottom: 10%;
  }

  .tag-build {
    top: 30%;
  }
}

@media screen and (max-width: 425px) {
  .hero-section-three-col {
    margin: 6rem 1rem;

  }
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content-left,
.hero-content-right,
.hero-image-container {
  opacity: 0;
  animation: heroFadeInUp 1s ease-out forwards;
}

.hero-content-left {
  animation-delay: 0.2s;
}

.hero-image-container {
  animation-delay: 0.5s;
}

.hero-content-right {
  animation-delay: 0.7s;
}

@keyframes floatTag {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.floating-tag {
  animation: floatTag 3s ease-in-out infinite;
}

/* Optional: Add staggered delays for each tag */
.tag-study {
  animation-delay: 0s;
}

.tag-prosper {
  animation-delay: 1s;
}

.tag-build {
  animation-delay: 2s;
}



/* section 4 */

.guid-section {
  padding: 3rem 0;
}

.guid-container {
  display: grid;
  align-items: center;
  gap: 5rem;
  grid-template-columns: 1fr 1.5fr;
}

.guid-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 20px;
}

.guid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.guid-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0rem 2rem;
}

.guid-intro {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.guid-eyebrow {
  color: var(--hero-button-arrow);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.guid-title {
  color: var(--guid-title-text);
  line-height: 1.3;
  max-width: 400px;
}

.guid-text {
  color: var(--guid-body-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.guid-stats {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.guid-stat-card {
  background-color: var(--cta-bg-light);
  border: 1px solid var(--cta-pattern-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.guid-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.guid-card-icon {
  color: var(--hero-button-arrow);
  margin-bottom: 1rem;
}

.guid-card-number {
  color: var(--guid-title-text);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guid-card-text {
  color: var(--guid-body-text);
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .guid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .guid-intro {
    grid-template-columns: 1fr;
  }

  .guid-stats {
    grid-template-columns: 1fr;
  }
}



@media screen and (max-width: 768px) {
  .guid-section {
    padding: 4rem 0;
  }

  .guid-container {
    padding: 0 2rem;
    gap: 2rem;
  }

  .guid-content-wrapper {
    gap: 3rem;
    padding: 0;
  }

  .guid-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .guid-intro {
    text-align: center;
  }

  .guid-title {
    margin: 0 auto;
  }

  .guid-text {
    margin: 0 auto 2rem auto;
  }

  .guid-cta {
    margin: 0 auto;
  }

  .guid-stats {
    grid-template-columns: auto auto auto;
  }
}

@media screen and (max-width: 425px) {
  .guid-stats {
    grid-template-columns: auto;
  }

  .guid-card-text {
    margin: 0;
  }

  .guid-stat-card {
    padding: 1rem;
  }
}



/* video section */


.scholarship-section {
  position: relative;
  min-height: 85vh;
  margin: 2rem;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-overlay-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 550px;
  height: 100%;
  padding: 3rem;
  /* background: var(--overlay-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);  */
  border-left: 1px solid var(--overlay-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--overlay-text-primary);
}

.content-overlay-panel h2 {
  color: var(--hero-text-primary);
}

.promo-title {

  margin-bottom: 1.5rem;
}

.promo-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--hero-text-primary);
}

.promo-logo {
  width: 120px;
  margin-bottom: 1.5rem;
}

.promo-cta {
  max-width: 185px;
}

.promo-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .scholarship-section {
    margin: 1rem;
    align-items: stretch;
  }

  .content-overlay-panel {
    max-width: 100%;
    padding: 2rem;
    text-align: center;
    border-left: none;
  }

  .promo-logo,
  .promo-cta {
    align-self: center;
  }
}




/* section 4 */
.guid-section {
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
}

.services {
  width: 100%;
  /* max-width: 1200px; */
  padding: 50px 20px;

}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header p {
  color: var(--hero-button-arrow);
  font-weight: 600;
  letter-spacing: 1px;
}

.services-header h2 {
  margin: 10px 0 0;
}

.services-content {
  display: flex;
  align-items: center;
  background-color: #4a3aff;
  color: var(--white-color);
  padding: 40px;
  border-radius: 20px;
}

.service-image {
  flex: 1.2;
  padding-right: 40px;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
}

.service-details {
  flex: 1;
}

.service-tabs {
  display: flex;
  flex-direction: column;
}

.tab-images {
  align-self: flex-end;
  margin-bottom: 20px;
  position: relative;
  width: 80px;
  height: 80px;
}

.tab-image-pane {
  position: absolute;
  top: -100px;
  left: -100px;
  display: none;
}

.tab-image-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-images img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  /* border: 3px solid #fff; */
}

.tab-content .tab-pane {
  display: none;
  max-width: 600px;
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
  text-align: left;
  color: var(--white-color);
  font-weight: 500;
}

.tab-pane h3 {
  color: var(--white-color);

}

.tab-content .tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  font-size: 2em;
  margin-bottom: 10px;
}

.tab-content p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

@media screen and (max-width:1024px) {

  .services-content {
    flex-direction: column;
    text-align: center;
  }

  .service-image {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .tab-image-pane {
    position: absolute;
    top: 0;
    left: calc(50% - 100px);
    display: none;
    z-index: 1;
  }

  .tab-content {
    z-index: 2;
  }
}



@media screen and (max-width:768px) {
  .services-content {
    flex-direction: column;
    text-align: center;
  }

  .tab-image-pane {
    position: absolute;
    top: 0px;
    left: -100px;
    display: none;
    z-index: 1;
  }
  .tab-content {
    z-index: 2;
  }

}

@media screen and (max-width:425px) {
  .tab-images img {
    width: 150px;
    height: 150px;
  }
  .service-image {
    padding-right: 0;
    margin-bottom: 20px;
  }
}








/* card section  */
.study-guide-container {

  background-color: #f7f9ff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  margin: 0;
}

.study-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1800px;
  padding: 2rem;
}

.study-intro {
  max-width: 400px;
}

.intro-subheading {
  color: #5d3eff;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.intro-heading {
  font-size: 2.8rem;
  color: #1a1a1a;
  font-weight: 700;
  margin: 1rem 0 2rem 0;
  line-height: 1.2;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 600;
  font-size: 0.8rem;
}

.learn-more-btn span {
  padding: 0.8rem 1.5rem;
}

.learn-more-btn .arrow-btn {
  background-color: #5d3eff;
  color: white;
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
}



.study-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 80px;
  height: 100px;
  transition: width 0.9s ease-in-out, height 0.9s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-card.active {
  width: 350px;
  height: 450px;
  align-items: flex-start;
}

.step-num {
  font-size: 2rem;
  font-weight: 700;
  color: #ff4d4d;
  position: absolute;
  transition: all 0.4s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-card.active .step-num {
  top: 2rem;
  left: auto;
  right: 2.5rem;
  transform: none;
  font-size: 2.5rem;
}

.card-contente {
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in-out 0.2s, transform 0.3s ease-in-out 0.2s, visibility 0.3s 0.2s;
}

.step-card.active .card-contente {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.step-icon {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.step-icon img {
  width: 80px;
}

.step-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.step-description {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .study-section {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
    padding: 2rem;
  }

  .study-intro {
    max-width: 600px;
  }

  .study-content {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .study-section {
    gap: 3rem;
  }

  .intro-heading {
    font-size: 2.2rem;
  }

  .study-content {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .step-card {
    width: 90%;
    max-width: 400px;
    height: 80px;
    transition: height 0.9s ease-in-out;
  }

  .step-card.active {
    width: 90%;
    max-width: 400px;
    height: 420px;
  }

  .step-num {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .step-card.active .step-num {
    top: 1.5rem;
    right: 1.5rem;
    left: auto;
    transform: none;
  }

  .step-card.active .card-contente {
    padding-top: 5rem;
  }

  .step-icon {
    margin-top: 1.5rem;
  }
}



/* slider section  */

/* .hero-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
} */



.university-section {
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.university-header {
  margin-bottom: 3rem;
}

.university-eyebrow {
  color: var(--hero-button-arrow);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.university-title {
  color: var(--guid-title-text);
  line-height: 1.3;
}

.university-card {
  display: block;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 300px;
  transition: transform 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
  width: 500px;
}

.university-card:hover {
  transform: scale(1.03);
}

.university-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--hero-text-primary);
  padding: 2rem;
  display: flex;
  align-items: flex-end;
}

.card-contente {
  text-align: left;
  color: var(--hero-text-primary);
}

.card-rank {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--hero-text-primary);
}

.card-name {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--hero-text-primary);
  margin-bottom: 0px;
}



.university-carousel-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin: 1rem 0;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.university-carousel {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
  animation: scroll 40s linear infinite;
}

.university-carousel-wrapper:hover .university-carousel {
  animation-play-state: paused;
}

.carousel-reverse {
  animation-direction: reverse;
}

.university-cta-container {
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .university-section {
    padding: 4rem 0;
  }

  .university-card {
    width: 300px;
    height: 280px;
  }

  .university-header {
    margin-bottom: 2rem;
  }

  .card-overlay {
    padding: 1.5rem;
  }

  .card-rank {
    font-size: 1.25rem;
  }

  .card-name {
    font-size: 0.9rem;
  }

  .university-cta-container {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .university-card {
    width: 250px;
    height: 250px;
  }
}

/* resources section  */

.resources {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 4rem;
}

.resources-container {
  display: flex;
  gap: 50px;
  width: 100%;
  max-width: 1600px;
}

.sidebar {
  flex-basis: 20%;
}

.sidebar h1 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 50px;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar nav li {
  margin-bottom: 25px;
  cursor: pointer;
}

.sidebar nav a {
  text-decoration: none;
  color: #888;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.sidebar nav a.active {
  color: #252525;
}

.sidebar nav li.active-link {
  border-bottom: 2px solid #6c63ff;
  padding-bottom: 8px;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.resources-grid {
  flex-basis: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

.hidden {
  display: none;
}

.cart {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

.cart img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.cart-content {
  padding: 25px;
  z-index: 2;
}

.cart-date {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cart-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--hero-text-primary);
}

.cart-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.cart-large .cart-title {
  font-size: 24px;
}

.cart-top-right {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  min-height: 220px;
}

.cart-bottom-right-1 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  min-height: 220px;
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 20px;
}

.cart-bottom-right-1 .cart {
  position: relative;
  width: 100%;
}

.learn-more-btn {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  margin-top: 20px;
  cursor: pointer;
}

.learn-more-btn span {
  color: #333;
  font-weight: 600;
}

.learn-more-btn .arrow-icon {
  background-color: #6c63ff;
  color: white;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .resources-container {
    flex-direction: column;
  }

  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cart-large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    min-height: 350px;
  }

  .cart-top-right {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .cart-bottom-right-1 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .cart-large,
  .cart-top-right,
  .cart-bottom-right-1 {
    grid-column: auto;
    grid-row: auto;
  }

  .cart-bottom-right-1 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .cart-bottom-right-1 {
    grid-template-columns: 1fr;
  }
}