
:root {
    --HeadingFont: 'Anta', sans-serif;
    --AccentColor: #167EFE;
    --AccentColorRgb: 22, 126, 254;
    --AccentColor2: #BAE6FF;
    --AccentColor2Rgb: 186, 230, 255;
	--LightBg1:#EEF0F3;
}

:root {
    /* 1. Base offset starts at 0px (root will be 16px + 0px = 16px) */
    --root-font-offset: 0px;
}

html {
    /* 2. Overwrite default size to inject our dynamic offset modifier */
    font-size: calc(16px + var(--root-font-offset)) !important;

    /* Smoothly scales layout changes without sudden jarring cuts */
    transition: font-size 0.15s ease-out;
}

/* Ensure body retains standard baseline scaling */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--BackgroundColor);
    background-image: url(../img/main-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    overflow-x: hidden;
    line-height: 1.7;
	color:var(--BodyColor);
	font-size: 1rem;
}

@media (prefers-color-scheme: light) {
    :root {
        --BodyColor: #040811;
        --BodyText2: #434B5E;
        --BackgroundColor: #F0F0F0;
        --NavbarBgColor: #FFFFFF;
        --EventBg: #EBF1F6;
		--LightBg1:#EEF0F3;
        --bs-black-rgb: 0, 0, 0;
        --bs-white-rgb: 255, 255, 255;			
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --BodyColor: #f1f1f1;
        --BodyText2: #f1f1f1;
        --BackgroundColor: #111;
        --NavbarBgColor: #333;
        --EventBg: #333;
		--LightBg1:#333;
		--bs-black-rgb: 255, 255, 255;
        --bs-white-rgb: 0, 0, 0;
		--bs-secondary-color: rgba(255, 255, 255, 0.75);
		--bs-border-color: #878787;
	}
}

[data-theme="light"] {
    --BodyColor: #040811;
    --BodyText2: #434B5E;
    --BackgroundColor: #F0F0F0;
    --NavbarBgColor: #FFFFFF;
    --EventBg: #EBF1F6; 
	--LightBg1:#EEF0F3;	
    --bs-black-rgb: 0, 0, 0;
	--bs-white-rgb: 255, 255, 255;
}

[data-theme="dark"] {
    --BodyColor: #f1f1f1;
    --BodyText2: #f1f1f1;
    --BackgroundColor: #111;
    --NavbarBgColor: #333;    
    --EventBg: #111;
	--LightBg1:#333;
    --bs-black-rgb: 255, 255, 255;
	--bs-white-rgb: 0, 0, 0;
	--bs-secondary-color: rgba(255, 255, 255, 0.75);
	--bs-border-color: #878787;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.HeadFont {
    font-family: var(--HeadingFont);
}

.AccentColor {
    color: var(--AccentColor)
}

.BgAccentColor {
    background-color: var(--AccentColor)
}

.AccentColor2 {
    color: var(--AccentColor2)
}

.BgAccentColor2 {
    background-color: var(--AccentColor2)
}

.Text2 {
    color: var(--BodyText2)
}

.Anta {
    font-family: var(--HeadingFont);
}

.fs-5 {
    font-size: clamp(1.125rem, 200vw - 122.75rem, 1.25rem) !important;
}

.Fs18 {
    font-size: 1.125rem;
}

.White {
    color: #fff;
}

.BtnAccent {
    background-color: var(--AccentColor);
    color: #fff;
}

.BtnAccent:hover {
    background-color: #092a57;
    color: #fff;
}

.BtnAccentSpace {
    padding: 12px 36px;
}
.form-control{
	--bs-body-color-rgb:rgba(var(--bs-black-rgb),.8);
	background-color:rgba(var(--bs-white-rgb),.8);
	--bs-body-bg:rgb(var(--bs-white-rgb));
	--bs-body-color:rgba(var(--bs-black-rgb),.8);
}
@media (prefers-color-scheme: dark) {
.form-floating>label{
	color:rgba(255,255,255,.65);
}
.form-control, .border.GlassEffect{
	--bs-border-color:#414141
}
.WorkingBody{
	color:#000;
}
.PillarTitle, .SloganText,.SloganDivider{
	color:#232323!important;
}
.MosaicItem {
    box-shadow: 0px 0 0 5px #d0d0d01a!important;
}
}
[data-theme="dark"] {
	.form-floating>label{
	color:rgba(255,255,255,.65);
}
.form-control, .border.GlassEffect{
	--bs-border-color:#414141
}
.WorkingBody{
	color:#000;
}
.PillarTitle, .SloganText,.SloganDivider{
	color:#232323!important;
}
.MosaicItem {
    box-shadow: 0px 0 0 5px #d0d0d01a!important;
}
}
	

