* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-gold: #A59245;
  --color-dark: #111111;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #3e3e3e;
  --color-line: rgba(0, 0, 0, 0.22);
  --color-paper-text: #151515;
  --header-height: 80px;
}



/* ==============================
   SELECTION STYLES
   ============================== */
::selection {
  background: var(--color-gold);
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-gold);
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background: url("../assets/paper-background.webp") center top / cover repeat-y;
}

.site {
  width: 100%;
/*   overflow-x: hidden; */   
}

/* Headings */
h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Body text */
p {
  font-family: 'Lora', serif;
  line-height: 1.4;
}  

  
    

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 200px;
  width: auto;
  height: auto;
  padding: 16px 40px;
  margin-top: 26px;

  background: var(--color-black);
  color: var(--color-white);

  border: 1px solid var(--color-gold);
  text-decoration: none;

  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;

  cursor: pointer;
  position: relative;
  overflow: hidden;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.button:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* Global Shimmer Effect for ALL buttons */
.button::after,
.btn-primary-gold::after,
.btn-secondary-outline::after,
.button-outline::after,
.btn-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  z-index: 1;
}

.button:hover::after,
.btn-primary-gold:hover::after,
.btn-secondary-outline:hover::after,
.button-outline:hover::after,
.btn-shimmer:hover::after {
  left: 150%;
}

/* Ensure parents are relative/hidden */
.btn-primary-gold,
.btn-secondary-outline,
.button-outline {
  position: relative;
  overflow: hidden;
}

.btn-star {
  width: 18px !important;
  height: 18px !important;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}   
   
.button:hover .btn-star,
.btn-shimmer:hover .btn-star {
  transform: scale(1.3) rotate(144deg);
}


/* ===== SECTIONS ===== */




