/* HERO WRAPPER */
.gs-hero {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
  font-weight: 500;
}

/* HEAD */
.gs-hero-head {
  text-align: center;
  margin-bottom: 48px;
}

.gs-hero-head h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  color: #3d3656;
}

.gs-hero-head p {
  font-size: 17px;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
}

/* GRID */
.gs-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* BOX */
.gs-hero-box {
  position: relative;
  padding: 32px 26px;
  background: #ffffff;
  border-radius: 26px 40px 22px 38px; /* random feel */
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* floating glow */
.gs-hero-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .35s ease;
}

/* ICON */
.gs-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px 14px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
  color: #111;
  background: rgba(255,255,255,0.6);
  transition: transform .35s ease;
}

/* TEXT */
.gs-hero-box h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.gs-hero-box p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #555;
}

/* HOVER ANIMATION */
.gs-hero-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

.gs-hero-box:hover .gs-hero-icon {
  transform: rotate(-6deg) scale(1.08);
}
.glow-yellow{
  background: radial-gradient(circle at top left, rgba(255,183,3,.45), transparent 60%);
}

.glow-purple{
  background: radial-gradient(circle at top right, rgba(173,110,255,.35), transparent 60%);
}

.glow-cyan{
  background: radial-gradient(circle at bottom left, rgba(76,201,240,.35), transparent 60%);
}

.gs-hero-box:hover::before {
  opacity: 1;
}
@media (max-width: 900px) {
  .gs-hero-grid {
    grid-template-columns: 1fr;
  }

  .gs-hero-head h1 {
    font-size: 30px;
  }
}
/* Base pill */
.hero-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-width: 260px;
  padding: 16px 22px;

  background: radial-gradient(circle at top, #111, #000 70%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px;
  overflow: hidden;

  box-shadow:
    0 12px 30px rgba(0,0,0,.55),
    0 0 0 rgba(255,255,255,0);

  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-cta::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: 0;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .45;
  animation: heroAura 6s ease-in-out infinite;
}

/* content above */
.hero-cta span,
.hero-cta i {
  position: relative;
  z-index: 2;
}

.mmctas-row {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 50px 0;
  flex-wrap: wrap;
}

/* MAIN BUTTON */
.mmctas-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;

  width: 300px;
  padding: 20px 22px;

  background: #3d3656;
  color: #fff;
  text-decoration: none;

  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.45);

  transition: transform .35s ease, box-shadow .35s ease;
}

/* SECOND LAYER (DEPTH BOX) */
.mmctas-btn::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background: linear-gradient(180deg, #796f89, #3d3656);
  z-index: 1;
}
.mmctas-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  opacity: .55;
  filter: blur(60px);
  animation: mmctasFlow 8s linear infinite;
}
.mmctas-btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  opacity: .55;
  filter: blur(60px);
  animation: mmctasFlow 8s linear infinite;
}
@keyframes mmctasFlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.mmctas-icon {
  position: relative;
  z-index: 2;

  width: 56px;
  height: 56px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  font-size: 26px;

  animation: mmctasIconFloat 3s ease-in-out infinite;
}

@keyframes mmctasIconFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.mmctas-text {
  position: relative;
  z-index: 2;
}

.mmctas-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.mmctas-sub {
  display: block;
  font-size: 13px;
  color: #cfcfcf;
  margin-top: 2px;
}
.mmctas-btn:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 70px #3d3656
}

.mmctas-btn:hover .mmctas-icon {
  animation: none;
  transform: rotate(-12deg) scale(1.2);
}
@media (max-width: 768px) {
  .mmctas-btn {
    width: 100%;
  }
}

.gs-search-box {
  
	    margin: auto;
		width:80%;
  /* smoother, more premium gradient */
  background: linear-gradient(
    135deg,
    rgba(119,108,157,0.22) 0%,
    #f7f5ff 35%,
    #ffffff 65%,
    rgba(61,54,86,0.18) 100%
  );
margin-bottom: 40px;
  padding: 8px;
 

  border-radius: 12px;
  color: #393858;

  /* shadow acting like border + elevation */
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.10);
}
.gs-search-container {
  position: relative;
  width: 100%;
}

#gs-search {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;

  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #262626;

  font-size: 17px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: border-color .2s ease, box-shadow .2s ease;
}

#gs-search:focus {
  outline: none;
  border-color: #776c9d;
  box-shadow:
    0 0 0 3px rgba(119,108,157,0.18),
    0 8px 20px rgba(0,0,0,0.10);
}

#gs-results {
  position: absolute;
  top: calc(100% + 8px);
  width: 100%;

  background: #111111;
  border-radius: 12px;

  max-height: 340px;
  overflow-y: auto;
  display: none;

  z-index: 9999;

  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.gs-item {
  padding: 12px;
  display: flex;
  gap: 12px;
  
  cursor: pointer;

  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .15s ease;
}

.gs-item:hover {
  background: rgba(255,255,255,0.06);
}
.gs-item img {
  width: 45px;
  height: 65px;
  border-radius: 6px;
  object-fit: cover;
}
.gs-title {
  font-size: 15.5px;
  color: #ffffff;
  font-weight: 600;
}

