/* ============ HOME PAGE STYLES ============ */

/* HERO */
.hero {
  width: 100%;
  height: 84vh;
  min-height: 500px;
  max-height: 540px;
  position: relative;
  overflow: hidden;
}
.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 6, 26, 0.86) 0%,
    rgba(6, 6, 26, 0.3) 48%,
    rgba(6, 6, 26, 0.9) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 28px;
}
.hero-badge {
  display: inline-block;
  background: var(--pri);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse 2.5s infinite;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.05;
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold-light), #ffeaa7, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 4s infinite;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}
.btn-pri {
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: var(--tr-spring);
  background: var(--pri);
  color: #fff;
  border: 2px solid var(--pri);
}
.btn-pri:hover {
  background: var(--pri-dark);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(216, 31, 37, 0.4);
}
.btn-out {
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: var(--tr-spring);
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-out:hover {
  border-color: #fff;
  transform: translateY(-4px);
}

/* SECTIONS */
.sec {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.sec-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.sec-badge {
  display: inline-block;
  background: var(--pri-soft);
  color: var(--pri);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(216, 31, 37, 0.15);
}
.sec-title {
  font-size: clamp(2.1rem, 3.8vw, 2.8rem);
  font-weight: 800;
  color: var(--sec);
  margin-bottom: 12px;
  line-height: 1.2;
}
.sec-title span {
  background: linear-gradient(135deg, var(--pri), #ff4444, var(--pri));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s infinite;
}
.sec-desc {
  max-width: 660px;
  margin: 0 auto;
  color: #4a4a5a;
  font-size: 0.96rem;
  line-height: 1.7;
}
.bg-gray {
  background: var(--gray);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: scalePulse 7s ease-in-out infinite;
}
@keyframes scalePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--pri);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 8px 24px rgba(216, 31, 37, 0.35);
}
.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--pri);
  margin-bottom: 16px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(216, 31, 37, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
  border-left-color: var(--gold);
}
.about-card h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-card h4 i {
  color: var(--pri);
}
.about-card p {
  font-size: 0.9rem;
  color: #4a4a5a;
  line-height: 1.65;
}

/* TRIPLE CARDS */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.triple-card {
  background: linear-gradient(160deg, #ffffff 0%, #fafbfc 50%, #f5f5f7 100%);
  border-radius: var(--radius-2xl);
  padding: 48px 30px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: var(--tr-spring);
  border: 2px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.triple-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(216, 31, 37, 0.03) 0%,
    rgba(201, 168, 76, 0.04) 50%,
    rgba(216, 31, 37, 0.02) 100%
  );
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  z-index: 0;
}
.triple-card::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 31, 37, 0.4),
    rgba(201, 168, 76, 0.5),
    transparent
  );
  z-index: 2;
  border-radius: 0 0 50% 50%;
  opacity: 0.6;
}
.triple-card:nth-child(1) {
  animation: float 4.5s ease-in-out infinite;
}
.triple-card:nth-child(2) {
  animation: floatSlow 5s ease-in-out infinite;
}
.triple-card:nth-child(3) {
  animation: float 4s ease-in-out infinite;
}
.triple-card:hover {
  transform: translateY(-14px) !important;
  box-shadow:
    0 20px 50px rgba(216, 31, 37, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(216, 31, 37, 0.25);
  animation: none;
  background: linear-gradient(160deg, #fff 0%, #fffefe 50%, #fafafa 100%);
}
.triple-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--tr-spring);
  position: relative;
  z-index: 1;
  animation: iconFloat 3.5s ease-in-out infinite;
  box-shadow:
    0 4px 16px rgba(216, 31, 37, 0.1),
    inset 0 2px 8px rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, var(--pri), #c0171f);
  color: #fff;
}
.triple-card:hover .triple-icon {
  transform: scale(1.12) rotate(-5deg);
  animation: none;
  box-shadow: 0 12px 32px rgba(216, 31, 37, 0.35);
}
.triple-card h3 {
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.triple-card p {
  font-size: 0.9rem;
  color: #4a4a5a;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* FEATURE CARDS */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.feat-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 38px 26px;
  box-shadow:
    0 18px 45px rgba(216, 31, 37, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transition: var(--tr-spring);
  text-align: center;
  border: 1px solid rgba(216, 31, 37, 0.25);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(216, 31, 37, 0.02) 0%,
    rgba(201, 168, 76, 0.02) 50%,
    transparent 100%
  );
  z-index: 0;
}
.feat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pri),
    var(--gold),
    transparent
  );
  opacity: 1;
  transition: var(--tr);
  z-index: 2;
}
.feat-card:nth-child(odd) {
  animation: floatSlow 5s ease-in-out infinite;
}
.feat-card:nth-child(even) {
  animation: float 5.5s ease-in-out infinite;
}
.feat-card:hover {
  transform: translateY(-10px) !important;
  animation: none;
}
.feat-img {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid transparent;
  transition: var(--tr-spring);
  position: relative;
  z-index: 1;
  animation: iconFloat 4.5s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.feat-card:hover .feat-img {
  border-color: var(--pri);
  box-shadow: 0 10px 28px rgba(216, 31, 37, 0.3);
  animation: none;
  transform: scale(1.08);
}
.feat-card h4 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.feat-card p {
  font-size: 0.84rem;
  color: #4a4a5a;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, #06061a, #0d0d28, #06061a);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.7rem;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.btn-gold {
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold), #e0c56e);
  color: var(--sec);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr-spring);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
  position: relative;
  z-index: 1;
}
.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(201, 168, 76, 0.45);
}