.hero,
.intro,
.world-stage {
  position: relative;
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(165, 146, 69, 0.3);
  transition: background 0.3s ease, height 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: var(--color-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.mobile-menu-logo {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-family: "Cinzel", serif;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link.active {
  opacity: 0.5;
  pointer-events: none;
  /* Optional: disable clicks on active page */
}

.nav-link span {
  position: relative;
  display: inline-block;
}

.nav-link span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.nav-link:hover span::after {
  width: 100%;
}

/* Specific Link Hover Shimmer Effect */
.nav-link:hover span,
.logo:hover,
.footer-links a:hover,
.shimmer-hover:hover {
  background: linear-gradient(to right,
      var(--color-gold) 20%,
      #fff9e6 40%,
      #fff9e6 60%,
      var(--color-gold) 80%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
  color: var(--color-gold) !important;
  /* Fallback for browsers that don't support text-clip */
}


/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}


/* ===== HERO ===== */

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
  z-index: 5;
  --hero-center-x: 50%;
  --hero-center-y: 50%;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    
 /*  opacity: 0.25; */
}

/* Content wrapper */
.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Center glow */
.hero-glow {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: min(50vw, 700px);
  z-index: 2;
  opacity: 0.85;
}

/* Yellow stone */
.hero-yellow {
  position: absolute;
  left: var(--hero-center-x);
  top: var(--hero-center-y);
  transform: translate(-50%, -50%);
  width: min(8vw, 200px);
  z-index: 5;

  filter:
    brightness(1.2) contrast(1.1) drop-shadow(0 0 20px rgba(255, 181, 42, 0.9)) drop-shadow(0 0 40px rgba(255, 181, 42, 0.6));
}



/* Clouds */
.cloud {
  position: absolute;
  width: min(40vw, 700px);
}

.cloud-left {
  left: 0%;
  top: 25%;
}

.cloud-right {
  right: 0%;
  top: 10%;
}


/* ===== HERO CIRCULAR TEXT
   Centered on the glowing stone ===== */

.circle-text {
  position: absolute;
  left: var(--hero-center-x);
  top: var(--hero-center-y);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 4;
  pointer-events: none;
  display: block;

  fill: rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.38);
  font-family: 'Lora', serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* Force SVG text color */
.circle-text text,
.circle-text textPath {
  fill: rgba(255, 255, 255, 0.38);
}

/* Sizes reduced around glow stone */
.circle-large {
  width: clamp(260px, 24vw, 371px);
  height: auto;
  animation: rotateCircle 30s linear infinite;
}

.circle-mid {
  width: clamp(200px, 18vw, 281px);
  height: auto;
  animation: rotateCircleReverse 25s linear infinite;
}

.circle-small {
  width: clamp(150px, 13vw, 207px);
  height: auto;
  animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateCircleReverse {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}





/* ==============================
   INTRO / PARSHURAMA SECTION
============================== */

.intro {
  position: relative;
  width: 100%;
  background: transparent;
    
}

/* Torn edge belongs to intro, not hero */
.intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: clamp(54px, 5vw, 82px);
  background: url("../assets/01_Hero_Banner/black-torn.webp") center top / 100% 100% no-repeat;
  z-index: 20;
  pointer-events: none;
}

.intro-inner {
    position: relative;
    width: min(100%, 1920px);
    margin: 0 auto;
    min-height: clamp(660px, 10vw, 900px);
    padding-top: 0;
}   

/* Common intro assets */
.intro-asset {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Main Parshurama */
.parshurama {
    left: 50%;
    top: clamp(-269px, -22vw, 455px);
    width: clamp(300px, 25vw, 520px);
    transform: translateX(-50%);
    z-index: 4;
}   

/* Left text */
.intro-copy {
  position: absolute;
  z-index: 6;
  color: var(--color-paper-text);
}

.intro-copy h1,
.intro-copy h2 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.intro-copy p {
  font-family: 'Lora', serif;
  font-size: clamp(14px, 0.85vw, 16px);
  line-height: 1.25;
}

.intro-copy-left {
  left: clamp(110px, 9vw, 240px);
  top: clamp(190px, 14vw, 290px);
  width: clamp(360px, 24vw, 460px);
  text-align: left;
}

.intro-copy-left h1 {
  font-size: clamp(27px, 1.65vw, 34px);
  line-height: 1.18;
  margin-bottom: 38px;
}


.intro-lead {
  text-transform: uppercase;
  margin-bottom: 30px;
}

.intro-line {
  display: block;
  width: 190px;
  height: 1px;
  margin: 28px 0;
  background: var(--color-line);
}


/* Top right text */
.intro-copy-top-right {
  right: clamp(130px, 10vw, 260px);
  top: clamp(205px, 14vw, 295px);
  width: clamp(340px, 23vw, 520px);
  text-align: right;
}


/* Bottom right block */
.intro-copy-bottom-right {
    right: clamp(110px, 10vw, 260px);
    bottom: clamp(80px, 4vw, 100px);
    width: clamp(371px, 22vw, 422px);
    text-align: right;
    bottom: 30%;
}    

.intro-copy-bottom-right h2 {
  font-size: clamp(27px, 1.65vw, 34px);
  line-height: 1.18;
  margin-bottom: 38px;
}


.intro-copy-bottom-right .intro-line {
  margin-left: auto;
  margin-right: auto;
}

/* Birds / decor */
.crow-one {
  right: clamp(130px, 9vw, 260px);
  top: clamp(80px, 6vw, 130px);
  width: clamp(150px, 13vw, 260px);
  z-index: 3;
}

.flock {
  left: clamp(120px, 10vw, 250px);
  top: clamp(560px, 43vw, 740px);
  width: clamp(130px, 14vw, 260px);
  opacity: 0.55;
  z-index: 2;
}

.comic-mockup {
/*   right: clamp(130px, 9vw, 260px);
  top: clamp(530px, 40vw, 690px); */
  
  right: clamp(130px, 9vw, 260px);
    top: clamp(-206px, -26vw, 690px);
    width: clamp(280px, 28vw, 520px);
    z-index: 5;    
}

.piece-a {
  left: clamp(50px, 5vw, 120px);
  top: clamp(190px, 15vw, 300px);
  width: clamp(32px, 4vw, 72px);
  transform: rotate(123deg);
  opacity: 0.5;
}

.piece-b {
  left: clamp(460px, 41vw, 790px);
  top: clamp(370px, 31vw, 520px);
  width: clamp(32px, 3.5vw, 64px);
  transform: rotate(-18deg);
  opacity: 0.45;
}

.piece-c {
  left: clamp(280px, 25vw, 520px);
  bottom: clamp(170px, 15vw, 260px);
  width: clamp(32px, 4vw, 72px);
  opacity: 0.45;
}


/* ==============================
   WORLD STAGE TEXT BLOCKS
============================== */
.world-stage {
  z-index: 1;
  position: relative;
  z-index: 1;
}
          
.world-stage {
    background-image: url(../assets/website-layout-new.webp);
    background-size: cover;
    height: 175vw;
    background-position: bottom center;
    margin: auto;  
}
  

.blank_space {   
    width: 100%;
    height: 80vw;
}    

 

/* Background image defines height */
.world-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay content */
.world-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
}


.world-heading {
  position: absolute;
  z-index: 4;
  color: var(--color-paper-text);
  text-align: right;
}

.world-heading h2 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-gold);
  font-size: clamp(42px, 4vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: clamp(18px, 1.5vw, 30px);
}

.world-heading p {
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.35;
}

.world-heading-top {
  right: clamp(90px, 8vw, 220px);
  top: clamp(260px, 18vw, 430px);
  width: clamp(420px, 34vw, 650px);
}


/* SHIVA */
.world-shiva {
  position: absolute;
  z-index: 4;
  width: clamp(200px, 40vw, 700px);
  top: 8%;
  left: 67%;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}




/* WORLD MYTHOLOGY BLOCK  */


.world-mythology-block {
    position: absolute; 
    z-index: 4;
    left: clamp(160px, 11vw, 260px);
    top: 55%;
    width: clamp(600px, 39vw, 760px);
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
}


/* .world-mythology-block {
  position: absolute;
  z-index: 4;

  left: clamp(160px, 11vw, 260px);
  top: 15%;
  width: clamp(600px, 39vw, 760px);
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
} */   

.world-mythology-block h2 {
  font-family: "Cinzel", serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: left;
  font-size: clamp(64px, 5.2vw, 108px);
  line-height: 0.9;
  letter-spacing: 0.02em;

  margin-bottom: clamp(24px, 2vw, 42px);
}

.world-mythology-block p {
  font-family: 'Lora', serif;
  font-size: clamp(17px, 1.05vw, 22px);
  line-height: 1.28;
  text-align: left;
}


/*  CLASH OF COSMOS CARD SHOWCASE  */
      
  
.cosmos-showcase {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(60vw, 1220px);
}
   

/* Card row */

.cosmos-card-left,
.cosmos-card-right {
  position: absolute;
  top: 20px;
  width: 31%;
  opacity: 1;
  z-index: 1;
}

.cosmos-card-left {
  left: 0;
}

.cosmos-card-right {
  right: 0;
}

.cosmos-center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  z-index: 3;
}

.cosmos-card-main {
  position: relative;
}

.cosmos-card img {
  width: 100%;
  height: auto;
  display: block;
}

.cosmos-card-main img {
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 34px rgba(165, 146, 69, 0.85);
}

.cosmos-scroll {
  position: relative;
  margin-top: -6%;
  width: 100%;
  z-index: -1;
}

.cosmos-scroll img {
  width: 100%;
  height: auto;
  display: block;
}

.cosmos-scroll-copy {
  position: absolute;
  left: 12%;
  top: 18%;
  width: 76%;
  text-align: left;
  color: var(--color-paper-text);
}


/* Diamond Button */
.diamond-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(34px, 3vw, 54px);
  height: clamp(34px, 3vw, 54px);

  transform: translate(-50%, -50%) rotate(45deg);

  border: 2px solid var(--color-gold);
  background: transparent;
  cursor: pointer;
}

.diamond-button span {
  position: absolute;
  inset: 0;
  transform: rotate(-45deg);
}

.diamond-button span::before,
.diamond-button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-gold);
  transform: translate(-50%, -50%);
  background: var(--color-gold);
  opacity: 1;
}

