

*, ::after, ::before {
  box-sizing: border-box;
}

@font-face{
	src: url(../fonts/OpenSans-Regular.ttf);
	font-family: opensans;
}

@font-face{
	src: url(../fonts/DancingScript-VariableFont_wght.ttf);
	font-family: dancingscript;
}

@font-face{
	src: url(../fonts/AmaticSC-Regular.ttf);
	font-family: amatic;
}

@font-face{
	src: url(../fonts/SpecialElite-Regular.ttf);
	font-family: specialelite;
}

@font-face{
	src: url(../fonts/#ffeb00tail-Regular.ttf);
	font-family: #ffeb00tail;
}

@font-face{
	src: url(../fonts/Segoe-UI.ttf);
	font-family: segoe;
}

@font-face{
	src: url(../fonts/Segoe-UI-Bold.ttf);
	font-family: segoebold;
}
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
	
	
/* HERO SECTION */
.hero {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75);
}

/* GRADIENT OVERLAY (SOFT SPIRITUAL LOOK) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(180, 0, 0, 0.65),
        rgba(255, 120, 0, 0.55)
    );
}

/* CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 20px;
    z-index: 2;
    max-width: 800px;
}

/* MAIN QUOTE */
.hero h1 {
    font-size: 2.8rem;
    color: #ffeb00;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(255, 200, 0, 0.6);
}

/* SUBTEXT */
.hero p {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #f5f5f5;
    line-height: 1.6;
    opacity: 0.95;
}

/* SOFT GLOW ANIMATION */
@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(255,200,0,0.5); }
    50% { text-shadow: 0 0 25px rgba(255,220,0,0.9); }
    100% { text-shadow: 0 0 10px rgba(255,200,0,0.5); }
}

.hero h1 {
    animation: glow 4s ease-in-out infinite;
}

	
	
	
	
	
body{

	font-family: opensans;
	font-size: 16px;
	margin:0px;
	padding:0px;
	word-break: break-word;
	word-wrap: break-word;

	
}

/* Banner */
.banner {
  position: relative;
  display: flex;
  align-items: center;
  height: 120px;
  padding: 0 0px;
  background: #e30606;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  background: #ffeb00;

  /* Key fix: curve faces LEFT (into red) */
  border-top-left-radius: 180px;
  border-bottom-left-radius: 180px;

  /* Pull it slightly inside */
  transform: translateX(40%);
  z-index: 0;
}

/* Keep content above curve */
.banner > * {
  position: relative;
  z-index: 1;
}

/* Logo */
.banner__logo img {
  width: 70px;
  height: auto;
}

/* Title */
.banner__title {
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: clamp(20px, 4vw, 56px);
  font-weight: 900;
  color: #ffeb00;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: translateX(-75px);
}

		

	@keyframes menu_appear{
	0%{opacity: 0;transform: translateX(-100px);}
	100%{opacity: 1;transform: translateX(0px);}
}

/* CONTINUITY FROM HERO (soft gradient blend) */
.spiritual-divider {
  .spiritual-divider {
  background:
    linear-gradient(to bottom, rgba(255,120,60,0.3), #ff1f1f),
    url('./assets/images/hero.webp') center/cover no-repeat;
  background-blend-mode: overlay;
}
  );
}

/* SOFT LIGHT GLOW EFFECT */
.spiritual-divider .glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 220, 150, 0.8), transparent 70%);
  filter: blur(25px);
  opacity: 0.7;
}

/* OPTIONAL: subtle wave edge */
.spiritual-divider::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 60px;
  background: #ff1f1f;
  border-top-left-radius: 100% 60px;
  border-top-right-radius: 100% 60px;
}



/* ABOUT SECTION */
.about-section {
  background: #ff1f1f;
  padding: 40px 20px;
}

.about-container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #ff1f1f;
}

/* LEFT IMAGE */
.about-image {
  flex: 1 1 45%;
  background: #000;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.about-content {
  flex: 1 1 55%;
  padding: 40px;
  color: #fff;
}

/* HEADING */
.about-content h2 {
  font-size: 42px;
  color: #ffd54f;
  margin-bottom: 15px;
}

/* PARAGRAPH */
.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  letter-spacing: 0.2px;     /* smoother readability */
}

/* HIGHLIGHT TEXT */
.about-content .highlight {
  color: #ffe082;
  font-weight: 500;
}

/* CTA */
.about-content .cta {
  color: #ffeb3b;
  font-weight: bold;
}


/* =========================
   SPIRITUAL TRANSITION
========================= */
.transition {
    position: relative;
    height: 180px;
    background: linear-gradient(
        to bottom,
        #ff1f1f 0%,
        #ff6a00 35%,
        #ffc107 70%,
        #ffeb00 100%
    );
    overflow: hidden;
}

/* divine light rays */
.transition::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -30%;
    left: -25%;
    background: radial-gradient(circle at center,
        rgba(255,255,255,0.25) 0%,
        rgba(255,235,0,0.25) 30%,
        transparent 65%
    );
    opacity: 0.6;
}

/* subtle top glow */
.transition::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}