/* Container pill shape */
.theme-switch {
    display: inline-block;
    height: 28px;
    position: relative;
    width: 60px;
}

/* Hide default HTML checkbox native look */
.theme-switch input {
    display: none;
}

/* The visible slider track background */
.slider {
    background: #000 url(../img/dark-theme.svg)no-repeat 40px 50%;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
}

/* The sliding circle indicator inside the track */
.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 22px;
    left: 3px;
    position: absolute;
    transition: 0.4s;
    width: 22px;
}

/* Track background adjustments based on checkbox checks */
input:checked+.slider {
    background: #fff url(../img/light-theme.svg)no-repeat 6px 50%;
    /* Primary accent blue when dark mode is on */
}

/* Moves the sliding dot to the right side when checked */
input:checked+.slider:before {
    transform: translateX(33px);
    background-color: #000;
}

/* Soft rounded edges for the toggle design elements */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.TxtControl button {
    font: 14px 600 var(--HeadingFont);
    background-color: rgb(var(--bs-white-rgb));
    color: rgb(var(--bs-black-rgb));
    font-weight: 600;
}

/* Navbar Custom Styling */
.NavbarSection {
    background-color: var(--NavbarBgColor);
    box-shadow: 0 2px 10px rgba(var(--bs-black-rgb), 0.05);
}

.NavbarLogo {
    width: 206px;
    height: 80px;
    object-fit: contain;
}

.NavLinkCustom {
    color: var(--BodyText2) !important;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.NavLinkCustom:hover,
.NavLinkCustom.active {
    color: var(--AccentColor) !important;
}

.BtnNav {
    color: #fff;
    line-height: 24px;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: 600;
    border: none;
    transition: opacity 0.3s ease;
}

.BtnJoinUs {
    background-color: var(--AccentColor);
    color: #fff;
}

.BtnLogin {
    background-color: #0557BC;
    color: #fff;
}

.BtnNav:hover {
    background-color: #092a57;
    color: #fff;
}

.HamburgerIcon {
    font-size: 1.125rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--BodyColor);
}

/* Offcanvas Styling */
.OffcanvasCustom {
    background-color: #000 !important;
    color: #FFFFFF !important;
	--bs-offcanvas-width:300px;
}

.OffcanvasCustom .nav-item{
	border-bottom:1px solid rgba(255,255,255,.15);
}
.OffcanvasCustom .nav-item .nav-link{
	transition:.4s all ease-in-out;
position:relative;
left:0;
}
.OffcanvasCustom .nav-item .nav-link:hover,
.OffcanvasCustom .nav-item .nav-link.active{
	left:20px;
	color:var(--AccentColor);
}
.OffcanvasCustom .btn-close {
    filter: invert(1);
}
.OffcanvasCustom .nav{
	--bs-nav-link-padding-y: 1rem;
	--bs-nav-link-font-size:1rem;
	--bs-nav-link-color:#fff;
	--bs-nav-link-hover-color:var(--AccentColor);
}
.OffcanvasCustom .dropdown .NavLinkCustom{
	color:#fff!important;
}
/* Hero Section Styling */
.HeroSection {
    padding: 80px 0 0 0;
}

.HeroEyebrow {
    font-size: 1.125rem;
    color: var(--BodyColor);
    font-weight: 600;
    letter-spacing: 1px;
}

.HeroHeading {
    font-size: clamp(2.5rem, 1.9rem + 2.98vw, 3.75rem);
    color: var(--BodyColor);
    line-height: 1.1;
}

.HeroHeading span.AccentText {
    color: var(--AccentColor);
}

.HeroContentText {
    font-size: clamp(1.25rem, 1.19rem + 0.3vw, 1.375rem);
    line-height: 1.6;
    color: var(--BodyText2);
}

.HeroImageWrapper img {
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(var(--bs-black-rgb), 0.1);
}

/* Facts Counter Section */
.FactsSectionWrapper {
    margin-top: -60px;
    /* Overlap effect on Hero Image */
    position: relative;
    z-index: 10;
    padding-bottom: 120px;
}