.diamond-button span::before {
  width: 2px;
  height: 70%;
}

.diamond-button span::after {
  width: 70%;
  height: 2px;
}

.diamond-button:hover {
  box-shadow: 0 0 12px rgba(165, 146, 69, 0.65);
}

/* Hanuman Section */

.hanuman-stage {
  position: relative;
  width: 100%;
  margin-top: clamp(120px, 10vw, 240px);
}
.hanuman-figure {
    position: absolute;
    z-index: 2;
    left: clamp(-308px, -54vw, -75px);
    top: clamp(180px, 7vw, 528px);
    width: clamp(131px, 38vw, 750px);
    height: auto;
    pointer-events: none;
}      



/* .hanuman-figure {
  position: absolute;
  z-index: 2;

  left: clamp(-420px, -30vw, -220px);
  top: clamp(320px, 10vw, 500px);

  width: clamp(700px, 55vw, 1100px);
  height: auto;

  pointer-events: none;
}
 */

/* ==============================
   WORLD STAGE 2 
============================== */

.world2-block {
  position: absolute;
  z-index: 6;
  right: clamp(120px, 9vw, 260px);
  top: 41%;

  width: clamp(520px, 29vw, 760px);
}

.world2-copy {
  text-align: right;
  color: var(--color-paper-text);
}

.world2-copy .eyebrow {
  margin-bottom: 4px;
  font-size: clamp(20px, 1.4vw, 28px);
  text-transform: uppercase;
}

.world2-copy h2 {
  color: var(--color-gray);
  font-size: clamp(52px, 4vw, 84px);
  line-height: 0.9;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.world2-copy p:not(.eyebrow) {
  font-size: clamp(15px, 1vw, 20px);
  line-height: 1.3;
}

.garuda-figure {
    display: block;
    /* width: clamp(520px, 54vw, 1000px); */
    /* height: auto; */
    /* margin-top: clamp(50px, 5vw, 110px); */
    /* margin-left: clamp(-180px, -10vw, 0px); */
    width:90%; 
    position: relative;
     margin: 50px auto 0;
}      

.feather {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.feather-1 {
    right: 48%;
    top: 78%;
    width: clamp(80px, 7vw, 150px);
}   

.feather-2 {    
    right: 83%;
    top: 34%;
    width: clamp(42px, 3.5vw, 80px);
    transform: rotate(95deg) scaleY(-1);
}    


/*  CHAKRA SECTION  */

.chakra-section {
  position: absolute;
  z-index: 7;

  left: clamp(120px, 8vw, 240px);
  top: 52%;

  display: flex;
  align-items: flex-end;
}

.chakra-card {
  width: clamp(420px, 30vw, 650px);
}

.chakra-card img {
  display: block;
  width: 100%;
  height: auto;
}


.button-outline {
  width: 100%;
  margin-top: clamp(36px, 3vw, 60px);

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--color-white);
}

.button-outline:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* ==============================
   DARK MYTH PANEL
============================== */
.myth-panel {
  z-index: 8;
  left: clamp(90px, 7vw, 180px);
  top: 77%;
  width: clamp(560px, 48vw, 900px);
  position: absolute;
  background: url(../assets/06_Section_Six/hindu-tabloid.webp) center / contain no-repeat;
  background-size: cover;
  padding: clamp(60px, 20vw, 310px) clamp(30px, 6vw, 100px);
}

.myth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* IMAGE defines actual shape */
.myth-panel-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT sits ON TOP of image */
.myth-panel-content {
  position: absolute;
  left: 10%;
  top: 16%;
  width: 80%;
  height: 68%;
  display: block;
  color: rgba(255, 255, 255, 0.68);
  z-index: 1;
}

.myth-panel h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 2.5vw, 52px);
  color: var(--color-gold);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.myth-panel p {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.35;
  margin-bottom: 20px;
}

.myth-panel-line {
  display: block;
  width: 140px;
  height: 1px;
  background: var(--color-gold);
  margin: 30px 0;
}

.myth-panel-stone {
  position: absolute;
  right: 11%;
  top: -20%;
  width: clamp(120px, 9vw, 180px);
  height: auto;
  filter: brightness(1.15) drop-shadow(0 0 24px rgba(255, 181, 42, 0.8));
  z-index: 5;
}

.world-bg-mobile-01,
.world-bg-mobile-02 {
  display: none;
}

.krishna-talk {
  position: absolute;
  left: clamp(80px, 8vw, 160px);
  bottom: clamp(140px, 12vh, 220px);
  width: clamp(380px, 32vw, 520px);
  color: var(--color-paper-text);
  z-index: 5;
}

.krishna-talk p {
  font-family: "Cinzel", serif;
  font-size: clamp(19px, 1vw, 32px);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
}

/* ==============================
   ABOUT PAGE
============================== */
.about-page {
  background: transparent;
}

.about-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
  text-align: center;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
}

.about-header {
  background-image: url(../assets/krishna-header-about.webp);
}


.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.about-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.about-hero .subtitle {
  font-size: clamp(16px, 1.5vw, 24px);
  color: #fff;
  font-style: italic;
  opacity: 0.8;
}