/* wave layers */
.wave1 {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.wave2 {
    position: absolute;
    bottom: 10px;
    width: 100%;
    opacity: 0.5;
}

/* =========================
   THOUGHT SECTION
========================= */
.thought-section {
    background: #ffeb00;
    padding: 90px 20px;
    text-align: center;
    position: relative;
}

/* soft aura background */
.thought-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%);
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.thought-section h2 {
    color: #e30606;
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* quote card */
.quote-card {
    background: #fffdf5;
    border-radius: 18px;
    padding: 35px;
    max-width: 620px;
    margin: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}

/* decorative top line */
.quote-card::before {
    content: "";
    width: 60px;
    height: 4px;
    background: #e30606;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
}

/* quote text */
.quote-text {
    font-size: 20px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* author */
.quote-author {
    color: #e30606;
    font-weight: bold;
    margin-bottom: 15px;
}

/* button */
.view-more {
    display: inline-block;
    text-decoration: none;
    background: #e30606;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    transition: 0.3s;
}

.view-more:hover {
    background: #b80000;
}



.transition-rajyoga {
    position: relative;
    height: 140px;
    background: linear-gradient(
        to bottom,
        #ffeb00 0%,
        #ffd000 40%,
        #ff9a00 70%,
        #fff5cc 100%
    );
    overflow: hidden;
}

/* subtle divine glow (yellow + red energy) */
.transition-rajyoga::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -60%;
    left: -50%;
    background: radial-gradient(circle,
        rgba(227,6,6,0.15) 0%,
        rgba(255,235,0,0.25) 30%,
        transparent 70%
    );
}

/* wave */
.transition-rajyoga svg {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* =========================
   RAJYOGA SECTION
========================= */
.rajyoga-section {
    background: linear-gradient(to bottom, #fff5cc, #ffffff);
    text-align: center;
    padding: 90px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.rajyoga-section h2 {
    color: #e30606;
    font-size: 34px;
    margin-bottom: 10px;
}

.rajyoga-subtext {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   CARDS LAYOUT
========================= */
.rajyoga-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* individual card */
.rajyoga-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

/* subtle spiritual glow */
.rajyoga-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(255,235,0,0.25), transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

/* hover effect */
.rajyoga-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(227,6,6,0.2);
}

.rajyoga-card:hover::before {
    opacity: 1;
}

/* icon */
.icon {
    font-size: 34px;
    margin-bottom: 15px;
}

/* headings */
.rajyoga-card h3 {
    color: #e30606;
    margin-bottom: 10px;
}

/* text */
.rajyoga-card p {
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}


/* =========================
   TRANSITION
========================= */
.transition-activities {
    height: 140px;
    background: linear-gradient(to bottom, #fff5cc, #ffeb00, #ff9a00);
    position: relative;
    overflow: hidden;
}

.transition-activities::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -60%;
    left: -50%;
    background: radial-gradient(circle,
        rgba(227,6,6,0.2),
        rgba(255,235,0,0.3),
        transparent 70%);
}

.transition-activities svg {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* =========================
   SECTION BASE
========================= */
.activities-section {
    background: linear-gradient(to bottom, #fff8dc, #ffffff);
    padding: 90px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.activities-section h2 {
    color: #e30606;
    font-size: 34px;
}

.activities-subtext {
    max-width: 650px;
    margin: 10px auto 50px;
    color: #555;
}

/* =========================
   FEATURED CARD (AARTI)
========================= */
.featured-card {
    max-width: 900px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #e30606, #ff6a00);
    color: #fff;
    border-radius: 22px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(227,6,6,0.3);
}

/* glow */
.featured-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle,
        rgba(255,235,0,0.4),
        transparent 60%);
}

/* content */
.featured-content {
    position: relative;
    z-index: 1;
}

.featured-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.featured-card p {
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.featured-time {
    display: inline-block;
    background: #ffeb00;
    color: #111;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* CTA button */
.cta-btn {
    display: inline-block;
    background: #fff;
    color: #e30606;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ffeb00;
}

/* =========================
   GRID
========================= */
.activities-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* cards */
.activity-card {
    width: 300px;
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(227,6,6,0.2);
}

/* glow */
.activity-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(circle,
        rgba(255,235,0,0.25),
        transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.activity-card:hover::before {
    opacity: 1;
}
.featured-content .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.activity-card .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.activity-card h3 {
    color: #e30606;
}

.activity-card p {
    color: #444;
    font-size: 15px;
}

.time {
    display: inline-block;
    margin-top: 10px;
    background: #ffeb00;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* =========================
   BOTTOM CTA
========================= */
.bottom-cta {
    margin-top: 60px;
}

.bottom-cta a {
    background: #e30606;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.bottom-cta a:hover {
    background: #b80000;
}

/* HAMBURGER CONTAINER */
.menu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 90px;
    background: #ffeb00;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* HAMBURGER ICON */
.menu-toggle span {
    font-size: 30px;
    color: #e30606;
}

/* MENU PANEL (CONTAINED INSIDE HEADER) */
.menu {
    position: fixed;
    top: 80px; /* EXACTLY below header */
    right: 0;
    width: 360px;
    background: #ffeb00;
    display: none;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	
	
}

/* SHOW MENU */
.menu.active {
    display: block;
}

/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* SECTION TITLE */
.menu-section h4 {
    font-size: 13px;
    font-weight: 800;
    color: #e30606;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

/* LINKS */
.menu-section a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0;
    transition: 0.2s;
}

/* HOVER */
.menu-section a:hover {
    color: #e30606;
    transform: translateX(4px);
}

.item_class_0:hover{
	display: block!important;
	padding: 10px!important;
	text-align: center!important;
	text-decoration: none!important;
	font-size: 20px!important;
	color: rgb(147, 147, 147)!important;
	cursor: pointer!important;
}
 

	
	@keyframes menu-appear{
	0%{transform: translateX(50px);opacity: 0}
	100%{transform: translateX(0px);opacity: 1}
}
.item_class_2{
	display: none;
}

.item_class_3{
	display:flex;
	animation: menu-appear 0.5s ease;
}

	@media (max-width:992px)
	{
.item_class_2{
	display: block;
	cursor: pointer;
}
.item_class_3 a{
	width: 100%;
}

.item_class_3{
	position: absolute;
	flex-direction: column;
	top: 100%;
	left: 0px;
	width: 100%;
	min-width: 200px;
	display: none;
}

.item_class_1:hover > .item_class_3{
	display: flex;
}
}

	
	@keyframes menu-appear{
	0%{transform: translateX(50px);opacity: 0}
	100%{transform: translateX(0px);opacity: 1}
}
.item_class_5{
	display: none;
}

.item_class_6{
	display:flex;
	animation: menu-appear 0.5s ease;
}

	@media (max-width:992px)
	{
.item_class_5{
	display: block;
	cursor: pointer;
}
.item_class_6 a{
	width: 100%;
}

.item_class_6{
	position: absolute;
	flex-direction: column;
	top: 100%;
	left: 0px;
	width: 100%;
	min-width: 200px;
	display: none;
}

.item_class_4:hover > .item_class_6{
	display: flex;
}
}

.class_1{

	color: rgba(228, 10, 10);
	background: white;
}
.class_2{

	display: flex;
	height: auto;
	
}



.class_4{
	
	width:100%;
	object-fit: fill;
	max-width: 100%;
			
}

.class_5{

	width: 1062px;
	height: 82%;
	display: flex;
	flex-wrap: wrap;
	background-color: rgb(0, 245, 245);
	color: rgb(255, 255, 255);
	
}

.class_6{
	padding: 5px 0px;
	height: 75px;
	color: #1f2667;
	font-size: 70px;
	font-weight: bold;
	text-align: left;
	letter-spacing: 8px;
	margin-left: 30px;
	position: static;
	width: 1000px;
	font-family: Courier, monospace;
	
}

.class_7{

	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.51);
	left: 0px;
	top: 79px;
	position: fixed;
	display: none;
	
	
}

.class_8{
	display: flex;
	height: auto;
		
}

.class_8 img{

	width:100%;
	object-fit: fill;
	min-width: 0;

}
.class_9{
	width: 100vw;
	height: 100vh;
	background-color: #b1b6e8;
	color: rgb(255, 255, 255);
	height: 1840px;
	
}

.class_10{

	padding: 10px;
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	
	
}

.class_11{

	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	color: rgb(228, 0, 0);
	font-family:EB Garamond;
	font-size: 50px;
	margin: 0px;
	
}

.class_12{

	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	font-size: 18px;
	margin: 0px;
	
}

.class_13{

	width: 1300px;
	padding: 10px;
	color: rgb(255, 255, 255);
	left: 50px;
		
}

.class_14{

	padding: 10px;
	background-color: rgb(247, 247, 247);
	color: rgb(0, 0, 0);
	display: flex;
	align-items: center;
	margin: auto;
	flex-wrap: wrap;
	
}

.class_15{

	max-width: 100%;
	height: auto;
	background-color: rgb(224, 224, 224);
	color: rgb(0, 0, 0);
	margin: 10px;
	text-align: center;
	
}

.class_16{

	object-fit: fill;
	
}



.class_17{

	padding: 0px;
	color: black;
	margin: 10px;
	text-align: left;
	font-size: 16px;
	
}

.class_18{
	
	width: 800px;
	padding: 15px 0px 0px 100px;
	color: black;
	font-size: 40px;
			
}

.class_18 p{
	
	color: black;
	font-size: 16px;
			
}

.class_19{

	padding: 5px 0px 0px 125px;
	font-size: 60px;
	color: #F497AB;

	
}


.class_19 a {

  	text-decoration: none;
	color: #F497AB;
}


.class_19 a:hover, a:focus, a:active{

  	text-decoration: none;
	color: red;
}




.class_20{

	padding: 5px 0px 0px 125px;
	font-size: 60px;
	text-align: center;
	color: #fcff7e;
	
	
}

.class_21{

	padding: 10px;
	background: rgba(255,255,0,1);
	color: rgb(0, 0, 0);
	min-height: 300px;
	display: flex;
	align-items: center;
	margin: auto;	
	flex-wrap: wrap;
}

.class_22{

	padding: 5px;
	
}

.class_23{
	background-color: rgb(255, 255, 255);
	padding-top: 10px;
	padding-bottom: 10px;
	
}

.class_24{

	display: flex;
  	padding: 20px 20px 20px 20px;
}
	

.class_25{

	min-height: 200px;
	background-color: rgb(242, 242, 242);
	vertical-align: top;
	min-width: 400px;
	
}

.class_26{

	width: 100%;
	height: 100%;
	object-fit: cover;
	
}

.class_27{

	color: #838996;
	height: auto;
	display: flex;
	
}

.class_28{
	margin-top: 40px;
	margin-left: 10px;
	margin-right: 20px;
	text-transform: uppercase;
	font-size: 30px;
	color: #848482;
	padding-left: 10px;
	
}

.class_29{
	margin-left: 10px;
	margin-right: 20px;
	padding-left: 10px;
	padding-right: 10px;
	
}

.class_30{

	background-color: white;
	color: red;
	max-width: 1350px;
	display: flex;
	justify-content: center;
	align-items: center;
}



.class_31{
	margin-top: 20px;
	margin-left: 30px;
	color: #838996;
	padding: 5px;
	text-decoration: none;
	font-size: 22px;
		
}

.class_31 a, a:hover, a:focus, a:active{

  	text-decoration: none;
	color: inherit;
}

.class_31 a:hover, a:focus, a:active{

  	text-decoration: none;
	color: red;
	border: 1px solid #FFD300;
}

.class_32{

	font-size: 28px;
	margin-left: 20px;
	margin-right: 20px;
	color:red;
	cursor: pointer;
		
}

.class_32: hover{

	color: red;
	border: red;

	
}

.class_33{

	padding: 10px;
	
}

.css-button {
	
	display: flex;
	color: #ff1703;
	font-size: 40px;
	position: fixed;
	font-family: Arial;
    width: 80px;
	height: 50px;
	margin-top: 25px;
	margin-left: 1200px;
	background-color:#ffeb00;
	border:none;
	right: 60px;
	top: 6px;
	border-radius: 6px;
}

	
}
.css-button-text{

	padding: 20px 18px;
	
}
.css-button-icon{


	margin-left: auto;
	margin-right: auto;
	background-color:#ffeb00;
}


.dropdown-content {
 	display: none;
 	position: absolute;
 	background-color: #b1b6e8;
  	min-width: 500px;
  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 9999;
	right: 0;
	left: auto;
}

.column{
	float: left;
	width: 50%; /* Two equal columns */
	box-sizing: border-box;
	
}

.dropdown-content a {
  	color: black;
  	padding: 20px 16px;
  	text-decoration: none;
  	display: block;
	font-size: 25px;
	border-color: #ffeb00;
	border-bottom-color: red;
	border-bottom: 1px solid #FFD300;
	
}


.css-button:hover {
	background: #FFD300;
	z-index: 9999;
	position: relative:
}


.css-button:hover .css-button-icon{

	background: #FFD300;
}

.css-button:hover .dropdown-content {
	display: block;
	background-color: #ffeb00;
	
	
}

.dropdown-content a:hover {
  	background-color: #FFD300;
  	
}

.css-button:hover .dropdown-content a: visited{
	display: none;
}

		
.class_about_1{

	width: 1350;
	background-color: white;
	
}

.class_about_br {

	width: 1350;
	background-color: white;	
	color: white;
	
	

}

.class_about_2{

	margin-top: 120px;
	padding: 20px 0px 20px 80px;
	display: flex;
	width: 78%
	height: auto;
	margin: auto;
	background-color: white;

	
}

.class_about_3{

	width:35%;
	background-color: rgb(242, 242, 242);
	vertical-align: top;

}

.class_about_3 img{

	width: 100%;
	object-fit: fill;
	
}





.class_about_5{

	width: 60%;
	background-color: rgb(236, 28, 35);
	vertical-align: top;
	color: rgb(255, 201, 69);
	padding-left: 30px;
	padding-right: 30px;	
}

.class_about_6{

	padding-right: 10px;
	font-size: 40px;
	
}

.class_about_7{

	color: rgb(255, 255, 255);
	
}

.class_about_8{

	color: rgb(254, 241, 0);
	
}

.class_about_9{

	padding-right: 10px;
	
}

.class_about_10{

	font-size: 16px;
	padding-left: 10px;
	border: medium none;
	color: red;
	background-color: #ffeb00;
	border-radius: 6px;
	margin: 10px;
	cursor: pointer;
	width: 122px;
	
}


.class_photo {
	display: flex;
	height: auto;
	margin: 15px 10px 15px 30px;
	justify-content: center;
	
}

.class_photo_gal {
	display: flex;
	height: auto;
	flex-wrap: wrap;
	margin: 15px 10px 15px 30px;
	justify-content: space-evenly;
	
}

.class_photo_pre{
	left: 10px;
	width: 40px;
	height: 40px;
	color: red;
	top: 150px;
	background-color: #ffeb00;
	margin-right: 15px;
}

.class_photo_next{
 	right: 10px;
	width: 40px;
	height: 40px;
	top: 150px;
	color: red;
	background-color: #ffeb00;
	margin-left: 15px;
}

.class_photo_1{
	align-items: center;	
	border: 3px solid red;
	margin: 15px 10px 15px 10px;
	width: 100%;
	min-width: 0;
	background-color: red;
	
}

.class_photo_2{
	padding: 5px;
	text-align: center;
	font-size: 16px;
	color: #ffeb00;
}

.class_photo_1:hover{
	border:1px solid #ffeb00;
	color: red;

}

.class_photo_1 img{
	width: 100%;
	height: 280px;
	overflow: hidden;
}



.class_photo_3 {
	padding: 0;	
	margin: 0;
	margin: 15px 10px 15px 10px;
	justify-content: center;	
	align-items: center;	
	border: 3px solid red;
	font-size: 0;	
	line-space: 0;
	text-align:center;
	
	
}





.class_photo_3 :hover{
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: middle;
	display: block;	
	border: 1px solid #ffeb00;


}

.class_photo_3 img{
	margin: 0;
	padding: 0;
	vertical-align: middle;
	object-fit: fill;
	display: block;
	
	}

.class_video_1{

	display: flex;
  	justify-content: center;
  	align-items: center;	
	margin: auto;
	width:80%;
	color: rgba(256, 0, 0);
	background: #ffeb00;
	
	
}

.class_video_2{
	
	height: auto;
		
}

.class_video_2 a{
	text-decoration: none;
	font-weight: 600;
 	text-align: center;
	color: red;
}
.class_video_2 h1{
	
	font-size: 40px;
	font-family: Verdana;
	letter-spacing: 3px;
	word-spacing: 2px;
}

.class_video_2 h1:hover{
	letter-spacing: 4px;
	word-spacing: 3px;

}

.class_video_2 video{
	margin-left: auto;
  	margin-right: auto;
	
	}



.class_video_3 {
	background: white;

	
}

.class_video_4{
	
	min-width: 0;
	
			
}

.class_video_5 {
	
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax(340px, 1fr));
	gap: 50px 80px;
	height: auto;
	margin: 50px 10% 50px 10%;
	color: red;
	

			
			
}

.class_video_6 {

	object-fit: fill;
	border: 2px solid #33CCFF;
			
			
}
.class_video_6 a {

	text-decoration: none;
	object-fit: fill;
	
			
}


.class_video_6 iframe{

	width:100%;
	height: 290px;
	margin-left: auto;
  	margin-right: auto;	
	object-fit: fill;
			
}

.class_video_6 a:hover{
	border-radius: 6px;


}

.class_video_6 a video{
	width:100%;
	height: 290px;
	margin-left: auto;
  	margin-right: auto;	
	object-fit: fill;
			
	
}
	
.class_video_p {
	
	color: red;
	padding-left: 10px;
	
}

.class_view_all{

	text-align: center;
}




.class_view_all a{

	text-decoration: none;	
	color: red;

}

.class_view_all a:hover{
	
	color: black;

}



/* GRID LAYOUT */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

/* CARD DESIGN */
.blog-card {
  text-decoration: none;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

/* SOFT AURA BORDER */
.blog-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(120deg, #ff9800, #d32f2f, #ffd54f);
  z-index: -1;
  opacity: 0;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(211, 47, 47, 0.25);
}

.blog-card:hover::before {
  opacity: 1;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

/* IMAGE ZOOM */
.blog-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY (DIVINE GRADIENT) */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(183, 28, 28, 0.85),
    rgba(255, 152, 0, 0.5),
    transparent
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.blog-card:hover .overlay {
  opacity: 1;
}

/* BUTTON */
.read-btn {
  background: linear-gradient(90deg, #ff9800, #d32f2f);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

/* TEXT CONTENT */
.card-content {
  padding: 18px;
  text-align: center;
}

/* TITLE */
.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #d32f2f, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

/* SUBTEXT */
.card-content p {
  font-size: 14px;
  color: #6d4c41;
  font-family: 'Playfair Display', serif;
}

/* SOFT DIVINE GLOW */
.blog-card:hover .card-content h3 {
  text-shadow: 0 0 12px rgba(255, 152, 0, 0.5);
}




.blogadjust{
	background: #ffffff;
	text-align: center;
	padding: 50px 20px 30px;

}



.blogadjust h1{
	font-size: 44px;
	font-weight: 800;
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(90deg, #c62828, #ff9800, #ffd54f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

/* Underline Accent */
.blogadjust h1::after {
	content: "";
	display: block;
	width: 140px;
	height: 4px;
	margin: 12px auto 0;
	background: linear-gradient(90deg, #ff9800, #c62828);
	border-radius: 2px;
}


.blogadjust h2{
	font-size: 30px;
	font-family: 'Playfair Display', serif;
	color: #b71c1c;
	margin-top: 10px;
}
.class_blog_1{

	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	width:80%;
	background: white;	
	justify-content: center;
  	align-items: center;

}

.class_blog_2{
	background: red;
	display: flex;
	flex: inline-block;
	flex-wrap: wrap;
  	justify-content: center;
	width:100%;
  	align-items: center;	
	padding-top: 10px;
	padding-bottom: 10px;	

}


.class_blog_1 h1{

	text-decoration: none;
	justify-content: center;
  	align-items: center;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-top: 10px;
	font-size: 40px;
	font-family: Serif;
	color: red;
}

.class_blog_1 h1 a{
	
	font-size: 70px;
	font-family: Monotype Corsiva, Times, Serif;
	letter-spacing: 10px;
	word-spacing: 3px;
	padding: 25px 15px 25px 15px;
	text-decoration: none;	
	font-weight: 600	; 
	color: #ffeb00;
	border: none;
	
}


.class_blog_1 h1 span{
	
	
	font-size: 28px;
	font-family: Serif;
	font-family: Serif;
	color: #ffeb00;
	 text-align: center;
	padding: 50px 20px 30px;
	font-size: 42px;
	font-weight: 800;
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(90deg, #c62828, #ff9800, #ffd54f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
	letter-spacing: 1px;
	animation: glow 2s ease-in-out infinite alternate;
}


/* Underline Accent */
.class_blog_1 h1 span::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ff9800, #c62828);
  border-radius: 2px;
}


.class_card {
	background: red;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	width: 30%;
	height: 260px;
	margin-right: 10px;
	margin-left: 10px;
	align-self: flex-start;
	margin-bottom: 20px;
}


.class_card :hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.class_card: active {
	border: none;
}

.class_card_container {
	padding: 2px 16px;
	color: white;	
	width: 100%;
	height: auto;
	
}

.class_card_title{
	font-family: Serif;
	font-size: 25px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}


.class_card p {
	
	font-family: Serif;
	font-size: 14px;
}

.class_card a{
	text-decoration: none;
}

.card {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	width: 100%;
	margin-right: 25px;
	margin-left: 25px;
	align-self: flex-start;
}

.card :hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card_container {
	padding: 2px 16px;
	color: white;
	height: auto;
		
}

.class_card p a{
	
	font-family: Monotype Corsiva, Times, Serif;
	
}

.class_card p a:hover{
	border: none;

}

.card_container h1{


	text-decoration: none;
	color: white;
	font-size: 20px;
	text-transform: uppercase;
  	align-items: center;
	margin-left: auto;
	margin-right: auto;	
	font-family: Serif;	
	font-weight: bold;
	
}

.class_blog_s{
	background: red;
	display: flex;
	flex: inline-block;
	flex-wrap: wrap;
  	justify-content: center;
	width:100%;
  	align-items: center;	
	padding-top: 10px;
	padding-bottom: 10px;	

}


.class_card_container_mod {
	margin: 0;
	padding: 0;
	padding: 2px 16px;
	color: white;	
	width: 100%;
	height: auto;
	
}

.class_card_container_mod p{
	margin: 0;
	padding: 0;
	padding-left: 220px;
	color: black;	
	width: 100%;
	height: auto;
	
	
}

.class_card_mod {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	width: 70%;
	height: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-left: auto;
	align-self: flex-start;	
	padding-top: 30px;
	padding-bottom: 30px;
	background: linear-gradient(to right, #ffeb76  0%, #ffeb76 10%, 
    #7cdedc 10%, #7cdedc 20%, 
    #ffb4d5 20%, #ffb4d5 30%, white 30%, white 100%);

	
}

.class_card_mod a{
	text-decoration: none;
}


.class_card_mod :hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}


.class_card_mod h1 {
	padding-left: 170px;
	font-size: 35px;
}

.class_card_title_mod{
	margin: 0;
	padding: 0;
	font-family: Serif;
	font-size: 22px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	color: black;
	padding-left: 220px;
	text-align: left;
}


.class_card_mod1 {

	width: 70%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;		
	background: red;
	padding: 20px;
	
			
}

.class_card_mod1 img{
	
	width: 250px;
	height: 280px;
	float: left;
	margin-right: 10px;

		
}

.class_card_mod1 a{
	text-decoration: none;
}


.class_card_mod1 :hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}


.class_card_mod1 h1 {

	font-size: 35px;
}

.class_card_container_mod1 {
	
	color: white;		
	
	
}
.class_card_container_mod1 h5{
	font-size: 30px;
	color: white;	
	
			
}
.class_card_container_mod1 p{
	
	color: white;	
	
			
}


.class_card_title_mod1 {
	
	font-family: Serif;
	font-size: 22px;	
	color: white;		
}

.class_blog_1 div{
	justify-content: center;
  	align-items: center;
	
}



.card_leader{
	

	
}

.card_container_leader{
	max-width: 750px;
	margin: 40px auto;
	padding: 0 20px;
	font-family: 'Poppins', sans-serif;
	line-height: 1.8;
	color: #4e342e;
	
	
}

.card_container_leader p{
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	 text-align: center;
	
}


.leader{
		
}

.card_container_leader h1{
		
		font-size: 28px;
		font-weight: 700;
		margin: 40px 0 15px;
		font-family: 'Poppins', sans-serif;
		position: relative;
		color: #c62828;
		padding-left: 14px;
}



.card_container_leader h2{
		font-size: 22px;
		font-weight: 600;
		margin: 30px 0 10px;
		font-family: 'Playfair Display', serif;
		color: #b71c1c;
		text-align: center;
		position: relative;
		position: relative;
}



.class_card_overlap {
	margin-left: auto;
	margin-right: auto;
   	display: flex;
	justify-content: center;

}


.class_card_overlap :hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
}
.class_card_overlap: active {
	border: none;
}

.class_card_container_overlap {
	
	margin: 0px;
	padding: 0px;
		
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;	
	justify-content: center;
    align-items: center;
	border-radius: 15px;
	width: 800px;
	height: 393px;
	
	background-image: url('../images/leader.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;

	
}


.class_card_container_overlap h5{
	vertical-align: middle;
	
	text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 4px;
	text-shadow: 1px 1px 3px black;
}

.class_card_container_overlap:hover{
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
 }
	
	
.class_card_container_overlap h6:hover{
	
	text-shadow: none;
    
 }
  
.class_card_title_overlap{
	font-family: Serif;
	font-size: 25px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	
}


.class_card_container_overlap p {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: right;
	font-family: Serif;
	font-size: 20px;
	
}

.class_card_overlap a{
	text-decoration: none;
}

.class_card_overlap h6 {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-family: Serif;
	font-size: 25px;
	text-transform: uppercase;
	color: red;
	text-shadow: 1px 1px 2px white;
}

.class_background_h {
	width: 650px;
	height: 393px;
	background-image: url('../images/blog1_1.jpg');
	background-position: center;
	margin: auto;
	
	
}

.class_background_h1 {
	width: 670px;
	height: 500px;
	background-image: url('../images/blog_l.png');
	background-position: center;
	margin: auto;
	background-size: cover;
	background-repeat: no-repeat;
}


.class_background_h h1{
	position: absolute;
	top: 50%;
	right: 30%;
	font-size: 50px;
}
.class_swbackground_h {
	width: 640px;
	height: 315px;
	background-image: url('../images/blog2.jpg');
	background-position: center;
	margin: auto;
	
}

.class_scwbackground_h h1{
	position: absolute;
	top: 50%;
	right: 30%;
	font-size: 50px;
}

.class_card_container_guru {
	
	padding: 2px 16px;
	color: white;	
	object-fit: fit;
	background: red;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;	
	justify-content: center;
    align-items: center;	  
    border-radius: 15px;
	width: 800px;
	height: 393px;
	margin: auto;
	background-image: url('../images/gurudev.png');
	background-position: center;
	margin: auto;
	background-position: center;
	background-size: contain;
}

	
.class_events_1{

	padding: 0px;
	background-color: rgb(255, 255, 255);
	color: rgb(0, 0, 0);
	justify-content: center;
  	align-items: center;
	
	
}

.class_events_2{

	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	color: rgb(228, 0, 0);
	font-family:EB Garamond;
	font-size: 50px;
	margin: 0px 0px 0px 0px;
}

.class_events_3{

	display: inline-block;
	display: flex;
	position: relative; 		
	padding: 0px 10px 0px 10px;
	border: 2px solid red;
	margin: 15px 0px 15px 0px;
	width: 100%;
	height: 500px;
	background-color: red;
}

.class_events_4{
	transform: skew(-8deg);	
	border: 1.5px solid #FF0080;
	border-radius: 25px;
	padding: 15px 10px 15px 10px;
	width: 650px;
	height: 500px;
	margin-right: 100px;	
	margin-left: 200px;
	background-color: #ffeb00;
}



.class_events_4:hover{
	border:1px solid #ffeb00;
	color: red;

}

.class_events_4 img{
	margin-top: 15px;
	margin-left: 23px;
	width: 90%;
	height: 95%;
	border-radius: 25px;
	transform: skew(+8deg);
}

.class_events_5{
	background-image: url(assets/images/aarti.jpg);
	display: inline-block;	
	padding: 15px 10px 15px 10px;
	margin-right: 0px;
	margin-top: 10px;
	width: 500px;
	height: 480px;
	border: 2px solid #ffeb00;
	padding: 10px 10px 10px 10px;
	border-radius: 25px;
}

.class_events_5 h4{
	color: #ffeb00;
	font-size: 20px;
}


.class_events_5 h5{
	color: #ffeb00;
	font-size: 15px;

}

.class_events_6{
			
	margin-right: 0px;
	margin-top: 0px;
	margin-left: 0px;
	margin-bottom: 10px;	
	background-color: red;
}




.class_events_7{
	
	width: 400px;
	height:90px;
	
	
}

.class_events_8{
	
	margin-left: auto;
 	margin-right: auto;
	width: 120px;
	height: 110px;
}

.class_events_8 img{
	
	margin-left: auto;
 	margin-right: auto;
		
	width: 100%;
	height: 100%

	
}


.class_donate{

	margin-top: 10px;
	font-family: calibri;
	color: white;
	border-radius: 0px;
	border-color: #ffeb00;
	background: #ff0000;
	background: linear-gradient(90deg, rgba(255, 0, 0, 0.82) 0%, rgba(255, 0, 0, 0.8) 15%, rgba(255, 0, 0, 0.71) 31%, rgba(255, 0, 0, 0.55) 44%, rgba(255, 255, 0, 0.67) 60%, rgba(255, 255, 0, 0.74) 74%, rgba(255, 255, 0, 0.9) 87%, rgba(255, 255, 0, 0.96) 100%);
		
}

	

.class_donate_text{

	text-transform: uppercase;
	font-size: 45px;
	transition: transform 250ms;

	
}

.class_donate a{

	text-decoration: none;	
	color: white;

}

.class_donate a:hover{

	color: red;
		
}


.contact {

	margin: 0px 10px 0px 0px;	
}

.footer {

	background-color: #ffeb00;
	color: white;
	text-align: center;
	font-family: 'Sans Serif';

}

.class_iframe {

	margin: 10px 0px 10px 30px;

}

.class_map{
	height: 40px;
	width: 40px;

}
		
.class_form_1{

	background-color: white;
	color: rgb(255, 255, 255);
	padding: 20px;
	
}

.class_form_2{

	display: flex;
	background: #FF0000;
	background: linear-gradient(45deg, rgba(255, 0, 0) 50%, rgba(255, 255, 0) 50%);
	flex-wrap: wrap;
	max-width: 1200px;
	margin: auto;
	
}

.class_form_3{

	flex: 1 1 0%;
	width: 550px;
	min-height: 200px;
	vertical-align: top;
	padding: 20px 20px 20px 20px;
	
}

.class_form_4{

	width: 550px;
	margin: 10px auto;
	padding: 20px 20px 20px 20px;
	background-color: white;
	color: rgb(0, 0, 0);
	text-align: center;
	border-radius: 20px;
	
}

.class_form_5{

	padding-left: 10px;
	padding-right: 10px;
	font-size: 30px;
	
}

.class_form_6{

	margin-top: 4px;
	margin-bottom: 4px;
	padding: 4px;
	align-items: center;
	text-align: left;
	font-size: 16px;
	
}

.class_form_7{

	margin: .5rem;
	margin-left:0px;
	display: inline-block;
	
}

.class_form_8{

	display: block;
	width: 100%;
	padding: 15px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: rgb(33, 37, 41);
	background-color: rgb(242, 242, 242);
	background-clip: padding-box;
	border: 1px solid rgb(206, 212, 218);
	appearance: none;
	border-radius: 20px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	
}

.class_form_9{

	display: block;
	margin-top: 4px;
	margin-bottom: 4px;
	padding: 4px;
	align-items: center;
	text-align: left;
	font-size: 16px;
	
}

.class_form_10{

	min-width:50px;
	margin: .5rem;
	margin-left:0px;
	display: inline-block;
	
}

.class_form_11{

	font-size: 16px;
	padding: 20px;
	border: medium none;
	color: rgb(255, 255, 255);
	background-color: red;
	border-radius: 20px;
	margin: 0.25rem 0.125rem;
	cursor: pointer;
	width: 100%;
	
}

.class_form_12{

	display: flex;
	margin-top:4px;
	margin-bottom: 4px;
	padding: 4px;
	align-items: center;
	background-color: #F7F7F7FF;
	
}

.class_form_13{

	margin-top: 4px;
	margin-bottom: 4px;
	padding-top: 4px;
	padding-bottom: 2px;
	text-align: left;
	font-size: 16px;
	margin-left: 3px;
	
}


.class_form_13 select {

	font-size: 16px;

}

.class_form_13 option.class_form_15{

	font-size: 16px;

}

.class_form_14{

	margin: .5rem;
		
}

.class_form_15{

	margin-top: 4px;
	margin-bottom: 4px;
	padding: 4px;
	align-items: center;
	text-align: left;
	font-size: 16px;
	
	
}

.class_form_16{

	margin: .5rem;
	margin-left:0px;
		
}

.class_form_15 input{

	display: inline-block;
	margin-right:0px;
		

}

.class_contribution{
	justify-content: center;
	align-items: center;	
	background-color: white;
	margin: 25px 0px 25px 0px;
}

.class_contribution1{
	width: 30%;
	height: auto;
	color: #ffeb00;
	border: 3px solid red;
	background-color: red;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 25px;
	justify-content: center;
	align-items: center;
	padding: 0px;
	
}

.class_contribution1 h1{
	
	width: 100%;
	height: auto;
	text-align: center;
	color: #ffeb00;
	font-size: 35px;
	justify-content: center;
	align-items: center;
}


.class_contribution1 img{
	margin-top: 0px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 300px;	
}


.class_timelesstales{
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;
	padding: 0px;
}	

.class_tales {
  background-image: repeating-linear-gradient(
    45deg,
    #ffeb00,
    #ffeb00 28%,
    red 28%,
	red 32%,
    #ffeb00 32%,
	#ffeb00 40%
	
  );	
  padding: 0px;
}

.class_tales1 {
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 0px;
	font-size: 12px;	
	margin: 15px 5px 15px 5px;
}

.class_tales1 h1{
	text-align: center;
	align-items: center;	
	margin: auto;
	padding: auto;
	font-size: 30px;
	text-align: center;
	color: red;
}
	

.class_tales2 {
	width: 80%;
	background: red;
	height: auto;
	justify-content: center;
	align-items: center;
	margin-Left: auto;
	margin-right: auto;
	margin-bottom: 25px;
	padding: 2px;
	position: relative;
	
}

.class_tales3 {
	display: flex;
	flex: inline-block;
	align-items: center;
}



.class_tales2 img{
	width: 300px;
	height: auto;
	background: red;
	padding: 10px 30px 10px 20px;	
	height: auto;
	object-fit: contain;
	
}




.class_tales2 h5{
	font-size: 22px;
	text-align: center;
	color: white;
	
}

.class_tales2 p{
	text-align: center;
	color: white;
	font-size: 14px;
	justify-content: center;
	height: auto;
}


.class_tales4 {
	display: flex;
	flex: inline-block;
	align-items: center;
	padding: 10px 40px 8px 20px;	
}

.class_tales4 img{
	width: 300px;
	height: auto;
	background: red;
	padding: 10px 30px 10px 20px;	
	height: auto;
	object-fit: contain;
	border: none;
	
}

.button_tales {
	position: relative;
	top: 80%;
	left: 20%;
	background-color: white;
	color: red;
	font-size: 12px;
	padding: 5px 5px 5px 5px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 15px;

}


.class_wisdom{
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;
	padding: 0px;
}	

.class_wisdom1{
	justify-content: center;
	align-items: center;
	width: 80%;
	height: auto;
	padding: 0px;
	font-size: 24px;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 15px;
	margin-bottom: 15px;	
	align-items: center;
	background: #ffeb00;
	color: red;
}	

.class_wisdom1 h1{
	font-size: 30px;
	text-align: center;
	color: red;
	padding: 0px;
	padding-top: 2px;
	padding-bottom: 2px;
	margin: 0px;
}

.class_wisdom2{
	margin-left: auto;
	margin-right: auto;	
	width: 80%;
	height: auto;
	padding: 0px;
	font-size: 12px;	
	margin-top: 15px;
	margin-bottom: 15px;	
	background: red;
	
	

}	

.class_wisdom2 h1{
	margin: 0px;
	margin-left: auto;
	margin-right: auto;	
	color: white;
	align-items: center;
	padding: 0px;
	padding-top: 2px;
	padding-bottom: 2px;
	text-align: center;
	
}



.class_wisdom3{
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	display: flex;	
	padding-left:10px;
	padding-right: 10px;

}

.class_wisdom_img{
	margin: 0;
	padding: 0;
	float: right;
	margin: 0px;
	padding: 0px;
	

}

.class_wisdom3 p{
	
	flex: 1;
	color: white;
	font-size: 14px;	
		
	
}




.class_ack{
	margin-Left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	justify-content: center;
	align-items: center;
	padding: 0px;
	
	
}

.class_ack1{
	justify-content: center;
	align-items: center;
	width: 80%;
	height: auto;
	padding: 0px;
	font-size: 24px;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 15px;
	margin-bottom: 15px;
	align-items: center;
	background: #ffeb00;
	color: black;
	border-radius: 25px;
}

.class_ack1 h1{
	font-size: 30px;
	text-align: center;
	padding: 0px;
	padding-top: 30px;
	padding-bottom: 2px;
	margin: 0px;
}

.class_ack2{
	margin-left: auto;
	margin-right: auto;	
	width: 80%;
	height: auto;
	padding: 0px;
	font-size: 15px;	
	margin-top: 15px;
	margin-bottom: 15px;		
	align-items: center;
	justify-content: center;
}



.class_guru{
	margin-Left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	justify-content: center;
	align-items: center;
	padding: 5px;
	
	
}

.class_guru1{
	justify-content: center;
	align-items: center;
	max-width: 750px;
	margin: 50px auto;
	padding: 0 20px;
	height: 550px;
	font-size: 24px;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 15px;
	margin-bottom: 15px;
	align-items: center;
	background-image: url('../images/blog_guru.png');
	background-position: center;
	margin: auto;
	background-size: cover;
	background-repeat: no-repeat;
	color: black;
	border-radius: 25px;
	
}

.class_guru h1{
	 
	text-align: center;
	padding: 40px 20px;
	font-size: 42px;
	text-align: center;
	padding: 0px;
	padding-top: 30px;
	padding-bottom: 2px;
	margin: 0px;
	text-transform: uppercase;
	color: red;
	font-weight: 800;
	font-family: 'Poppins', sans-serif;
	 background: linear-gradient(90deg, #d32f2f, #ff9800, #ffd54f);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
	margin-bottom: 10px;
	position: relative;
}

.class_guru h1 {
  text-shadow: 0 0 10px rgba(255, 152, 0, 0.3),
               0 0 20px rgba(255, 87, 34, 0.2);
}
.class_guru h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ff9800, #d32f2f);
  border-radius: 2px;
}


.class_guru2{
	max-width: 750px;
	margin: 50px auto;
	padding: 0 20px;
	height: auto;
	padding: 0px;
	margin-top: 15px;
	margin-bottom: 15px;		
	align-items: center;
	justify-content: center;
	background:  #FFFFE0;
	padding: 20px;
	text-align: justify;
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
	line-height: 1.8;
	color: #4e342e;
	
}

.class_guru2 h2{
	font-size: 22px;
	font-weight: 500;
	color: #b71c1c;
	font-family: 'Playfair Display', serif;
	letter-spacing: 0.5px;
}

.class_guru2 p{
	font-size: 18px;
	  margin-bottom: 20px;
  text-align: justify;
  transition: all 0.3s ease;

}
.class_guru2 p:hover {
  color: #3e2723;
}


.steps_grid-container {
  display: grid;
  /* Defines 3 columns of equal width */
  grid-template-columns: 12% 12% 12% 64%; 
  gap: 0px; /* Adds space between columns */
}

.steps_grid-item {  

  height: auto;
  align-items: center;

  
}

.item-1 {
	background-color: #ffeb76;
	
}

.item-1 h1{
	padding: 0;
	color: black;
	margin: 0;
	font-size: 32px;
	text-decoration: bold;
	text-align: center;
	position: sticky;	
	top: 0;
	height: 500px;
	vertical-align: middle;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	text-transform: uppercase;
}


.item-2 {
	background-color: #7cdedc;
	
}

.item-2 h2{
	padding: 0;
	color: black;
	margin: 0;
	font-size: 30px;	
	text-decoration: bold;
	text-align: center;
	position: sticky;	
	top: 0;
	height: 500px;
	vertical-align: middle;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	text-transform: uppercase;
}


.item-3 {
	background-color: #ffb4d5;
	
}


.item-3 h3{
	padding: 0;
	color: black;
	margin: 0;
	font-size: 28px;
	text-decoration: bold;
	text-align: center;
	position: sticky;
	top: 0;
	height: 500px;
	vertical-align: middle;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	text-transform: uppercase;
}



.item-4 {
	background-color: #ffffff; 
	height: auto;
	padding: 10px;
  
}

.item-4 h2{
	font-size: 16px;
  
}

.timelesswisdom {


	justify-content: center;
  	align-items: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;	
	color: red;
	margin-bottom: 0px;
}

.timelesswisdom h1{
	justify-content: center;
  	align-items: center;
	text-align: center;
	padding-top: 10px;
	font-size: 65px;
	font-family: Serif;
	color: red;
	letter-spacing: 12px;
	word-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 0px;
}

	
.timelesswisdom1{
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;
	padding: 0px;
}	


.timelesswisdom2 {
  background-image: repeating-linear-gradient(
    90deg,
    red,
    red 22%,
    #ffeb00 22%,
	#ffeb00 45%,
    orange 45%,
	orange 75%
	
  );	
  padding: 0px;
}

.timelesswisdom3 {
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 0px;
	font-size: 12px;	
	margin: 15px 5px 15px 5px;
	
}


.timelesswisdom3 h1{
	font-size: 40px;
	

}	

.timelesswisdom4 {
	
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;		
	font-size: 25px;
	width: 75%;
	margin-top: 5px;	
	margin-bottom: 5px;	
	background: #ffbaba;
	color: #FF474C;
	font-size: 22px;
	padding: 25px;
	border: 1px solid red;
	box-sizing: border-box;


}


.timelesswisdom4 h4{
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: italic;
	color: red;
	align-items: center;

	
}

.timelesswisdom4 h4::before{
	content: "\201c";		
	color: red;
	font-size: 100px;
	display: block;
	margin-bottom: -40px;
	margin-top: -20px;
}

.timelesswisdom p{
	width: 90%;
	background: white;
	color: black;
	font-size: 14px;
	margin-top: 15px;
	margin-Left: auto;	
	margin-right: auto;
	justify-content: center;

}

.timelesswisdom5{
	

	width: 100%;
	height: auto;
	
}

.timelesswisdom5 img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 45%;
	height: auto;
	object-fit: cover;
	object-position: center;
	
}

.timelesswisdom6 {
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;		
	font-size: 25px;
	width: 75%;
	margin-top: 5px;	
	margin-bottom: 5px;	
	background: #ffbaba;
	color: #FF474C;
	font-size: 22px;
	padding: 25px;
	border: 1px solid red;
	box-sizing: border-box;
	margin-top: 20px;


}

.timelesswisdom6 h4{
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: italic;
	color: red;
	align-items: center;

	
}
.timelesswisdom6 h4::before{
	content: "\201c";		
	color: red;
	font-size: 100px;
	display: block;
	margin-bottom: -40px;
	margin-top: -20px;
}


.class_new{
	margin-Left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	justify-content: center;
	align-items: center;
	padding: 0px;
	
	
}

.class_new1{
	justify-content: center;
	width: 80%;
	height: 300px;
	padding: 0px;
	font-size: 24px;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 25px;
	margin-bottom: 25px;	
	background: #eafa3e;
	background: linear-gradient(90deg, rgba(234, 250, 62, 1) 0%, rgba(242, 160, 49, 1) 26%, rgba(253, 66, 39, 1) 59%, rgba(252, 176, 69, 1) 81%);
	color: black;
	display: flex;
	align-items: center;
}

.class_new1 h1{
	font-size: 50px;
	text-align: center;
	color: white;
	padding: 0px;	
	margin: 0px;
	align-items: center;
	align-items: center;
}

.class_new2{
	margin-left: auto;
	margin-right: auto;	
	width: 100%;
	height: auto;
	padding: 0px;
	font-size: 15px;	
	margin-top: 15px;
	margin-bottom: 15px;		
	align-items: center;
	justify-content: center;
	background: #FFA500;
}


/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    position: relative;
    background:
        linear-gradient(rgba(227,6,6,0.92), rgba(170,0,0,0.94)),
        url('assets/images/contact-bg.jpg') center/cover;
    padding: 100px 20px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* glow */
.contact-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top,
        rgba(255,235,0,0.22),
        transparent 60%);
}

/* container */
.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: auto;
}

/* heading */
.contact-heading {
    text-align: center;
    margin-bottom: 70px;
}

.contact-heading h2 {
    color: #ffeb00;
    font-size: 38px;
    margin-bottom: 14px;
}

.contact-heading p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

/* grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* card */
.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    transition: 0.35s;
}

.contact-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
}

.contact-icon {
    width: 78px;
    height: 78px;
    background: rgba(255,235,0,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 22px;
    font-size: 34px;
}

.contact-card h3 {
    color: #ffeb00;
    margin-bottom: 14px;
}

.contact-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

/* CTA */
.contact-cta {
    text-align: center;
    margin-bottom: 40px;
}

.contact-btn {
    display: inline-block;
    background: #ffeb00;
    color: #b80000;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #fff;
}

/* social */
.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    transition: 0.3s;
    font-size: 15px;
}

/* icon */
.social-links i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.12);
}

/* hover */
.social-links a:hover {
    color: #ffeb00;
}

.social-links a:hover i {
    background: rgba(255,235,0,0.18);
    transform: translateY(-5px);
}








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


    .hero {
        height: 75vh;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }
	
	.about-container {
    flex-direction: column;
  }

	.about-content {
    padding:15px 5px; 
	color: rgba(255,255,255,0.92);	
  }

	.about-content h2 {
    font-size: 32px;

  }

	.about-content p {
	font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;  
    text-align: left;             /* prevent uneven spacing */
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }


/* Banner */
.banner {
	position: relative;
	display: flex;
	align-items: center;
	height: 120px;
	padding: 0 20px;
	background: #e30606;
	overflow: hidden;
	height: 72px;
}

.banner::after {
	content: "";
	position: absolute;
	top: 0; 
	height: 100%;
	background: #ffeb00;

	/* Key fix: curve faces LEFT (into red) */
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;

	/* Pull it slightly inside */
	transform: translateX(80%);
	z-index: 0;
	font-size: 18px;
    letter-spacing: 1px;
    padding: 0 1px 0 1px;

 
  

}

/* Keep content above curve */
.banner > * {
	position: relative;
	z-index: 1;
}

/* Logo */
.banner__logo img {
	width: 42px;
	height: 40px;
}

/* Title */
.banner__title {
	font-size: 16px;
    letter-spacing: 1px;
    padding: 0 1px 0 5px;
	left: 50px;
}

	

.menu {
    position: fixed;
    top: 0;
    right: -100%; /* hidden */
    width: 100%;
    height: 100vh;
    background: #ffeb00;
    z-index: 9999;
    padding: 90px 25px 30px;
    transition: right 0.35s ease;
    overflow-y: auto;
}

/* ACTIVE STATE */
.menu.active {
    right: 0;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* SECTION TITLES */
.menu-section h4 {
    font-size: 14px;
    font-weight: 800;
    color: #e30606;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

/* LINKS (TOUCH FRIENDLY) */
.menu-section a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-toggle,
.css-button {
    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;

    top: 50%;
    transform: translateY(-50%);

    right: calc(16px + env(safe-area-inset-right));

    width: 42px;
    height: 42px;

    background: #ffeb00;
    color: #e30606;

    border: none;
    border-radius: 8px;

    font-size: 26px;
    font-family: Arial;

    z-index: 10000;
    cursor: pointer;
}

.dropdown-content {
 	display: none;
 	position: absolute;
 	background-color: #b1b6e8;
  	min-width: 220px;
  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  	z-index: 1.5;
	right: 18px;
	left: auto;
}



.dropdown-content a {
  	color: black;
  	padding: 20px 16px;
  	text-decoration: none;
  	display: block;
	font-size: 15px;
	border-color: #ffeb00;
	border-bottom-color: red;
	border-bottom: 1px solid #FFD300;
	
}
 .menu-toggle {
        display: block !important;
        cursor: pointer;
        padding: 10px 15px;
        background: rgba(227, 6, 6, 0.05); /* Soft red background highlight tint */
        border-radius: 8px;
        transition: background 0.2s ease;
    }

    .menu-toggle:hover {
        background: rgba(227, 6, 6, 0.1);
    }

    /* Target the Font Awesome icon inside your span wrapper to guarantee size and contrast */
    .menu-toggle .css-button-icon i {
        font-size: 28px !important;
        color: #e30606 !important;
        display: inline-block !important;
    }

    /* Force hide the massive horizontal desktop link container layout */
    .menu {
        display: none;
    }

    /* Ensure the main header bar splits the logo on the left and hamburger on the right */
    .banner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 24px !important;
    }
 /* =========================
       TRANSITION
    ========================= */
    .transition {
        height: 120px;
    }

    /* smoother smaller waves */
    .wave1 svg,
    .wave2 svg {
        height: 120px;
    }

    /* =========================
       THOUGHT SECTION
    ========================= */
    .thought-section {
        padding: 60px 15px;
    }

    .thought-section h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* =========================
       QUOTE CARD
    ========================= */
    .quote-card {
        padding: 22px 18px;
        border-radius: 14px;
        max-width: 100%;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .quote-text {
        font-size: 17px;
        line-height: 1.6;
    }

    .quote-author {
        font-size: 14px;
    }

    /* =========================
       BUTTON
    ========================= */
    .view-more {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 20px;
    }


	/* TRANSITION */
    .transition-rajyoga {
        height: 90px; /* reduced height */
    }
	
	 .transition-rajyoga::before {
        opacity: 0.5; /* softer glow */
        transform: scale(0.8);
    }

    /* SECTION */
    .rajyoga-section {
        padding: 60px 15px;
    }

    .rajyoga-section h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .rajyoga-subtext {
        font-size: 14px;
        margin-bottom: 30px;
    }

    
 /* CARDS */
    .rajyoga-cards {
        gap: 18px;
    }

    .rajyoga-card {
        width: 100%;
        padding: 20px;
        border-radius: 14px;
    }

    .rajyoga-card h3 {
        font-size: 18px;
    }

    .rajyoga-card p {
        font-size: 14px;
    }

    .icon {
        font-size: 28px;
    }
	.featured-card {
    max-width: 100%;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #e30606, #ff6a00);
    color: #fff;
    border-radius: 22px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(227,6,6,0.3);
}

	.featured-card {
        padding: 25px;
    }

    .featured-card h3 {
        font-size: 22px;
    }

    .activity-card {
        width: 100%;
    }

    .activities-section h2 {
        font-size: 26px;
    }

.class_2{

	display: flex;
	height: auto;
	
}
.class_2 img{

	
	height: 50px;
	
}
.class_4{
	
	width:100%;
	object-fit: cover;
	object-position: left;


			
}

.class_8{
	display: flex;
	height: auto;
		
}

.class_8 img{

	width:100%;
	height: 70%;
	object-fit: fill;
	

}



.class_about_2{

	margin-top: 120px;
	padding: 20px 10px 20px 10px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 90%;
	height: auto;
	margin: auto;
	background-color: white;

	
}

.class_about_3{
	
	width:90%;
	background-color: rgb(242, 242, 242);
	vertical-align: top;
	padding: 0px 10px 0px 10px;

}

.class_about_3 img{

	width: 100%;
	height: 95%;
	object-fit: fill;
	
}



.class_about_5{

	width: 100%;
	background-color: rgb(236, 28, 35);
	vertical-align: top;
	color: rgb(255, 201, 69);
	margin-top: 5px;
	padding-left: 3px;
	padding-right: 0px;	
}

.class_about_6{

	padding-right: 10px;
	font-size: 30px;
	
}

.class_11{

	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	color: rgb(228, 0, 0);
	font-family:EB Garamond;
	font-size: 30px;
	margin: 0px;
	
}

.class_13{
	
	background-color: rgb(247, 247, 247);
	width: 100%;
	display: flex;
	flex-direction: column;
	height: auto;
	border: 1px solid ##e0e0e0;		
	color: rgb(0, 0, 0);
	margin-top: 5px;
	justify-content: center;
	align-items: center;
}

.class_14{
	width: 100%;
	color: rgb(0, 0, 0);
	object-fit: fill;
	
}


.class_15{

	
	width: 100%;
	
}

.class_15 img{

	
	width: 100%;
	
}

.class_16{

	width: 100%;
	
}

	



.class_17{
	width: 100%;
	color: black;
	margin: 1px 0px 0px 0px;
	text-align: left;
	font-size: 16px;
	padding: 0px 0px 0px 0px;
	text-wrap: wrap;

	
}

.class_18{
	width: 100%;
	font-size: 30px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}



.class_18 p{
	width: 100%;
	color: black;
	font-size: 16px;
	text-wrap: wrap;	
}

.class_21{

	width: 100%;
	object-fit: fill;
	min-width: 0;
	background-color: rgba(255,255,0,1);
	color: rgb(0, 0, 0);
	vertical-align: top;
	color: rgb(255, 201, 69);
	margin-top: 5px;
	justify-content: center;
	align-items: center;
	
}

.class_photo {
	display: flex;
	flex-wrap: wrap;
	height: auto;
	width: 100%;
	margin: 15px 0px 15px 0px;
	justify-content: center;
	overflow: hidden;
	align-items: center;	
	
}


.class_photo_1{
	
	border: 3px solid red;
	margin: 15px 0px 15px 0px;
	width: 100%;
	height: auto;
	background-color: red;
	
}

.class_photo_1:hover{
	border:1px solid #ffeb00;
	color: red;

}


.class_photo_1 img{
	
	object-fit: fill;
}

.class_photo_2{
	padding: 5px;
	text-align: center;
	font-size: 16px;
	color: #ffeb00;
}


.class_photo_gal {
	display: flex;	
	margin: 0;
	padding: 0;
	border: none;
	
}


.class_photo_3 {
	flex-direction: vertical;
	width: 100%;	
	height: auto;
	padding: 0;	
	margin: 0;
	margin-top: 10px;	
	margin-bottom: 10px;	
	border: none;
	
	
}


.class_photo_3 :hover{
		
	border: none;
	margin: 0;
	padding: 0;
	
	


}

.class_photo_3 img{

	margin: 0;
	padding: 0;
	

	
}
	
	
	
.class_guru{
	background: white;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	width:100%;
	justify-content: center;
  	align-items: center;
	
	
}

.class_guru1{	
	border-radius: 25px;
	width: 100%;
	height: 300px;
	background-image: url('../images/blog_guru.png');
	background-position: center;
	margin: auto;
	background-size: cover;
	background-repeat: no-repeat;
}
	


.class_guru h1{
	 
	margin:0px;
	margin-left: auto;
	margin-right: auto;		
	text-align: center;	
	font-size: 24px;
	font-family: Serif;
	font-family: Serif;
	color: #ffeb00;
}

.class_guru h1 {
  text-shadow: none;
}


.class_guru2 {
	justify-content: left;
	width: 100%;
	margin: auto;	

	
}


.class_guru2 p{
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	
	
}

 .blog-grid {
    gap: 20px;
    padding: 30px 15px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 13px;
  }

  .read-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

.class_blog_1{

	background: white;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	width:100%;	
	justify-content: center;
  	align-items: center;

}


.blogadjust{
	background: #ffffff;
	text-align: center;	

}



.blogadjust h1{
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 2px;

}

/* Underline Accent */
.blogadjust h1::after {
	content: "";
	display: block;
	width: 15%;
	height: 4px;
	margin: 2px auto 0;
	background: linear-gradient(90deg, #ff9800, #c62828);
	border-radius: 2px;
}


.class_blog_2{
	
	
	display: flex;
	flex-direction: column;
  	justify-content: center;
  	align-items: center;	
	padding-top: 10px;
	padding-bottom: 10px;	

}



.class_blog_1 h1{
	background: white;
	margin:0px;
	margin-left: auto;
	margin-right: auto;		
	text-align: center;
	font-size: 20px;
	

}

.class_blog_1 h1 span{
	
	
	font-size: 24px;
	font-family: Serif;
	font-family: Serif;

}
.class_blog_1 h1 a{
	
	font-size: 40px;
	font-family: Monotype Corsiva, Times, Serif;
	letter-spacing: 10px;
	word-spacing: 3px;
	padding: 25px 15px 25px 15px;
	text-decoration: none;		
	font-weight: 600; 
	color: #ffeb00;
	border: none;
	
}

.class_card {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	width: 100%;
	height: 240px;
	margin-right: 10px;
	margin-left: 10px;
	align-self: flex-start;
}

.class_card_overlap {

	width: 100%;
	height: auto;


}



.card {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	width: 100%;
	margin: auto;	
	padding: 10px 5px 10px 5px;
	
}

.card_leader {
	
	width: 100%;
	margin: auto;	

	
}


.card :hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card_container {
	padding: 0px 5px 5px 0px;
	color: white;
	height: auto;
	
	
}

.card_container_leader {


	height: auto;
	
	
}
.card_container_leader p{
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	
}

.leader p{
	font-size: 18px;
	margin: 0px;
	padding: 0px;
	
}

.card_container p{
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	
}

.leader{
	text-decoration: none;	
	font-size: 18px;
  	align-items: center;
	margin-left: auto;
	margin-right: auto;	
	font-family: Serif;	
	color: black;
	text-align: justify;
	padding-left:2 px;
	padding-right: 2px;
}


.leader h1{
		font-size: 27px;	
		color: black;
}


.leader h2{
		font-size: 27px;	
		color: black;
		text-align: left;
		font-style: italic;
}


.class_background_h1 {
	width: 100%;
	height: 300px;
	background-image: url('../images/blog_l.png');
	background-position: center;
	margin: auto;
	background-size: cover;
	background-repeat: no-repeat;
}

.card_container h1{


	text-decoration: none;
	color: white;
	font-size: 16px;
	text-transform: uppercase;
  	align-items: center;
	margin-left: auto;
	margin-right: auto;	
	font-family: Serif;	
	font-weight: bold;
	
}

.class_card p a{
	
	font-family: Monotype Corsiva, Times, Serif;
	
}
.class_card1 p a{
	
	font-family: Monotype Corsiva, Times, Serif;
	
}

.class_card p a:hover{
	border: none;

}

.class_card_container_mod {
	margin: 0;
	padding: 0;
	color: white;	
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	
}

.class_card_container_mod p{
	margin: 0;
	padding: 0;
	padding-left: 35%;
	color: black;	
	width: 100%;
	height: auto;
	
	
}

.class_card_mod {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	width: 100%;
	height: auto;
	margin-right: auto;
	margin-top: 0;
	margin-left: auto;
	align-self: flex-start;
	background: linear-gradient(to right, #ffeb76  0%, #ffeb76 10%, 
    #7cdedc 10%, #7cdedc 20%, 
    #ffb4d5 20%, #ffb4d5 30%, white 30%, white 100%);

	
}

.class_card_mod a{
	text-decoration: none;
}


.class_card_mod :hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}


.class_card_mod h1 {
	color: red;
	padding-left: 40%;
	font-size: 30px;
}

.class_card_title_mod{
	margin: 0;
	padding: 0;
	font-family: Serif;
	font-size: 22px;
	margin-left: auto;
	margin-right: auto;
	color: black;
	padding-left: 35%;
	text-align: left;
}
.class_card_container_mod1{
	margin: 0;
	padding: 0;	
	color: red;	
	width: 100%;
	height: auto;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	padding-left: 2px;
}

.class_card_container_mod1 h5{
	color: red;

}


.class_card_container_mod1 p{
	color: red;
}

.class_card_mod1 {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
	margin: 0;
	padding: 3px;	
	margin-top: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;		
	background: white;
	
			
}

.class_card_mod1 a{
	text-decoration: none;
}


.class_card_mod1 img{
	
	width: 100%;
	height: auto;	
	margin-bottom: 5px;

		
}



.class_card_title_mod1{
	
	font-family: Serif;
	font-size: 25px;
	margin-left: auto;
	margin-right: auto;
	color: black;	
	text-align: center;
	
}

.class_card_container_overlap {
	
	padding: 2px;		
	justify-content: center;
	align-items: center;

	width: 100%;
	height: auto;

	

	
	

	
}

.class_card_container_guru {
	
	padding: 2px;		
	justify-content: center;
	border-radius: 15px;
	width: 100%;
	height: auto;

	
	
	
	
	

	
}


.class_background_h {
	width: 100%;
	height: 300px;
	background-image: url('../images/blog1_1.jpg');
	background-position: center;
	margin: auto;	
	background-size: cover;
	
	
}

.class_background_h h1{
	position: absolute;
	top: 50%;
	right: 30%;
	font-size: 50px;
}

.class_swbackground_h {
	width: 100%;
	height: 300px;
	background-image: url('../images/blog2.jpg');
	background-position: center;
	margin: auto;
	
}
.class_events_2{

	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	color: rgb(228, 0, 0);
	font-family:EB Garamond;
	font-size: 30px;
	margin: 0px;
	
}

.class_events_3{



	margin: 15px 0px 15px 0px;
	padding: 0px 0px 0px 0px;
	border: none;
	display: flex;
	flex-direction: column; 		
	width: 100%;
	height: auto;
	justify-content: center;
	align-items: center;
	background-color: white;

}

.class_events_4{
	margin: 0px 0px 0px 0px;
	padding: 2px 0px 0px 0px;
	transform: skew(0deg);	
	width: 100%;
	height: auto;
	background-color: white;
	border: none;
	justify-content: center;
	align-items: center;
}



.class_events_4:hover{
	margin: 0px 0px 0px 0px;
	padding: 2px 0px 0px 0px;
	border:none;
	color: red;
	width: 100%;
	height: auto;
		
}

.class_events_4 img{
	margin: 0px 0px 0px 0px;
	padding: 2px 0px 0px 0px;
	object-fit: fill;
	transform: skew(0deg);	
	width: 100%;
	height: 350px;

}

.class_events_5{
	background-image: url(assets/images/aarti.jpg);
	display: flex;	
	flex-direction: column;
	padding: 5px 0px 15px 0px;
	margin-right: 0px;
	margin-Left: 0px;
	margin-top: 2px;
	width: 100%;
	height: auto;
	border: none;
	justify-content: center;
	align-items: center;
}

.class_events_5 h4{
	color: #ffeb00;
	font-size: 20px;
}


.class_events_5 h5{
	color: #ffeb00;
	font-size: 15px;

}

.class_events_6{
	width: 100%;
	height: auto;	
	margin-right: 0px;
	margin-left: 0px;
	margin-top: 10px;
	margin-bottom: 0px;	
	background-color: red;
	text-align: center;
	text-wrap: balance;
}


.class_events_7{
	
	width: 100%;
	height: auto;
	
	
}

.class_events_7 h4{
	
	div: flex;
	text-wrap: pretty;
	
}

.class_events_7 h5{
	
	div: flex;
	text-wrap: pretty;
	
	
}

.class_events_8{
	
	margin-left: auto;
 	margin-right: auto;
	margin-bottom: 3px;
	width: 120px;
	height: 110px;
}

.footer {

	background-color: #ffeb00;	
	color: white;
	
	
}

.class_27{
	display: flex;
	flex-direction: column; 		
	width: 100%;
	height: auto;
	justify-content: center;
	align-items: center;	
	color: #838996;
	text-align: center;
	font-family: 'Sans Serif';
}

.class_24{

  	padding: 20px 20px 20px 20px;
}
	
.class_28{
	margin-top: 40px;
	margin-left: 0px;
	margin-right: 0px;
	text-transform: uppercase;
	font-size: 25px;
	color: #848482;
	padding-left: 0px;
	
}

.class_29{
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
	
}

.contact {

	margin: 0px 0px 0px 0px;	
}

.class_31{
	margin-top: 30px;
	margin-bottom: 30px;
	margin-left: 0px;
	color: #838996;
	padding: 0px;
	text-decoration: underline;
	font-size: 22px;
		
}
.class_video_1{

	display: flex;
  	justify-content: center;
  	align-items: center;	
	margin: auto;
	width:100%;
	color: rgba(256, 0, 0);
	background: #ffeb00;
	
	
}

.class_video_2{
	
	height: auto;
		
}
.class_video_2 a{
	text-decoration: none;
	font-weight: 600;
 	text-align: center;
	color: red;
}
.class_video_2 h1{
	
	font-size: 40px;
	font-family: Verdana;
	letter-spacing: 2px;
	word-spacing: 1px;
	text-align: center;
}

.class_video_2 h1:hover{
	letter-spacing: 3px;
	word-spacing: 2px;

}

.class_video_2 video{
	margin-left: auto;
  	margin-right: auto;
	
	}
	
	

.class_video_5 {
	
  	justify-content: center;
  	align-items: center;	
	display: flex;
	flex-direction: column;
		
	margin: 30px 0px 30px 0px;
	padding: 0px 0px 0px 0px;
}

.class_video_6 {
	min-width: 100%;
	height: auto;	
	object-fit: contain;
	border: 2px solid #33CCFF;
			
			
}
.class_video_6 a {

	text-decoration: none;

			
}

.class_video_6 iframe{

	width: 100%;
	height: 250px;
	margin-left: auto;
  	margin-right: auto;	
	object-fit: contain;
			
}

.class_video_6 a video{
	width:100%;
	height: 200px;
	margin-left: auto;
  	margin-right: auto;	
	object-fit: cover;
			
	
}

.class_contribution{
	justify-content: center;
	align-items: center;	
	background-color: white;
	margin: 5px 0px 5px 0px;
}

.class_contribution1{
	display: flex;
	flex-direction: column;
	width: 100%;
	height: auto;
	color: #ffeb00;
	border: 3px solid red;
	background-color: red;
	margin: auto;
	margin-top: 5px;
	margin-bottom: 5px;
	justify-content: center;
	align-items: center;
	
}

.class_contribution1 h1{
	
	width: 100%;
	height: auto;
	text-align: center;
	color: #ffeb00;
	font-size: 20px;
	justify-content: center;
	align-items: center;
}


.class_contribution1 img{
	margin-top: 0px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 200px;	
}


	
	
.class_timelesstales{
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;
	padding: 0px;
}	

.class_tales {
  background-image: repeating-linear-gradient(
    45deg,
    #ffeb00,
    #ffeb00 4%,
    red 7%,
	red 7%,
    #ffeb00 7%,
	#ffeb00 90%
	
  );	
  padding: 0px;
}

.class_tales1 {
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 0px;
	font-size: 12px;	
	margin: 15px 5px 15px 5px;
	
}

.class_tales1 h1{
	text-align: center;
	align-items: center;	
	margin: auto;
	font-size: 20px;
	text-align: center;
	color: red;
}
	

.class_tales2 {
	width: 100%;
	background: red;
	height: auto;
	justify-content: center;
	align-items: center;
	margin-Left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	padding: 0px;
	

}




.class_tales3 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.class_tales2 img{
	width: 100%;
	height: auto;
	background: red;
	padding: 0px;	
	height: auto;
	margin: 0px;
	object-fit: contain;
}

.class_tales2 h5{
	font-size: 16px;
	text-align: center;
	color: white;
	
}

.class_tales2 p{
	text-align: center;
	color: white;
	font-size: 14px;
	justify-content: center;
	height: auto;
}



.button_tales {
	background-color: white;
	color: red;
	font-size: 12px;
	padding: 5px 5px 5px 5px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: center;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 10px;
}


.timelesswisdom {

	margin: 0px;
	padding: 0px;
	justify-content: center;
  	align-items: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;	
	color: red;
}

.timelesswisdom h1{
	margin: 0px;
	padding: 0px;
	justify-content: center;
  	align-items: center;
	text-align: center;
	padding-top: 10px;
	font-size: 40px;
	font-family: Serif;
	color: red;
	letter-spacing: 6px;
	word-spacing: 2px;
	text-transform: uppercase;
}

	
.timelesswisdom1{
	margin: 0px;
	padding: 0px;
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;
	
}	


.timelesswisdom2 {
  background-image: repeating-linear-gradient(
    90deg,
    red,
    red 22%,
    #ffeb00 22%,
	#ffeb00 45%,
    orange 45%,
	orange 75%
	
  );	
  padding: 0px;
  margin: 0px;
}

.timelesswisdom3 {
	margin: 0px;
	padding: 0px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 0px;
	font-size: 12px;	
	margin: 15px 0px 15px 0px;
	
}


.timelesswisdom3 h1{
	font-size: 20px;
	

}	

.timelesswisdom4 {
	
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;		
	font-size: 20px;
	width: 100%;
	margin-top: 5px;	
	margin-bottom: 5px;	
	background: #ffbaba;
	color: #FF474C;
	padding: 5px;
	border: 1px solid red;
	box-sizing: border-box;


}


.timelesswisdom4 h4{
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: italic;
	color: red;
	align-items: center;

	
}

.timelesswisdom4 h4::before{
	content: "\201c";		
	color: red;
	font-size: 40px;
	display: block;
	margin-bottom: -20px;
	margin-top: -20px;
}

.timelesswisdom p{
	width: 90%;
	background: white;
	color: black;
	font-size: 18px;
	margin-top: 15px;
	margin-Left: auto;	
	margin-right: auto;
	justify-content: center;

}



.timelesswisdom5{
	

	width: 100%;
	height: auto;
	
}

.timelesswisdom5 img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	
}

.timelesswisdom5 h4{
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: italic;
	color: red;
	align-items: center;

	
}

.timelesswisdom5 h4::before{
	content: "\201c";		
	color: red;
	font-size: 30px;
	display: block;
	margin-bottom: -20px;
	margin-top: -20px;
}


.timelesswisdom6 {
	margin-Left: auto;
	margin-right: auto;
	justify-content: center;
	align-items: center;		
	font-size: 20px;
	width: 100%;
	margin-top: 5px;	
	margin-bottom: 2px;	
	background: #ffbaba;
	color: #FF474C;
	padding: 5px;
	border: 1px solid red;
	box-sizing: border-box;


}

.timelesswisdom6 h4{
	font-family: "Gelasio", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: italic;
	color: red;
	align-items: center;

	
}
.timelesswisdom6 h4::before{
	content: "\201c";		
	color: red;
	font-size: 60px;
	display: block;
	margin-bottom: -40px;
	margin-top: -20px;
}

.class_ack{
	margin-Left: auto;
	margin-right: auto;
	margin-bottom: 5px;
	justify-content: center;
	align-items: center;
	padding: 0px;
	
}

.class_ack1{
	justify-content: center;
	align-items: center;
	width: 80%;
	height: auto;
	padding: 0px;
	font-size: 24px;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 5px;
	margin-bottom: 5px;
	align-items: center;
	background: #ffeb00;
	color: black;
}

.class_ack1 h1{
	font-size: 30px;
	text-align: center;
	color: red;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 1px;
	margin: 0px;
}

.steps_grid-container {
  display: grid;
  /* Defines 3 columns of equal width */
  grid-template-columns: 8% 8% 8% 76%; 
  gap: 0px; /* Adds space between columns */
}

.item-1 h1{
	padding: 0;
	color: black;
	margin: 0;
	font-size: 22px;
	text-decoration: bold;
	text-align: center;
	position: sticky;	
	top: 0;
	height: 500px;
	vertical-align: middle;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	text-transform: uppercase;
}


.item-2 {
	background-color: #7cdedc;
	
}

.item-2 h2{
	padding: 0;
	color: black;
	margin: 0;
	font-size: 20px;	
	text-decoration: bold;
	text-align: center;
	position: sticky;	
	top: 0;
	height: 500px;
	vertical-align: middle;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	text-transform: uppercase;
}


.item-3 {
	background-color: #ffb4d5;
	
}


.item-3 h3{
	padding: 0;
	color: black;
	margin: 0;
	font-size: 18px;
	text-decoration: bold;
	text-align: center;
	position: sticky;
	top: 0;
	height: 500px;
	vertical-align: middle;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	text-transform: uppercase;
}



.item-4 {
	background-color: #ffffff; 
	height: auto;
	padding: 10px;
  
}

.item-4 h1{
	font-size: 22px;
  
}

.item-4 h2{
	font-size: 16px;
  
}


}

@media only screen and (max-width: 767px) {
	
	
.menu-toggle {
	display: flex;
	color: #ff1703;
	font-size: 25px;
	position: fixed;
	font-family: Arial;
    width: 22px;
	height: 28px;
	margin-top: 1px;
	background: #ffeb00;
	margin-left: auto; /* pushes it right safely */
	padding: 0px;
	border:none;
	right: 16px;
	top:3%;
	right: calc(16px + env(safe-area-inset-right));
	border-radius: 6px;
	
}
	
	.css-button {
	display: flex;
	color: #ff1703;
	font-size: 25px;
	position: fixed;
	font-family: Arial;
    width: 22px;
	height: 28px;
	margin-top: 1.2px;
	background: #ffeb00;
	margin-left: auto; /* pushes it right safely */
	padding: 0px;
	border:none;
	right: 16px;
	top: 3%;
	right: calc(16px + env(safe-area-inset-right));
	border-radius: 6px;
	
}


	.events-section,
    .contact-section {
        padding: 70px 16px;
    }

    .events-heading h2,
    .contact-heading h2 {
        font-size: 28px;
    }
	
  /* cards */
    .event-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-card,
    .contact-card {
        padding: 28px 22px;
    }

    /* social */
    .social-links {
        gap: 22px;
    }

    .social-links i {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .social-links a {
        font-size: 14px;
    }
    /* buttons */
    .event-btn,
    .contact-btn {
        width: 100%;
        text-align: center;
    }

}




}