.FactsCardContainer {
    background-color: rgb(var(--bs-white-rgb));
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(var(--bs-black-rgb), 0.06);
}

.FactNumber {
    font: 700 4.5rem var(--HeadingFont);
    color: var(--BodyColor);
    line-height: 1;
}

.FactNumber sup {
    color: var(--AccentColor);
    font-weight: 500;
}

.FactCaption {
    font-size: 1.125rem;
    color: var(--BodyColor);
    margin-top: 10px;
    line-height: 1.4;
}

/* Responsive Breakpoints Rules */
@media (max-width: 991.98px) {
    .FactsSectionWrapper {
        margin-top: -50px;
    }

    .FactNumber {
        font-size: 3.125rem;
    }

    .FactNumber sup {
        font-size: 1.875rem;
    }
}

/* Custom CSS Extensions for Part 2 */
.AboutIconBox {
    border: 5px solid #094B9C10;
    border-radius: 5px;
}

.AifEmblem {
    border-radius: 3px;
}

/* Marquee Ribbon Styles */
.OurPillars {
    margin-top: 50px;
    margin-bottom: 100px;
}

.PillarTitle {
    font-size: clamp(60px, 4.26vw + 47.3px, 80px);
    color: #fff;
}

@media (min-width: 768px) {
    .PillarTitle {
        font-size: clamp(80px, 4.63vw + 44.4px, 100px);
    }
}

.MarqueeContainer {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.MarqueeTrack {
    display: flex;
    white-space: nowrap;
    animation: MarqueeScroll 25s linear infinite;
    width: max-content;
}

/* Pause scroll animation on mouse hover */
.MarqueeSection:hover .MarqueeTrack {
    animation-play-state: paused;
}

.MarqueeCapsuleCard {
    background-color: var(--AccentColor);
    color: #FFFFFF;
    padding: 8px 12px 8px 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(var(--bs-black-rgb), 0.20);
    display: inline-flex;
    align-items: center;
    border: 1px solid #1478F433;
	width:100%;
	
}
@media(min-width:430px){
	.MarqueeCapsuleCard{
		min-width: 300px;
padding-right:24px;		
	}
}
@media(min-width:992px){
	.MarqueeCapsuleCard{
		min-width: auto;
	}		
}
@media(max-width:429px){
	.MarqueeWrapper {
		width:100%
	}
}

.CardNumber {
    font-size: 40px;
    font-weight: 600;
    color: rgba(var(--AccentColor2Rgb), .33);
    font-style: italic;
}

.CardTitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.35;
}

.MarqueeTrack {
    gap: 4rem;
}

.MarqueeSeparator {
    width: 72px;
    height: 72px;
    background: #022856;
    background: linear-gradient(176deg, rgba(2, 40, 86, 1) 0%, rgba(5, 87, 188, 1) 100%);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(var(--bs-black-rgb), 0.15);
    flex-shrink: 0;
}

/* Infinite Loop Animation Definition */
@keyframes MarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Interactive States Hover Modifications */
.EventsUpdatesSection {
    background-color: var(--LightBg1);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05);	
}
.EventTitleLink .EventTitle{
	color:rgb(var(--bs-black-rgb));
}
.EventTitleLink:hover .EventTitle, a .EventTitle:focus, a .EventTitle:active{
	color:var(--AccentColor);
}
.EventCards,
.UpdateCards {
    border-radius: 5px;
}

.EventCard,
.UpdateCard {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    border: 1px solid rgba(var(--bs-black-rgb), 0.15);
    border-radius: 5px;
}

.EventCard {
    border-left: 4px solid var(--AccentColor) !important;
}
@media(max-width:575px){
.EventCard,
.UpdateCards{
	flex-direction:column!important;
}
}
.EventCard:hover,
.UpdateCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(4, 8, 17, 0.08) !important;
}

.LinkAllText,
.EventDateYear,
.EventVenue,
.UpdateMetaText {
    font-size: .875rem;
    color: var(--bs-secondary-color);
}

.UpdateMetaText {
    letter-spacing: 2px;

}

.EventDate {
    font: 400 1.5rem var(--HeadingFont);	
}
@media(min-width:576px){
.EventDate {
	font-size:1.625rem;
}
}
@media(min-width:768px){
.EventDate {
	font-size:1.875rem;
}
}
.EventDate, .EventTitle, .UpdateTitle{
	color:rgba(var(--bs-black-rgb),.9);
}