/* LEADERSHIP */
.leader-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 50px;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  animation: borderGlow 4s infinite;
  position: relative;
  z-index: 1;
}
@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(216, 31, 37, 0.2);
    box-shadow: 0 0 20px rgba(216, 31, 37, 0.08);
  }
  50% {
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 0 35px rgba(201, 168, 76, 0.15);
  }
}
.leader-block.reverse {
  direction: rtl;
}
.leader-block.reverse .leader-info {
  direction: ltr;
}
.leader-block:last-child {
  margin-bottom: 0;
}
.leader-img-box {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.leader-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform 0.8s;
}
.leader-block:hover .leader-img-box img {
  transform: scale(1.06);
}
.leader-img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--pri);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 6px 18px rgba(216, 31, 37, 0.35);
}
.leader-info {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-icon {
  font-size: 2.8rem;
  color: rgba(216, 31, 37, 0.12);
  margin-bottom: 10px;
}
.leader-info h3 {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
}
.leader-info p {
  font-size: 0.88rem;
  color: #4a4a5a;
  line-height: 1.7;
  margin-bottom: 8px;
}
.leader-sig {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 14px;
  font-style: italic;
}

/* CURRICULUM */
.cur-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cur-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: scalePulse 7s ease-in-out infinite;
}
.cur-img img {
  width: 100%;
  height: auto;
}
.cur-text h3 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cur-text p {
  font-size: 0.9rem;
  color: #4a4a5a;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* PDF */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.pdf-card {
  background: linear-gradient(160deg, #fff 0%, #fafbfc 50%, #f5f5f7 100%);
  border-radius: var(--radius-xl);
  padding: 38px 24px;
  text-align: center;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: var(--tr-spring);
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
}
.pdf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(216, 31, 37, 0.02),
    rgba(201, 168, 76, 0.03)
  );
  z-index: 0;
}
.pdf-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(216, 31, 37, 0.3),
    rgba(201, 168, 76, 0.3),
    transparent
  );
  opacity: 0;
  transition: var(--tr);
}
.pdf-card:nth-child(odd) {
  animation: floatSlow 4.5s ease-in-out infinite;
}
.pdf-card:nth-child(even) {
  animation: float 5s ease-in-out infinite;
}
.pdf-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(216, 31, 37, 0.1);
  border-color: var(--pri);
  animation: none;
}
.pdf-card:hover::after {
  opacity: 1;
}
.pdf-icon {
  font-size: 2.8rem;
  color: var(--pri);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: var(--tr);
}
.pdf-card:hover .pdf-icon {
  color: var(--gold);
  transform: scale(1.1);
}
.pdf-card h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.pdf-card p {
  font-size: 0.76rem;
  color: #4a4a5a;
  position: relative;
  z-index: 1;
}
.pdf-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--pri);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  opacity: 0;
  transform: scale(0.4);
  transition: var(--tr-spring);
  z-index: 2;
}
.pdf-card:hover .pdf-badge {
  opacity: 1;
  transform: scale(1);
}

/* GALLERY */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
  display: block;
}
.gal-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.gal-item:hover img {
  transform: scale(1.1);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(216, 31, 37, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--tr);
  z-index: 2;
  pointer-events: none;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay i {
  color: #fff;
  font-size: 2.2rem;
}

/* ENQUIRY */
.enq-section {
  background: linear-gradient(160deg, #06061a, #101028, #0d0d24);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.enq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.enq-text h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1.2 !important;
}
.enq-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  margin-bottom: 8px;
}
.enq-form-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: 44px 34px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  animation: floatSlow 5s ease-in-out infinite;
}
.enq-form-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(216, 31, 37, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.enq-form-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: var(--text);
}
.enq-form .input-group {
  position: relative;
  margin-bottom: 4px;
}
.enq-form .input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pri);
  font-size: 0.9rem;
  z-index: 1;
  pointer-events: none;
}
.enq-form input,
.enq-form textarea,
.enq-form select {
  padding: 15px 16px 15px 46px;
  border-radius: var(--radius-sm);
  background: var(--gray);
  border: 2px solid transparent;
  font-size: 0.86rem;
  width: 100%;
  transition: var(--tr);
  color: var(--text);
}
.enq-form textarea {
  min-height: 80px;
  resize: vertical;
}
.enq-form select {
  appearance: none;
  cursor: pointer;
}
.enq-form input:focus,
.enq-form textarea:focus,
.enq-form select:focus {
  border-color: var(--pri);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(216, 31, 37, 0.08);
  outline: none;
}
.btn-enq {
  padding: 16px;
  background: linear-gradient(135deg, var(--pri), #c0171f);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--tr-spring);
  cursor: pointer;
  width: 100%;
  box-shadow: 0 8px 22px rgba(216, 31, 37, 0.3);
}
.btn-enq:hover {
  background: linear-gradient(135deg, var(--pri-dark), #8a1015);
  box-shadow: 0 12px 32px rgba(216, 31, 37, 0.45);
  transform: translateY(-3px);
}

/* INFO BAR */
.info-bar {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.info-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 20px;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 500;
}
.info-bar-item i {
  color: var(--pri);
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .hero {
    height: 500px;
    min-height: 500px;
  }
  .about-img-wrap img {
    height: 350px;
    object-fit: cover;
  }
  .hero-content {
    padding: 0 12px;
  }
  .sec {
    padding: 56px 0;
  }
  .about-grid,
  .cur-grid,
  .enq-grid {
    grid-template-columns: 1fr;
  }
  .triple-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .leader-block {
    grid-template-columns: 1fr;
  }
  .leader-block.reverse {
    direction: ltr;
  }
  .leader-img-box,
  .leader-img-box img {
    min-height: 280px;
  }
  .pdf-grid {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
  }
}