.gs-year {
  color: #9ca3af;
  font-size: 13px;
}
.neo-load-btn {
  background: linear-gradient(135deg, #f9c846, #f4b400);
  color: #1a1a1a;

  font-size: 17px;
  font-weight: 700;
  padding: 12px 34px;

  border: none;
  border-radius: 12px;
  cursor: pointer;

  transition: transform .2s ease, box-shadow .2s ease;

  box-shadow: 0 8px 20px rgba(249, 200, 70, 0.45);
}

.neo-load-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(249, 200, 70, 0.55);
}
/*==============================
	Home
==============================*/
.home {
  margin-top: 70px;
  position: relative;
  display: block;
 
  padding: 50px 0;
  overflow: hidden;
}
.home .container {
  position: relative;
  z-index: 3;
}
.home__title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 32px;
  line-height: 42px;
  margin: 0;
  padding-right: 100px;
}
.home__title b {
  font-weight: 600;
  color: #3d3656;
}
.home__carousel {
  margin-top: 24px;
}
.home--bg {
  border-bottom: 1px solid #222028;
}
.home--bg:before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: url("../img/bg/home__bg.jpg") no-repeat center/cover;
  opacity: 0.2;
}
.home--bg:after {
  content: '';
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: linear-gradient(0deg, #1a191f 0%, #1a191f 25%, rgba(26,25,31,0) 100%);
}
.home--hero {
  padding: 35px 0;
  border-bottom: 1px solid #222028;
}
@media (min-width: 768px) {
  .home {
    margin-top: 80px;
    padding: 0px 0;
  }
  .home__title {
    font-size: 36px;
    padding-right: 120px;
  }
  .home__carousel {
    margin-top: 34px;
  }
  .home--hero {
    padding: 35px 0;
  }
}
@media (min-width: 1200px) {
  .home__title {
    font-size: 32px;
  }
}

.sm_att{
	color:#ffd200;
}

.itm_home{
color:#ffd200;
	
}
/* ===== Discovery Strip ===== */

.gs-discovery-strip {
  padding: 48px 20px;
}

.gs-discovery-head {
  max-width: 1100px;
  margin: 0 auto 26px;
}

.gs-discovery-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.gs-discovery-head p {
  margin-top: 6px;
  font-size: 14px;
  color: #6b7280;
}

/* Cards */

.gs-discovery-items {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gs-discovery-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 18px 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  border-color: #fbbf24;
}

.gs-discovery-card:hover {
  background: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Text */

.gs-disc-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.gs-disc-meta {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 1024px) {
  .gs-discovery-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .gs-discovery-items {
    grid-template-columns: 1fr;
  }
  
  
  .gs-search-box
 {
	 width:100%;
 }
}
/* ===== Text Categories Section ===== */

.gs-text-categories {
  padding: 70px 20px;
 
}

.gs-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #3d3656;
  margin-bottom: 42px;
}

/* Grid */

.gs-text-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card Base */

.gs-text-card {
  position: relative;
  border-radius: 18px;
  padding: 36px 26px;
  min-height: 160px;
  text-decoration: none;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Typography */

.gs-big-text {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.gs-sub-text {
  font-size: 16px;
  opacity: 0.85;
  margin-top: 6px;
}

/* Hover motion */

.gs-text-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gs-text-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.gs-text-card:hover::after {
  opacity: 1;
}

/* Color Variants */

.gs-text-card.year {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gs-text-card.neon {
  background: linear-gradient(135deg, #ec4899, #9333ea);
}

.gs-text-card.bold {
  background: linear-gradient(135deg, #dc2626, #7f1d1d);
}

.gs-text-card.horror {
  background: linear-gradient(135deg, #0f172a, #020617);
}

/* Mobile */

@media (max-width: 1024px) {
  .gs-text-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .gs-text-grid {
    grid-template-columns: 1fr;
  }

  .gs-big-text {
    font-size: 36px;
  }
}

.item {
  background: var(--gs-bg-card);
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow-sm);
  transition: transform .25s, box-shadow .25s;
}

.item:hover {
  transform: translateY(-6px);
  box-shadow: var(--gs-shadow-md);
}

.item__title {
  font-size: 14px;
  font-weight: 600;
}
.gs-trust-copy {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #6b6f7b; /* soft neutral gray */
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1.4;
}
.gs-trust-copy.subtle {
  font-size: 13px;
  font-weight: 400;
  color: #8a8f9c;
}
.gs-trust-copy span {
  margin: 0 6px;
  white-space: nowrap;
}

.gs-about-modern {
    padding: 90px 20px;
    background:
      radial-gradient(circle at top, #f9fafb, #ffffff 60%);
    border-top: 1px solid #e5e7eb;
}

.gs-about-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 36px;
}

/* Individual blocks */
.gs-about-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 12px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;

    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: gsFadeUp 0.8s ease forwards;
}

/* Staggered animation */
.gs-about-block:nth-child(1) { animation-delay: 0.1s; }
.gs-about-block:nth-child(2) { animation-delay: 0.25s; }
.gs-about-block:nth-child(3) { animation-delay: 0.4s; }

/* Accent line */
.gs-about-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    height: 40px;
    width: 4px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 4px;
}

/* Headings */
.gs-about-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

/* Text */
.gs-about-block p {
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0;
	font-weight: 400;
}

/* Highlight emphasis */
.gs-about-block em {
    color: #111827;
    font-style: normal;
    font-weight: 600;
}

.gs-about-block strong {
    color: #111827;
}

/* Hover micro-interaction */
.gs-about-block:hover {
    transform: translateY(-4px);
    transition: transform 0.25s ease;
}

/* ===========================
   MOBILE TUNING
   =========================== */

@media (max-width: 640px) {
    .gs-about-modern {
        padding: 60px 16px;
    }

    .gs-about-block {
        padding: 24px;
    }

    .gs-about-block h3 {
        font-size: 18px;
    }

    .gs-about-block p {
        font-size: 15px;
    }
}

/* ===========================
   KEYFRAMES
   =========================== */

@keyframes gsFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gs-about-kicker {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
}
