@import "style.css";

.logo-main {
  width: 100%;
}

.logo-view {
  width: 230px;
}

.college-logos {
  width: 45%;
}

@media (max-width: 575.98px) {
  .logo-main {
    width: 82% !important;
  }
}



.scroll-strip {
  display: flex;
  width: max-content;
  animation: scrollText 20s linear infinite;
}

.scroll-item {
  white-space: nowrap;
  font-weight: 600;
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.scroll-strip:hover {
  animation-play-state: paused;
}

.gcfa-zoom-layer {
  animation: zoomEffect 5s ease forwards;
}

/* â”€â”€ TIMELINE ITEM â”€â”€ */
.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 90px;
  position: relative;
  opacity: 0;
  animation: fadeUp .85s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.tl-item:nth-child(1) {
  animation-delay: .15s
}

.tl-item:nth-child(2) {
  animation-delay: .30s
}

.tl-item:nth-child(3) {
  animation-delay: .45s
}

.tl-item:nth-child(4) {
  animation-delay: .60s
}

.tl-item:nth-child(5) {
  animation-delay: .75s
}

.tl-item:nth-child(6) {
  animation-delay: .90s
}

.tl-item:nth-child(7) {
  animation-delay: 1.05s
}

.tl-item:nth-child(8) {
  animation-delay: 1.20s
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

/* connector lines from dot to each side */
.tl-item::before,
.tl-item::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1.5px;
  width: 30px;
  background: #c9a24d;
  opacity: .5;
  z-index: 2;
}

.tl-item::before {
  right: calc(50% + 0px);
  left: calc(50% - 60px);
  width: 30px;
  transform: translateY(-50%);
}

.tl-item::after {
  left: 50%;
  width: 30px;
  transform: translateY(-50%);
}

/* â”€â”€ NODE â”€â”€ */
.tl-node {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.tl-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  position: relative;
  animation: pulse 2.6s ease-in-out infinite;
  flex-shrink: 0;
}

.tl-dot::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1.5px solid rgba(201, 162, 77, .25);
  border-radius: 50%;
  animation: ripple 2.6s ease-in-out infinite;
}

.tl-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: glow 2.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 77, .5)
  }

  50% {
    box-shadow: 0 0 0 10px rgba(201, 162, 77, 0)
  }
}

@keyframes ripple {

  0%,
  100% {
    transform: scale(1);
    opacity: .5
  }

  50% {
    transform: scale(1.5);
    opacity: 0
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 6px rgba(201, 162, 77, .6)
  }

  50% {
    box-shadow: 0 0 14px rgba(201, 162, 77, 1)
  }
}

:root {
  --gold: #C9A24D;
  --gold-light: #E8C97A;
  --gold-dark: #9B7A2F;
  --cream: #FAF6EE;
  --white: #FFFFFF;
  --ink: #1C1409;
  --muted: #6B5744;
  --shadow: rgba(74, 55, 40, 0.13);
  --shadow-gold: rgba(201, 162, 77, 0.22);

  --primary: #804216;
  --primary-dark: #5c2e0e;
  --primary-light: #a8561f;
  --secondary: #dbc442;
  --secondary-light: #f0dc7a;
  --secondary-dark: #b89e2a;
  --cream: #fdf6ec;
  --parchment: #f5e9d0;
  --light-bg: #faf7f2;
  --text-dark: #2c1a0a;
  --text-mid: #5a3a1a;
  --text-light: #8b6040;
  --shadow-warm: rgba(128, 66, 22, 0.18);
  --shadow-gold: rgba(219, 196, 66, 0.3);
  --border-subtle: rgba(128, 66, 22, 0.12);
}
.breadcrumb {
    position: relative;
    background-image: url('../img/about/breadrumb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
      padding: 130px 0;
    margin-bottom: 12px;
    overflow: hidden;
    z-index: 1;
}

/* Dark Overlay */
.breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 56%) 0%, rgb(43 43 43 / 28%) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Bottom Organic Shape */
.breadcrumb::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: -80px;
    width: 110%;
    height: 180px;
    background: #fff;
    border-radius: 50% 50% 0 0;
    z-index: 2;
}

/* Content */
.breadcrumb .container {
    position: relative;
    z-index: 5;
}

.ConnectWithUs {
  position: relative;
  background-image: url(../img/intro-video/img-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.ConnectWithUs::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top:0; left:0; right:0; bottom:0 */
  background: rgba(0, 0, 0, 0.5);
  /* adjust opacity */
  z-index: 1;
}

/* Content inside should be above overlay */
.ConnectWithUs>* {
  position: relative;
  z-index: 2;
}