/* Shimmer / Light-Pass Animation */
.shimmer-text {
  background: linear-gradient(to right,
      var(--color-gold) 20%,
      #fff9e6 40%,
      #fff9e6 60%,
      var(--color-gold) 80%);
  background-size: 200% auto;
  color: #000;
  /* Fallback */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.scroll-indicator {
  margin-top: 40px;
  color: var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-indicator span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator .arrow {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.about-section {
  padding: 120px 0;
  position: relative;
}

.our-story.about-section {
  padding: 40px 0;
  background-image: url(../assets/background-element.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1000px;
  margin: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Founders Section - Clean Style */
.founders-section {
  padding: 120px 0;
  background: transparent;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  /* Image area is now bigger */
  gap: 80px;
  align-items: center;
}

.founder-card {
  position: relative;
  border-left: 2px solid var(--color-gold);
  padding: 20px;
}

.founder-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 20px 20px 0px rgba(165, 146, 69, 0.1);
}

.founder-info-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #000;
  padding: 15px 30px;
  border: 1px solid var(--color-gold);
}

.founder-info-badge h4 {
  color: var(--color-gold);
  margin: 0;
  font-size: 20px;
  letter-spacing: 2px;
}

.founder-info-badge p {
  color: #fff;
  margin: 5px 0 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.founder-quote {
  font-family: "Cinzel", serif;
  font-size: 28px;
  line-height: 1.3;
  color: #111;
  font-style: italic;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
}

.founder-bio p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.about-image-wrapper {
  position: relative;
}

.ornament {
  width: 80px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 30px;
  position: relative;
}

.ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--color-gold);
}

.about-copy p {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--color-paper-text);
  line-height: 1.6;
}

.story-paper-content {
  max-width: 550px;
  /* Constrain text to the paper area */
  text-align: center;
}

.story-paper-content .section-title {
  margin-bottom: 10px;
}

.story-paper-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.about-image-wrapper {
  position: relative;
}

.art-placeholder {
  position: relative;
  padding: 20px;
}

.art-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  z-index: 2;
  position: relative;
}

.art-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-gold);
  transform: rotate(3deg);
  z-index: 1;
}

.vision-mission {
  padding: 150px 0;
  background: url("../assets/paper-background.webp") center top / cover;
}

.scroll-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.scroll-item {
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-paper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.scroll-img {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-content {
  position: absolute;
  top: 15%;
  left: 12%;
  right: 12%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-paper-text);
}

.hindu-script {
  font-family: "Cinzel", serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 15px;
  padding-bottom: 5px;
}

/* Section Breaker Stats */
.section-breaker-stats {
  width: 100%;
  padding: 100px 0;
  background: url("../assets/about-counter.webp") center center / cover no-repeat fixed;
  position: relative;
  border-top: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-breaker-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  /* Dark overlay for readability */
  z-index: 1;
}

.section-breaker-stats .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
}

.stats-grid {
  display: grid;
  gap: 40px;
  text-align: center;
}

.section-breaker-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px 40px;
  text-align: center;
}

.section-breaker-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.section-breaker-stats .stat-number {
  font-size: 60px;
  text-shadow: 0 0 20px rgba(165, 146, 69, 0.5);
}

.section-breaker-stats .stat-label {
  color: var(--color-gold);
  font-size: 16px;
  font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.testimonial-image-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-content {
  position: relative;
}

.testimonial-carousel {
  position: relative;
  height: 400px;
  margin-top: 50px;
}

.testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(20px) scale(0.95);
}

.testimonial-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.testimonial-paper {
  background: url("../assets/paper-background.webp") center center / cover;
  padding: 60px 50px;
  border: 1px solid rgba(165, 146, 69, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-paper::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--color-gold);
  z-index: -1;
  opacity: 0.3;
}

.quote {
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.4;
  color: #333;
  font-style: italic;
  margin-bottom: 30px;
}

.author {
  font-family: "Cinzel", serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
}

.carousel-controls {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--color-gold);
  color: #fff;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-number {
  font-family: "Cinzel", serif;
  font-size: 48px;
  color: var(--color-gold);
  font-weight: 400;
  margin-bottom: 10px;
}

.stat-label {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  opacity: 0.7;
}

.placeholder-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  border: 1px solid var(--color-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 3;
}

.art-callout {
  padding: 150px 0;
  text-align: center;
  background: url("../assets/paper-background.webp") center top / cover;
}

.art-callout-inner {
  max-width: 800px;
  margin: 0 auto;
}