.LinkAllText {
    transition: color 0.2s ease;
}

.LinkAllText:hover {
    color: var(--AccentColor) !important;
}

.CustomAccordionContainer {
    width: 100%;
}

.AccordionItem .AccordionTxt {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, visibility 0s 0.4s;
}

.AccordionItem.active .AccordionTxt {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
        visibility 0s 0s;
}

@media(min-width:992px) {
    .CustomAccordionContainer {
        height: 600px;
    }
}

@media(min-width:1200px) {
    .CustomAccordionContainer {
        height: 364px;
    }
}

.AccordionItem {
    background: #011731;
    background: linear-gradient(136deg, #011731 0%, #0557BC 100%);
    /* Default Blue */
    border-radius: 10px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    flex: 1;
    /* Equal baseline for flex items */
}

/* Inactive Panel Views */
.AccordionItem .AccordionMinifiedContent {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.AccordionItem .AccordionSideImg {
    transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.08s, opacity 0.45s ease 0.18s;
}

@media(min-width:992px) {}

.AccordionItem .AccordionExpandedContent {
    display: none !important;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.ArrowIcon {
    background: url(../img/arrow-50.svg)no-repeat 0 0;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.AccordionItem .HeadFont {
    font: 400 2rem var(--HeadingFont);
    color: var(--AccentColor)
}

.AccordionItem:hover .ArrowIcon {
    transform: translateX(6px);
}

.AccordionTxt {
    color: #E2EDF1;
}

@media(min-width:1200px) {
    .AccordionItem .AccordionMinifiedContent {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .AccordionTxt {
        margin-top: 40px;
    }

    .AccordionItem .HeadFont {
        font-size: 2.25rem;
    }
}



/* Active Expansion Modification Styles */
.AccordionItem.active {
    flex: 3 !important;
    box-shadow: 0 15px 35px rgba(4, 8, 17, 0.3);
    justify-content: center;
}

.AccordionItem.active .AccordionMinifiedContent {
    display: none !important;
}

.AccordionItem.active .AccordionExpandedContent {
    display: flex !important;
    opacity: 1;
}

.AccordionSideImg {
    border-radius: 5px;
}

/* Responsive Overrides for Mobile Viewports */
@media (max-width: 991.98px) {
    .CustomAccordionContainer {
        min-height: auto;
    }

    .AccordionItem {
        min-height: 180px;
        justify-content: center;
    }

    .AccordionItem.active {
        flex: 1 !important;
        /* Disables wide stretching on vertical formats */
    }
}

.SuperHeading {
    font-size: clamp(3.75rem, 2.78rem + 4.88vw, 5rem);
}

@media (min-width: 992px) {
    .SuperHeading {
        font-size: clamp(5rem, 1.96rem + 4.9vw, 5.5rem);
    }
}

.TextMarqueeSection {
    width: 100%;
    white-space: nowrap;
    position: relative;
}

.SloganMarqueeContainer {
    display: flex;
    width: max-content;
}

.SloganMarqueeTrack {
    display: flex;
    align-items: center;
    animation: ContinuousTextScroll 30s linear infinite;
}

.SloganText {
    color: rgb(var(--bs-white-rgb));
    text-transform: capitalize;
    padding: 0 40px;
    letter-spacing: -2px;
}
.SloganDivider {
    font: 400 4.5rem var(--HeadingFont);
    color: rgb(var(--bs-white-rgb));
    display: inline-block;
    vertical-align: middle;
}

/* Perfect Seamless Loop Keyframe Matrix */
@keyframes ContinuousTextScroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Mobile responsive scaling rules */
@media (max-width: 991.98px) {
    .SloganText {
        padding: 0 20px;
    }

    .SloganDivider {
        font-size: 3.75rem;
    }

    .TextMarqueeSection {
        padding: 20px 0;
    }
}

@media (max-width: 575.98px) {
    .SloganText {
        padding: 0 15px;
        letter-spacing: -1px;
    }

    .SloganDivider {
        font-size: 3rem;
    }
}


/* 2. Mosaic Grid Structure Styles */
.ReadyToJoin .SudHeading {
    font: 400 clamp(1.75rem, 1.12rem + 0.1vw, 2.5rem) var(--HeadingFont);
}


.BeAMember {
    padding: 12px 36px;
    background: var(--AccentColor);
    color: #fff;
}

.MosaicGridWrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 70px;
    gap: 20px 16px;
}

.MosaicItem {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    color: #FFFFFF;
    box-shadow: 0px 0 0 5px #094B9C1a;
}

.RigidFactCard {
    background: linear-gradient(135deg, #011731 0%, #0557BC 100%);
}

.RigidFactCard .HeadFont {
    font: 600 38px var(--HeadingFont)
}

/* Defining structural positions across 12-column template rows */
.LargeVideoBlock {
    grid-column: span 6;
    grid-row: span 2;
}

.NormalImageBlock {
    grid-column: span 6;
    grid-row: span 2;
}

.RigidFactCard {
    grid-column: span 6;
    grid-row: span 2;
}

@media (max-width: 767.98px) {

    .LargeVideoBlock,
    .NormalImageBlock,
    .RigidFactCard {
        grid-column: span 12;
        grid-row: span 2;
    }
	.MosaicGridWrapper {
		grid-auto-rows: 120px;
	}
}

/* Image Fading Transitions */
.DynamicSwappableImg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.DynamicSwappableImg.active {
    opacity: 1;
    z-index: 2;
}

/* Video Overlay Configurations */
.VideoOverlayMask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    transition: background-color 0.3s ease;
}

.LargeVideoBlock:hover .VideoOverlayMask {
    background-color: rgba(4, 8, 17, 0.55);
}

.PlayIconCircle {
    width: 55px;
    height: 55px;
    background-color: #167EFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(22, 126, 254, 0.4);
    transition: transform 0.3s ease;
    padding-left: 4px;
    /* Centering tweak for play arrow triangle */
}

.LargeVideoBlock:hover .PlayIconCircle {
    transform: scale(1.1);
}

/* 3. Portrait 9:16 Tall YouTube Modal Setup */
.CustomTallModalDialog {
    max-width: 360px;
    /* Standard Shorts width window */
}

.RatioTallVideoContainer {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
    /* Exact 9:16 Ratio */
    background-color: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(var(--bs-black-rgb), 0.5);
}

.RatioTallVideoContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ModalCloseFixedBtn {
    position: absolute;
    right: -40px;
    top: 0;
    filter: invert(1);
    opacity: 0.8;
    z-index: 99;
}

@media (max-width: 575.98px) {
    .ModalCloseFixedBtn {
        right: 10px;
        top: -40px;
    }
}

footer {
    --FAccent: #0096FF;
    padding-top: 66px;
    margin-top: 4.5rem;
    color: var(--AccentColor2);
}
@media(min-width:576px){
footer {
	 margin-top: 6rem;
}
}
.FooterMain {
    background: #040811 url(../img/footer-bg.svg)no-repeat center center;
    /*background: linear-gradient(360deg, rgba(22, 126, 254, 1) 0%, rgba(4, 8, 17, 1) 100%);*/
    background-size: 120%;
    padding-bottom: 60px;
}

.FooterTop {
    margin-top: -66px;
    position: relative;
    border-radius: 10px;
    background-color: #000;
}

.Address {
    color: #fff;
    line-height: 1.5;
}

.FooterLinkItem,
.LegalLinkItem {
    color: var(--AccentColor2);
}

.FooterBottom {
    font-size: .875rem;
    margin-top: 25px;
}

.FooterBottom hr {
    border-color: var(--FAccent) !important;
    opacity: .5;
}

@media(max-width:767px) {
    .FooterTop .row {
        gap: 30px 0 !important;
    }
}

/* Footer Links Modifiers */
.PolicyLink {
    gap: 10px;
}

.PolicyLink li {
    border-left: 1px solid var(--AccentColor2);
    padding-left: 10px;
    line-height: 1;
}

.PolicyLink li:first-child {
    border-left: 0;
}

.FooterLinkItem,
.LegalLinkItem {
    transition: color 0.2s ease;
}

.FooterLinkItem:hover,
.LegalLinkItem:hover,
.HeadQuarters {
    color: var(--FAccent) !important;
}

/* Event Detail */
.EventDetailPage {
    background-image: url(../img/event-detail-top-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
}

.SubHead .badge {
    font-size: .9375rem;
    padding: 6px 12px;
}

.EdIcon {
    --size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E3F5FF;
    min-width: var(--size);
    min-height: var(--size);
    width: var(--size);
    height: var(--size);
    flex-grow: 0;
}

.EdLabel {
    font: 400 0.8125rem var(--HeadingFont);
    margin: 2px 0 6px 0;
}

@media(max-width:480px) {
    .EventDetails .col-6 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media(min-width:992px) {
    .EventDetails:before {
        content: '';
        background-color: rgb(var(--bs-white-rgb));
        width: 200%;
        height: 100%;
        position: absolute;
        left: -83%;
        right: -100%;
        top: 0;
        z-index: -1;
        box-shadow: 0 0 100px 5px rgba(22, 126, 254, 0.10);
    }
}

@media(max-width:991px) {
    .EventDetails {
        background-color: rgb(var(--bs-white-rgb));
        box-shadow: 0 0 100px 5px rgba(22, 126, 254, 0.10);
    }
}

.EventAgentaTitleBox:after {
    content: '';
    height: 5px;
    width: 100%;
    background: #167EFE;
    background: linear-gradient(176deg, rgba(22, 126, 254, 1) 0%, rgba(13, 75, 152, 1) 100%);
    margin-top: 1rem;
}

.AgendaRow {
    gap: 24px;
    border-bottom: 1px solid rgba(9, 75, 156, .10);
    padding-bottom: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.EdTopic,
.EdAgendaTime {
    font-size: 1.375rem;
}


.EdAgendaTime {
    color: #0557BC;
    text-wrap: nowrap;
}

@media(max-width:575px) {
    .AgendaRow {
        flex-direction: column;
        gap: .5rem;
    }
}


.SubmissionHero {
    background: var(--LightBg1) url(../img/submission-banner-bg.webp)no-repeat bottom center;
    padding-top: 75px;
    padding-bottom: 200px;
}



.MemberLogin,
.FilterResult {
    box-shadow: 0 0 100px 5px rgba(22, 126, 254, 0.10);
}

.FilterBtnWrap {
    gap: 1rem;
    flex-wrap: wrap;
}

@media(min-width:576px) {
    .FilterBtnWrap {
        gap: 32px;
    }
}

@media(min-width:768px) {
    .FilterBtnWrap {
        gap: 45px;
    }
}

.FilterBtn {
    line-height: 170%;
    color: var(--BodyColor);
    padding: 3px 10px;
    border-radius: 2px;
}

.FilterBtn:hover {
    color: var(--AccentColor);
}

.FilterBtn.active {
    background: var(--AccentColor);
    color: rgb(var(--bs-white-rgb));
    font-weight: 600;
}
.TabWrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.TabScrollContainer {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  width: 100%;
}
.TabScrollContainer::-webkit-scrollbar {
  display: none;
}
.TabScrollContainer {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.ScrollBtn {
  background:transparent;
  border: 0;
  padding: 8px 8px;
  cursor: pointer;
  z-index: 10;
  display:block
}
@media(min-width:992px){
	.ScrollBtn{
		display:none
	}
}



.DocRow {
	color: rgb(var(--bs-black-rgb));
    display: grid;
    gap: 2.5rem;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(var(--bs-black-rgb), 0.06);
}

.box-1 {
    grid-area: b1;
}

.box-2 {
    grid-area: b2;
}

.box-3 {
    grid-area: b3;
    text-align: end
}

.DocRow:nth-child(even) {
    background-color: rgba(186, 230, 255, 0.10);
}
.DocRow:hover .updateTxt{
	color:var(--AccentColor)!important;
}
@media (max-width: 767px) {
    .DocRow {
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "b1 b3"
            "b2 b2";
    }
}

@media (min-width: 992px) {
    .DocRow {
        display: grid;
        gap: 4rem;
    }
}

@media (min-width: 768px) {
    .DocRow {
        grid-template-columns: max-content 1fr max-content;
        grid-template-areas: "b1 b2 b3";
    }

}

@media(max-width:767px) {
    .DocTxt {
        width: 100%
    }
}


.DcoIssueDate {
    letter-spacing: 2px;
}

.Notification.active,
.badge.Notification,
.Circular.active,
.badge.Circular,
.Guideline.active,
.badge.Guideline,
.FAQs.active,
.badge.FAQs,
.Press.active,
.badge.Press{
    border-color: rgba(0, 0, 0, .10);
    color: #000;
}

.Notification.active,
.badge.Notification {
    background-color: #FFF1BA;
}

.Circular.active,
.badge.Circular {
    background-color: #BAE6FF;
}

.Guideline.active,
.badge.Guideline {
    background-color: #FFEDED;
}
.FAQs.active,
.badge.FAQs {
    background-color: #F0EEFE;
}
.Press.active,
.badge.Press {
    background-color: #E6FAF8;
}

.TeamCardInfo {
    background: rgba(0, 0, 0, 0.3);
    border-radius: .5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: calc(100% - 20px);
    bottom: 10px;
    left: 10px;
    color:#fff;
	
}
.TeamModal{
	--bs-modal-bg:rgb(var(--bs-white-rgb));
}
.TeamModal .modal-header {
    height: 75px;
    align-items: start;
}

.LinkedinProfile:hover svg {
    fill: var(--AccentColor)
}

.ModalLink a svg {
    stroke: #fff;
}

.ModalLink a:hover svg {
    stroke: var(--AccentColor);
}

.ModalIntro {
    margin-top: -60px;
}

.TeamModal .LinkedIn svg {
    fill: var(--AccentColor);
    width: 32px;
    height: 32px;
}

.CursorPointer {
    cursor: pointer;
}

.Faqs {
    --bs-accordion-bg: rgba(var(--bs-white-rgb), .2);
    --bs-accordion-active-bg: transparent;
    --bs-accordion-border-width: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.GlassEffect {
    background: rgba(var(--bs-white-rgb), .2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@media (prefers-color-scheme: dark) {
	.Faqs {
    --bs-accordion-btn-color:#f2f2f2;
	--bs-accordion-active-color:var(--AccentColor);
	--bs-accordion-color:rgba(255,255,255,.75);
	--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23167EFE' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23167EFE' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e")
	}
}
[data-theme="dark"] {
       	.Faqs {
    --bs-accordion-btn-color:#f2f2f2;
	--bs-accordion-active-color:var(--AccentColor);
	--bs-accordion-color:rgba(255,255,255,.75);
	--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23167EFE' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23167EFE' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e")
	}
}


.ContactIcon {
    border: 1px solid rgba(var(--bs-black-rgb), .1);
    padding: 6px;
    border-radius: 4px;
    display: flex;
}

.ContactIcon svg {
    width: 20px;
    height: 20px;
    fill: var(--BodyText2)
}

.Message {
    height: 150px !important;
}

.BulletList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.BulletList li {
    display: flex;
    gap: .5rem;
}

.BulletList li:before {
    content: '';

    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23167EFE" class="bi bi-check-circle-fill" viewBox="0 0 16 16"><path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/></svg>')no-repeat 0 0;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}


.image-grid {

    gap: 16px;
    width: 100%;
}

/* Common Image Container Styles */
.grid-main-block,
.grid-side-block {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #eee;
}

/* Make images fill their containers nicely */
.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback aspect ratio for stacked mobile view */


.grid-side-column {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 576px) {
    .grid-side-column {
        flex-direction: row;

    }

    .grid-main-block,
    .grid-side-block {
        aspect-ratio: 4 / 3;
    }
}

/* Desktop Layout (Screens wider than 768px) */
@media (min-width: 992px) {
    .image-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-columns: 3fr 2fr
            /* Splits into 3/4 and 1/4 layout */
    }

    /* Let the main image dictate the natural height based on its aspect ratio */
    .grid-main-block {
        aspect-ratio: 4 / 3;
    }

    /* Flex wrapper forces 2nd and 3rd image to perfectly match the main block's height */
    .grid-side-column {
        display: flex;
        flex-direction: column;
        gap: 16px;
        height: 100%;
        margin-top: 0px;
    }

    /* Overrides mobile aspect ratio so blocks stretch evenly to 50% height minus the gap */
    .grid-side-block {
        flex: 1;
        aspect-ratio: auto;
    }
}

@media (min-width: 1200px) {
    .image-grid {
        grid-template-columns: 3fr 1fr;
        /* Splits into 3/4 and 1/4 layout */
    }

    .grid-main-block {
        aspect-ratio: 6 / 3;
    }
}

.Rupee {
    font-size: .75em !important;
}

.Orange {
    color: #F2994A
}
.gallery-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Base structural layout wrapper */
.gallery-grid {
    display: flex;
    gap: 15px; /* Columns ke beech ka horizontal gap */
    align-items: flex-start;
}

/* Dynamic columns created via JavaScript */
.gallery-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 15px; /* Images ke beech ka perfect vertical gap */
}

/* Gallery Individual Item Box */
.gallery-item {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lightbox overlay styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    animation: zoomIn 0.2s ease-out;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