.art-callout h2 {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.decorative-line {
  display: block;
  width: 200px;
  height: 1px;
  background: var(--color-gold);
  margin: 40px auto 0;
  position: relative;
}

.decorative-line::before {
  content: "♦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  /* Match paper color */
  padding: 0 10px;
  color: var(--color-gold);
}

/* ==============================
   COSMOS PAGE (Trump Cards)
============================== */
.cosmos-page {
  background: transparent;
}


.coc-header,
.comic-header {
  background-image: url(../assets/coc-header.webp);
}

.launch-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 24px;
  background: var(--color-gold);
  color: #000;
  font-family: "Cinzel", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(165, 146, 69, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(165, 146, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(165, 146, 69, 0);
  }
}

/* Button Groups */
.btn-group {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-group.central {
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  font-family: "Cinzel", serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--color-gold);
  color: #000;
}

.btn-gold:hover {
  background: #000;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: #000;
}

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

.mt-40 {
  margin-top: 40px;
}

/* Legend Reimagined Section (Creative UI) */
.legend-reimagined {
  padding: 150px 0;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}

.legend-reimagined::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(165, 146, 69, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.legend-reimagined .hindu-script {
  font-size: clamp(40px, 5vw, 72px);
  text-align: left;
  /* Changed from center */
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 6px;
  border: 0;
}

.legend-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.legend-info {
  position: relative;
  z-index: 2;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h3 {
  font-family: "Cinzel", serif;
  font-size: 28px;
  color: var(--color-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-block p {
  font-size: 19px;
  line-height: 1.7;
  opacity: 0.9;
}

.myth-list {
  list-style: none;
  padding: 0;
}

.myth-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  opacity: 0.85;
}

.myth-list li::before {
  content: "♦";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 14px;
}

.coming-soon-tag {
  margin-top: 50px;
  font-size: 24px;
  font-style: italic;
  font-family: "Cinzel", serif;
}

.legend-mockup-area {
  position: relative;
}

.large-mockup-frame {
  position: relative;
}

.large-mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.glow-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(165, 146, 69, 0.2), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Comic Stats (Dark Grid) */
.comic-stats-section {
  padding: 100px 0;
  background: #050505;
  border-top: 1px solid rgba(165, 146, 69, 0.2);
}

.dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dark-grid .stat-item {
  background: transparent;
  padding: 40px;
  border: 1px solid rgba(165, 146, 69, 0.1);
  text-align: center;
  transition: border-color 0.3s ease;
}

.dark-grid .stat-item:hover {
  border-color: var(--color-gold);
}

.dark-grid .stat-number {
  font-size: 48px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.dark-grid .stat-label {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.stat-item.no-icon .stat-icon {
  display: none;
}

.ornament.central {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 22px !important;
  font-style: italic;
  margin-bottom: 30px;
}

.cosmos-deck-section {
  padding: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px 40px;
}

.trump-card-wrapper {
  perspective: 1000px;
}

.trump-card {
  display: block;
  text-decoration: none;
  position: relative;
  background: #111;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 10px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: visible;
}

.trump-card:hover {
  transform: translateY(-15px) rotateY(10deg);
  box-shadow: 0 25px 50px rgba(165, 146, 69, 0.3);
  border-color: #fff;
}

.card-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-gold);
  color: #000;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  border: 1px solid #000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.card-image {
  width: 100%;
  aspect-ratio: 2.5 / 3.5;
  overflow: hidden;
  border-radius: 6px;
  background: #222;
}

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

.trump-card:hover .card-image img {
  transform: scale(1.1);
}

.card-name {
  margin-top: 15px;
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: var(--color-gold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.trump-card:hover .card-name {
  color: #fff;
}

.trump-card:hover .card-name {
  color: #fff;
}

/* ==============================
   COMIC PAGE
============================== */

.comic-header {
  background-image: url(../assets/comic-header.webp);
}

.comic-hero-bg {
  opacity: 0.3 !important;
}

/* Comic Viewer (Book Flip) */
.cosmos-headerspace,
.comic-headerspace {
  padding-top: 80px;
  background: black;
}

.comic-book-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.comic-book {
  position: relative;
  width: 400px;
  height: 560px;
  perspective: 1500px;
  transition: transform 0.5s;
}

.paper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  perspective: 1500px;
  transform-origin: left;
  transition: transform 0.5s;
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.back {
  transform: rotateY(180deg);
  z-index: 1;
}

.page-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover img {
  border: 4px solid var(--color-gold);
}

.cover-back {
  background: #111;
  color: var(--color-gold);
  text-align: center;
  padding: 40px;
}

/* Flipped State */
.flipped {
  transform: rotateY(-180deg);
  z-index: 1;
}

.comic-controls {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}

/* Comic Details */
.comic-features {
  list-style: none;
  margin-top: 30px;
}

.comic-features li {
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--color-gold);
}

.comic-features strong {
  color: var(--color-paper-text);
  margin-right: 10px;
}

.comic-art-highlight {
  text-align: center;
}

.comic-art-highlight img {
  width: 80%;
  height: auto;
}

/* Publisher Section */
.publisher-section {
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(165, 146, 69, 0.2);
}

.publisher-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.preview-request-box {
  margin-top: 40px;
  padding: 30px;
  background: #fff;
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.preview-request-box h3 {
  color: var(--color-gold);
  margin-bottom: 15px;
}

/* Myth Form */
.myth-form {
  background: #fff;
  padding: 50px;
  border: 1px solid rgba(165, 146, 69, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-family: Georgia, serif;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

/* Celestial Purpose (Vision & Mission) Redesign */
.celestial-purpose {
  display: flex;
  height: 80vh;
  min-height: 600px;
  background: #000;
  overflow: hidden;
  position: relative;
}

.celestial-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.celestial-panel:hover {
  flex: 1.5;
}

.panel-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.panel-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.celestial-panel:hover .panel-bg {
  transform: scale(1.1);
  filter: brightness(0.6) saturate(1.4);
}

.panel-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px;
  max-width: 500px;
  text-align: center;
  pointer-events: none;
}

.panel-tag {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.panel-title {
  font-size: clamp(40px, 4vw, 64px);
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.panel-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 30px;
  transition: width 0.6s ease;
}

.celestial-panel:hover .panel-divider {
  width: 120px;
}

.panel-text {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  font-family: "Cinzel", serif;
}

.vision-panel {
  border-right: 1px solid rgba(165, 146, 69, 0.3);
}

.mission-panel {
  border-left: 1px solid rgba(165, 146, 69, 0.3);
}

@media (max-width: 992px) {
  .celestial-purpose {
    flex-direction: column;
    height: auto;
  }

  .celestial-panel {
    height: 50vh;
  }
}

/* Marquee Section */
.marquee-section {
  padding: 15px 0;
  /* Reduced padding */
  background: #000;
  /* Black background */
  overflow: hidden;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  position: relative;
  z-index: 5;
}

.js-marquee {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  font-family: "Cinzel", serif;
  font-size: 24px;
  /* Smaller font size */
  font-weight: 500;
  color: var(--color-gold);
  /* Gold text */
  text-transform: uppercase;
  letter-spacing: 3px;
}

.marquee-content span {
  padding: 0 30px;
}

.marquee-content .dot {
  color: #fff;
  font-size: 18px;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: #111;
  /* Black/Dark background */
  color: #fff;
}

.faq-section .section-title {
  color: var(--color-gold);
}

.faq-accordion {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(165, 146, 69, 0.2);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 25px 0;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: #fff;
  /* White text for question */
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-question span {
  font-size: 28px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--color-gold);
  /* Gold when active */
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Adjust as needed */
}

.faq-answer p {
  padding-bottom: 25px;
  font-size: 18px;
  color: #ccc;
  /* Light gray/white text for answer */
  line-height: 1.6;
}

.mb-60 {
  margin-bottom: 60px;
}

/* ==============================
   CONTACT PAGE
============================== */

.contact-header {
  background-image: url(../assets/contact-header.webp);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info-panel p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
}

.method-item p {
  font-size: 20px;
  color: var(--color-gold);
  margin-top: 10px;
}

.social-links.large a {
  width: 60px;
  height: 60px;
  font-size: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 0 40px;
  border-top: 2px solid var(--color-gold);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 32px;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  color: var(--color-gold);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(165, 146, 69, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ==============================
   CARD DETAIL PAGE
 ============================== */
/* === AAA Character Page Redesign === */
.card-detail-page {
  background: radial-gradient(circle at 50% 20%, #1a1a1a 0%, #050505 100%);
  color: #fff;
  min-height: 100vh;
}

.character-spotlight-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.character-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.character-name.hindu-script {
  font-size: clamp(60px, 8vw, 120px);
  margin-bottom: 20px;
  background: linear-gradient(to bottom, var(--color-gold) 30%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 8px;
  filter: drop-shadow(0 0 20px rgba(165, 146, 69, 0.3));
}

.character-subtitle {
  font-family: 'Lora', serif;
  font-size: 32px;
  color: var(--color-gold);
  font-style: italic;
  margin-bottom: 40px;
  opacity: 0.9;
}

.character-details {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 90%;
  margin-bottom: 50px;
  font-family: 'Lora', serif;
}

.character-image-area {
  perspective: 1000px;
}

.vertical-character-frame {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(165, 146, 69, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transform: rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vertical-character-frame:hover {
  transform: rotateY(0deg) translateY(-10px);
  border-color: rgba(165, 146, 69, 0.5);
  box-shadow: 0 50px 120px rgba(165, 146, 69, 0.1);
}

.character-portrait {
  width: 100%;
  height: auto;
  filter: saturate(1.1) contrast(1.1);
  display: block;
}

.character-metadata.full-width {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: rgba(255, 255, 255, 0.03);
  padding: 50px;
  border: 1px solid rgba(165, 146, 69, 0.1);
  backdrop-filter: blur(5px);
}

.metadata-item .label {
  color: var(--color-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
  font-weight: 400;
}

.metadata-item .value {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  font-family: 'Lora', serif;
}

.disclaimer-note {
  margin-top: 150px;
  padding: 60px 40px;
  border-top: 1px solid rgba(165, 146, 69, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  letter-spacing: 0.5px;
}

.relatives-section {
  padding: 100px 0 150px;
  background: transparent;
  color: #111;
}

.relatives-section .section-title {
  color: var(--color-gold);
}

.relatives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px auto 0;
  width: 100%;
  /* Ensure it takes container width */
}

.footer-bottom {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 30px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==============================
   SPLIT SCREEN CARD VIEWER
   ============================== */
.card-viewer-layout {
  display: flex;
  width: 100%;
  height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
  background: #050505;
}

/* IMAGE SIDE - STICKY LEFT */
.viewer-image-side {
  flex: 0 0 40%;
  height: 100%;
  background-size: contain;
  background-position: center;
  position: relative;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-color: #050505;
  box-shadow: inset 0px 0px 31px 35px #000000;
  -webkit-box-shadow: inset 0px 0px 31px 35px #000000;
  /* Fades edges while keeping center clear */
}

.character-identity-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(165, 146, 69, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-left: 3px solid var(--color-gold);
}

.character-identity-badge .classification {
  font-family: "Cinzel", serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
}

/* CONTENT SIDE - SCROLLABLE RIGHT */
.viewer-content-side {
  flex: 0 0 60%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) #111;
  background: #050505;
}

.content-scroll-area {
  width: 100%;
}

.card-viewer-layout .content-padding {
  padding: 60px 80px 100px;
  max-width: unset;
}

.character-title-large {
  font-family: "Cinzel", serif;
  font-size: clamp(48px, 5vw, 84px);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.character-subtitle-elegant {
  font-family: "Lora", serif;
  font-size: 24px;
  color: var(--color-gold);
  font-style: italic;
  margin-bottom: 50px;
  opacity: 0.8;
}

.narrative-section {
  margin-bottom: 60px;
}

.narrative-text {
  font-family: "Lora", serif;
  font-size: 21px;
  line-height: 1.8;
  color: #f0f0f0;
  letter-spacing: 0.3px;
  text-align: justify;
}

.narrative-text p {
  margin-bottom: 1.5em;
}

.narrative-text b,
.narrative-text strong {
  color: var(--color-gold);
}

.metadata-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  padding-top: 50px;
  border-top: 1px solid var(--color-gold);
}

.meta-block.full-width {
  grid-column: span 2;
  margin-bottom: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-gold);
  /* Gold divider to match the top one */
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 146, 69, 0.3);
  padding: 5px 12px;
  font-size: 14px;
  color: #fff;
  font-family: "Lora", serif;
}

.meta-label {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 14px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.meta-value {
  font-family: "Lora", serif;
  font-size: 22px;
  color: #fff;
}

.pack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pack-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 146, 69, 0.3);
  padding: 5px 12px;
  font-size: 14px;
  color: #fff;
  font-family: "Lora", serif;
}

.action-footer {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}

.btn-secondary-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 16px 40px;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  gap: 12px;
}

.btn-secondary-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.legal-disclaimer-minimal {
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  padding: 30px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* CUSTOM SCROLLBAR FOR CONTENT */
.viewer-content-side::-webkit-scrollbar {
  width: 6px;
}

.viewer-content-side::-webkit-scrollbar-track {
  background: #050505;
}

.viewer-content-side::-webkit-scrollbar-thumb {
  background: var(--color-gold);
}

/* RESPONSIVE SPLIT */
@media (max-width: 1024px) {
  .card-viewer-layout {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .viewer-image-side {
    height: 60vh;
    flex: 0 0 auto;
  }

  .viewer-content-side {
    height: auto;
    flex: 0 0 auto;
    overflow: visible;
  }

  .image-overlay-gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, #050505 100%);
  }

  .content-padding {
    padding: 40px 30px;
  }
}

/* ==============================
   PREMIUM TOAST NOTIFICATIONS
   ============================== */
.toast-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.myth-toast {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  border-left: 4px solid var(--color-gold);
  color: #fff;
  padding: 20px 35px;
  min-width: 320px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Lora", serif;
  transform: translateX(120%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 4px;
}

.myth-toast.show {
  transform: translateX(0);
}

.myth-toast .toast-star {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  animation: toast-star-spin 4s linear infinite;
}

@keyframes toast-star-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.myth-toast.success {
  border-left-color: var(--color-gold);
}

.myth-toast.error {
  border-left-color: #ff4d4d;
}

.toast-content h4 {
  font-family: "Cinzel", serif;
  margin: 0 0 5px;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.toast-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ==============================
   COSMOS SIDEBAR & FILTER
   ============================== */
.cosmos-layout-wrapper {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  align-items: stretch;
  min-height: 800px;
}

.cosmos-sidebar {
  flex: 0 0 280px;
  background: rgba(10, 10, 10, 0.6);
  border-right: 1px solid rgba(165, 146, 69, 0.1);
  position: relative;
}

.sidebar-inner {
  position: sticky;
  top: 120px;
  height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 0 15px 40px 0;
}

/* Custom Scrollbar for Sidebar */
.sidebar-inner::-webkit-scrollbar {
  width: 4px;
}

.sidebar-inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.sidebar-inner::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.cosmos-main-content {
  flex: 1;
  min-height: 1000px;
  /* Prevents jumping */
}

.active-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  min-height: 40px;
}

.filter-badge {
  background: var(--color-gold);
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 5px 15px rgba(165, 146, 69, 0.2);
}

.filter-badge:hover {
  transform: translateY(-2px);
  background: #fff;
}

.filter-badge::after {
  content: '×';
  font-size: 18px;
  font-weight: bold;
  margin-left: 5px;
}

.cosmos-select {
  width: 100%;
  background: #000;
  color: #fff;
  border: 1px solid rgba(165, 146, 69, 0.4);
  padding: 10px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.cosmos-select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.cosmos-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(165, 146, 69, 0.1);
}

.page-btn {
  width: 44px;
  height: 44px;
  background: #000;
  /* Inactive color is black */
  border: 1px solid rgba(165, 146, 69, 0.2);
  color: #fff;
  font-family: 'Cinzel', serif;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover,
.page-btn.active {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(165, 146, 69, 0.3);
}

.cosmos-main-content {
  flex: 1;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 15px;
}

.filter-header h3 {
  font-size: 20px;
  color: var(--color-gold);
  margin: 0;
}

.clear-filters {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.clear-filters:hover {
  color: var(--color-gold);
}

.filter-group {
  margin-bottom: 40px;
}

.filter-title {
  font-family: "Cinzel", serif;
  font-size: 16px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
  font-weight: normal;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 12px;
}

.filter-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  display: block;
  padding: 8px 15px;
  border-left: 2px solid transparent;
}

.filter-list a:hover,
.filter-list a.active {
  color: var(--color-gold);
  background: rgba(165, 146, 69, 0.05);
  border-left-color: var(--color-gold);
  padding-left: 20px;
}

/* Responsive adjustment for sidebar */
@media (max-width: 1024px) {
  .cosmos-layout-wrapper {
    flex-direction: column;
  }

  .cosmos-sidebar {
    flex: 0 0 auto;
    position: relative;
    top: 0;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .filter-header {
    grid-column: span 2;
  }
}

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

  .filter-header {
    grid-column: span 1;
  }
}

.full-width-section .cosmos-layout-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  gap: 0;
}

.cosmos-sidebar {
  background: #0a0a0a;
  /* Dark sidebar background */
  border-right: 1px solid rgba(165, 146, 69, 0.2);
  min-height: calc(100vh - 120px);
}

.sidebar-inner {
  padding: 40px;
}

.cosmos-main-content {
  padding: 40px 60px;
  background: transparent;
}

.cards-grid {
  transition: opacity 0.3s ease;
}

/* Ensure the layout wrapper doesn't have container constraints */
.cosmos-deck-section.full-width-section .container {
  max-width: 100% !important;
  padding: 0 !important;
}

.filter-actions {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(165, 146, 69, 0.1);
}

.clear-filters {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family:"Cinzel", serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.clear-filters:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

    
.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}


.intro-inner2 {
    width: 1320px;
    position: relative;
    margin: auto;
}
  
.works_grid{      
	display: grid;     
    grid-template-columns:55% 39%;
    grid-template-rows: auto min-content auto;
    grid-gap: 0 1.8rem;
    padding: 0rem 0rem; 
    align-items: center;	
}

.cloud2 {
    position: absolute;
    z-index: 2;
    left: clamp(-151px, -38vw, -46px);
    top: clamp(-98px, -11vw, 376px);
    width: clamp(64px, 35vw, 597px);
    height: auto;
    pointer-events: none;
}    

   
section.works {    
   padding: 130px 0 120px;
    position: relative;
    margin: auto;  
}  

    
section.works::before {
    content: "";
    position: absolute;   
    left: 0;
    top: -1px;
    width: 100%;
    height: clamp(54px, 5vw, 82px);
    background: url(../assets/01_Hero_Banner/black-torn.webp) center top / 100% 100% no-repeat;
    z-index:0;
    pointer-events: none;
}  

.right_text .eyebrow {
    margin-bottom: 33px;
    font-size: clamp(20px, 1.4vw, 28px);
    text-transform: uppercase;
} 
   
.right_text h2{
	color: var(--color-gray);
    font-size: clamp(52px, 4vw, 84px);
    line-height: 0.9;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 22px;
	text-align: right;
	
}

.right_text p{
	font-size: clamp(15px, 1vw, 20px);
    line-height: 1.3;
	text-align:right;
}

.right_text .button {
    float: right;
}  
 
.cloud_bird {
    right: 5%;
    top: -13px;
    width: clamp(75px, 3vw, 140px);
    position: absolute;
}    

 

.works-section{
    position:relative;
    width:100%;
    padding:100px 0;
    overflow:hidden;
}

/* Black Center Strip */
.works-strip {
    background: #000;
    width: 100%;
    height: 275px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    position: relative;   
}

/* Left Content */
.works-left {
    width: 35%;
    color: #fff;
    text-align: right;
	padding-right: 25px;
}

.works-left h2 {
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1px;
}

.works-left p {
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 25px;
}



.works-btn{
    display:inline-block;
    padding:12px 35px;
    background:#3a3a3a;
    color:#fff;
    text-decoration:none;
    font-size:12px;
    letter-spacing:1px;
    transition:0.3s;
}

.works-btn:hover{
    background:#b79d4a;
}

/* Center Image */
.works-center{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    z-index:5;
}

.works-center img{
    width:320px;
    max-width:100%;
    display:block;
}    

/* Right Content */
.works-right{
    width:35%;
    color:#fff;
    text-align:center;
}

.works-right h3{
    color:#b79d4a;
    font-size:26px;
    font-weight:400;
    margin-bottom:15px;
	text-align: right;
}

.works-right p {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: right;
}
  

 
 
.newsletter-box {
    width: 250px;
    height: 40px;
    display: flex;
    overflow: hidden;
    border: 1px solid #c8c8c8;
    background: #e5e5e5;
    float: right;
}  

.newsletter-box input{
    flex:1;
    border:none;
    outline:none;
    background:#e5e5e5;
    padding:0 15px;
    font-size:14px;
    color:#000;
    font-family:Arial, sans-serif;
}

.newsletter-box input::placeholder{
    color:#777;
}

.newsletter-box button{
    width:40px;
    border:none;
    background:#b79d4a;
    color:#fff;
    font-size:12px;
    cursor:pointer;
    transition:0.3s;
}

.newsletter-box button:hover{
    background:#9c8538;
}  

.sec_2last{
	padding:120px 0;  
}  

.intro-inner3{   
    position: relative;
    width: min(100%, 1920px);
    margin: 0 auto;
  /*   padding-top: clamp(120px, 10vw, 190px); */
}
        
.middel_text {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    grid-template-rows: auto min-content auto;
    grid-gap: 0 1.8rem;
    padding: 0rem 0rem;
    align-items: center;
    text-align: center;
}   
 
.middel_text .eyebrow2 {
    margin-bottom: 20px;
    font-size: clamp(20px, 1.4vw, 28px);
    text-transform: uppercase;
}
    
 .middel_text h2{
	color: var(--color-gray);  
    font-size: clamp(52px, 4vw, 84px);
    line-height: 0.9;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 22px;
    text-align: center;
 }
 
 .middel_text p{
	font-size: clamp(15px, 1vw, 20px);
    line-height:28px;
    text-align:Center;
 }
 
 
 
 .mythology-section {
    position: relative;
    width: 100%;
    min-height: auto;
    overflow: hidden;
    padding: 20px 0 70px;
}    

    /* Background texture */
  
    .mythology-container{   
      margin:auto;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      z-index:2;
    }

    /* Left content box */
.mythology-content {
    width: 56%;
    padding: 5rem 8rem 7rem 3rem;
    position: relative;
    overflow: hidden;
    background-image: url(../assets/06_Section_Six/hindu-tabloid.webp);
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
}           
       

    .mythology-inner{
      position:relative;
      z-index:2;
    }

    .mythology-stone{
      width:120px;
      display:block;
      margin:0 auto 25px;
    }

    .mythology-title{
      color:#b89643;
      font-size:40px;
      font-weight:400;
      letter-spacing:1px;
      margin-bottom:30px;
      text-transform:uppercase;
    }

    .mythology-text{
      color:#8f8f8f;
      font-size:15px;
      line-height:1.9;
      margin-bottom:35px;
    }

    .divider{
      width:120px;
      height:1px;
      background:#6d5b2f;
      margin:25px 0;
    }

    /* Right image */
   .mythology-character {
	/* 	position: absolute;
		right: 99px;
		top: 50%;
		transform: translateY(-50%);
		width: 520px;
		z-index: 3; */
		width:45%;   
		
	}    

    .mythology-character img {
		width: 100%;
		display: block;
		margin-left: -130px;
	}    

    /* Black smoke effect */
    .smoke{
      position:absolute;
      bottom:-40px;
      left:45%;
      width:260px;
      opacity:0.8;
      filter:blur(2px);
      z-index:1;
    }

.mythology_grid {
    display: grid;
    grid-template-columns: 75% 24%;
    grid-template-rows: auto min-content auto;
    grid-gap: 0;
    padding: 0rem 0rem;
    align-items: center;
}   



/* SECTION */
.krishna-section{
  position:relative;
  overflow:hidden;
  min-height:80vh;    
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:80px 6% 0;
}
       

/* Bottom Battleground Image */
.krishna-bg{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  z-index:1;   
  opacity:0.8;       
}
  
.krishna-bg img{
  width:100%;
  display:block;
}

/* Content */
.krishna-content{
  position:relative;
  z-index:3;
  width:100%;
  max-width:1400px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
}

/* Left Text */
.krishna-text {
    width: 38%;
    padding-bottom: 110px;
}

.krishna-text p{
  color:#000;
  font-size:14px;
  line-height:1.9;
    
}

/* Right Image */
.krishna-image{
  position:relative;
  width:58%;
  display:flex;
  justify-content:flex-end;
}

.krishna-image img{
  width:100%;
  max-width:700px;
  display:block;
  position:relative;
  z-index:3;
}
 
 
    
    
	
	

/* Responsive */
@media(max-width:991px){

    .works-strip{
        flex-direction:column;
        height:auto;
        gap:40px;
        padding:220px 30px 60px;   
    }

    .works-left,
    .works-right{
        width:100%;
    }

    .works-center{
        top:0;
        transform:translate(-50%, 0);
    }

    .works-center img{
        width:260px;
    }

    .works-left h2{
        font-size:42px;
    }
	
	  .mythology-container{
        flex-direction:column;
        align-items:flex-start;
      }

      .mythology-content{
        width:100%;
        padding:50px 25px;
      }

      .mythology-character{
        position:relative;
        width:100%;
        max-width:420px;
        margin:40px auto 0;
        top:auto;
        right:auto;
        transform:none;
      }

      .mythology-title{
        font-size:30px;
      }

         
  .krishna-section{
    padding:60px 20px;
    min-height:auto;
  }    

  .krishna-content{
    flex-direction:column-reverse;
    align-items:center;
    gap:40px;
  }

  .krishna-text{
    width:100%;
    text-align:center;
    padding-bottom:0;
  }

  .krishna-text p{
    margin:auto;
  }

  .krishna-image{
    width:100%;
    justify-content:center;
  }

	  
	  
}   