html,body{
margin:0;
padding:0;
scroll-behavior:smooth;
}

*{
box-sizing:border-box;
}

/* BODY */
body{
background:#020617;
overflow-x:hidden;
overflow-y:auto;
font-family:"Times New Roman",Times,serif;
color:white;
}

/* CANVAS */
#mathCanvas{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}

/* APP */
#app{
position:relative;
z-index:2;
}

/* GLOW */
.glow{
text-shadow:0 0 15px #0d6286;
}

/* HEADER */

.main-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 45px;
background:linear-gradient(180deg, rgba(2,6,23,.9), rgba(2,6,23,.7));
background:transparent;
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(56,189,248,.4);
position:fixed;
top:0;
width:100%;
z-index:5;
font-family:"Times New Roman",Times,serif;
}

/* SEARCH */

.search-box{
position:relative;
}

.search-box input{
padding:8px 18px;
background:rgba(15,23,42,.8);
border:1px solid rgba(56,189,248,.5);
border-radius:25px;
color:#bae6fd;
outline:none;
font-family:"Times New Roman",Times,serif;
letter-spacing:.5px;
transition:.3s;
}

.search-box input::placeholder{
color:#7dd3fc;
}

.search-box input:focus{
box-shadow:0 0 15px rgba(56,189,248,.5);
}

/* SEARCH RESULTS */

#searchResults{
position:absolute;
top:45px;
left:0;
width:300px;
background:rgba(15,23,42,.95);
border:1px solid rgba(56,189,248,.4);
border-radius:12px;
box-shadow:0 0 25px rgba(56,189,248,.4);
display:none;
z-index:20;
overflow:hidden;
}

.search-item{
padding:12px 16px;
cursor:pointer;
font-size:15px;
color:#bae6fd;
border-bottom:1px solid rgba(56,189,248,.2);
font-family:"Times New Roman",Times,serif;
transition:.2s;
}

.search-item:hover{
background:rgba(56,189,248,.2);
padding-left:20px;
}

/* TITLE */

.header-title{
font-size:22px;
font-weight:bold;
color:#22e3ed;
position:absolute;
left:50%;
transform:translateX(-50%);
animation:fadeGlow 3s infinite alternate;
letter-spacing:1px;
font-family:"Times New Roman",Times,serif;
}

@keyframes fadeGlow{
from{opacity:.6;}
to{opacity:1;}
}

/* MENU */

.nav-menu a{
background:none;
border:none;
color:rgb(16,195,223);
margin-left:22px;
font-size:17px;
letter-spacing:1px;
cursor:pointer;
font-family:"Times New Roman",Times,serif;
transition:.3s;
position:relative;
text-decoration:none;
}

/* underline glow effect */

.nav-menu a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#38bdf8;
transition:.3s;
}

.nav-menu a:hover::after{
width:100%;
}

.nav-menu a:hover{
color:#38bdf8;
text-shadow:0 0 10px #38bdf8;
}
/* underline glow effect */

.nav-menu button::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#38bdf8;
transition:.3s;
}

.nav-menu button:hover::after{
width:100%;
}



/* SECTIONS */
.section{
display:none;
height:auto;
padding:0;
}

.active-section{
display:block;
}

#research,#teaching,#articles,#about{
padding-top:120px;
}

/* HERO */
.hero{
min-height:90vh;
display:flex;
position:relative; 
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding-bottom:50px;
background:radial-gradient(circle at center, rgba(56,189,248,.15), transparent);
animation:heroFade 2s ease;
}

@keyframes heroFade{
from{opacity:0;transform:translateY(30px);}
to{opacity:1;transform:translateY(0);}
}

.hero-name{
font-size:64px;
margin-bottom:15px;
letter-spacing:1px;
color:#6adcfc;
text-shadow:0 0 20px #094a66;
}

.hero-sub{
font-size:24px;
opacity:.85;
letter-spacing:1px;
color:#90d6f7;
}

/* SLIDER */
/* SLIDER */

.slider{
margin:40px auto;
width:100%;
overflow:hidden;
background:rgba(15,23,42,.6);
backdrop-filter:blur(8px);
border-radius:30px;
padding:30px 0;
box-shadow:0 0 25px rgba(56,189,248,.3);
}

.slider-track{
display:flex;
align-items:center;
width:max-content;
animation:marquee 25s linear infinite;
}

.slider-track img{
height:clamp(140px, 18vw, 240px);
margin:0 35px;
transition:.3s;
filter:brightness(1.1);
}

.slider-track img:hover{
transform:scale(1.1);
filter:brightness(1.2);
}

@keyframes marquee{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

/* QUOTES */
/* QUOTES */
.quotes{
margin:50px auto;
width:60%;
min-height:150px;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
font-size:24px;
font-style:italic;
color:#bae6fd;
padding:25px;
border-radius:15px;
background:rgba(15,23,42,.7);
backdrop-filter:blur(10px);
box-shadow:0 0 25px rgba(56,189,248,.4);
letter-spacing:1px;
transition:opacity .8s ease, transform .8s ease;
opacity:1;
}

/* FOOTER */
.footer{
height:200px;
display:flex;
justify-content:center;
align-items:center;
}
/* SECTION TITLES */
.section-title{
text-align:center;
font-size:32px;
margin-bottom:40px;
color:#6adcfc;
text-shadow:0 0 15px #094a66;
}

/* CV BUTTON */
.cv-section{
text-align:center;
margin:40px 0;
}

.cv-button{
padding:12px 30px;
border:1px solid #38bdf8;
border-radius:30px;
color:#38bdf8;
text-decoration:none;
font-size:18px;
transition:.3s;
}

.cv-button:hover{
background:#38bdf8;
color:#020617;
box-shadow:0 0 20px #38bdf8;
}

/* RESEARCH INTERESTS */
.research-interests{
margin:80px 10%;
}

.interest-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.interest-card{
background:rgba(15,23,42,.7);
padding:25px;
border-radius:15px;
box-shadow:0 0 20px rgba(56,189,248,.3);
transition:.3s;
}

.interest-card:hover{
transform:translateY(-5px);
box-shadow:0 0 30px rgba(56,189,248,.5);
}

/* STATS */
.stats-section{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
margin:80px 0;
}

.stat-card{
text-align:center;
padding:20px 40px;
background:rgba(15,23,42,.7);
border-radius:15px;
box-shadow:0 0 20px rgba(56,189,248,.3);
margin:15px;
}

.stat-card h2{
font-size:40px;
color:#6adcfc;
}

/* FEATURED */
.featured-section{
margin:80px 10%;
}

.featured-card{
background:rgba(15,23,42,.7);
text-align:justify;
padding:30px;
margin-bottom:30px;
border-radius:15px;
box-shadow:0 0 20px rgba(56,189,248,.3);
transition:.3s;
}
/* FIX FEATURED CARD INTERNAL GAP */

.featured-card p{
margin-bottom:35px;
}

.featured-card h3{
margin-bottom:15px;
}

.featured-card{
padding:30px;
}
.featured-card:hover{
transform:translateY(-5px);
box-shadow:0 0 30px rgba(56,189,248,.5);
}

.view-btn{
margin-top:15px;
padding:10px 20px;
background:none;
border:1px solid #38bdf8;
color:#38bdf8;
cursor:pointer;
transition:.3s;
}

.view-btn:hover{
background:#38bdf8;
color:#020617;
}
/* RESEARCH GRID */

.research-grid{
display:grid;
text-align:justify;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin:50px 10%;
}

.research-card{
background:rgba(15,23,42,.7);
padding:25px;
border-radius:15px;
cursor:pointer;
box-shadow:0 0 20px rgba(56,189,248,.3);
transition:.3s;
}

.research-card:hover{
transform:translateY(-6px);
box-shadow:0 0 35px rgba(56,189,248,.5);
}

.research-card h3{
color:#6adcfc;
margin-bottom:10px;
}

/* RESEARCH DETAIL */

.research-detail{
display:none;
margin:60px 10%;
padding:30px;
background:rgba(15,23,42,.8);
border-radius:20px;
box-shadow:0 0 30px rgba(56,189,248,.4);
}

.research-detail img{
max-width:500px;
margin:20px 20px;
border-radius:10px;
}

.back-btn{
background:none;
border:1px solid #38bdf8;
color:#38bdf8;
padding:8px 20px;
cursor:pointer;
margin-bottom:20px;
}

.back-btn:hover{
background:#38bdf8;
color:#020617;
}
/* RESEARCH DOWNLOAD BUTTON */

.paper-btn{
display:inline-block;
margin-top:25px;
padding:12px 34px;
font-size:18px;
letter-spacing:1px;
color:#bae6fd;
text-decoration:none;
border-radius:12px;
background:linear-gradient(135deg, rgba(15,23,42,.8), rgba(2,6,23,.9));
border:1px solid rgba(56,189,248,.6);
box-shadow:0 0 20px rgba(56,189,248,.35);
transition:.4s ease;
position:relative;
overflow:hidden;
}

/* glowing sweep */
.paper-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg, transparent, rgba(186,230,253,.5), transparent);
transition:.6s;
}

.paper-btn:hover::before{
left:100%;
}

.paper-btn:hover{
background:#38bdf8;
color:#020617;
box-shadow:0 0 35px rgba(56,189,248,.8);
transform:translateY(-2px);
}
/* ABOUT SECTION */

.about-wrapper{
margin:60px 10%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;
}

.about-card{
background:rgba(15,23,42,.7);
text-align:justify;
padding:30px;
border-radius:18px;
box-shadow:0 0 25px rgba(56,189,248,.3);
transition:.3s;
}

.about-card:hover{
transform:translateY(-5px);
box-shadow:0 0 35px rgba(56,189,248,.5);
}

.about-card h3{
margin-bottom:15px;
color:#6adcfc;
}

.about-card p{
line-height:1.7;
color:#bae6fd;
}

.about-list{
padding-left:20px;
}

.about-list li{
margin-bottom:8px;
color:#bae6fd;
}
/* FOOTER */

.site-footer{
margin-top:200px;
padding:10px 10px 10px;
text-align:center;
background:linear-gradient(180deg, rgba(2,6,23,.6), rgba(2,6,23,.9));
backdrop-filter:blur(10px);
border-top:1px solid rgba(56,189,248,.4);
font-family:"Times New Roman",Times,serif;
}

.footer-social{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:25px;
margin-bottom:25px;
}

.footer-social a{
color:#7dd3fc;
text-decoration:none;
font-size:18px;
letter-spacing:1px;
transition:.3s;
position:relative;
}

/* underline glow */
.footer-social a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:#38bdf8;
transition:.3s;
}

.footer-social a:hover::after{
width:100%;
}

.footer-social a:hover{
color:#bae6fd;
text-shadow:0 0 10px #38bdf8;
}

.footer-line{
width:60%;
height:1px;
margin:20px auto;
background:rgba(56,189,248,.3);
}

.footer-copy{
color:#bae6fd;
font-size:15px;
letter-spacing:1px;
opacity:.8;
}

/* HAMBURGER (hidden on desktop) */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:#38bdf8;
border-radius:2px;
}


/* RESEARCH STATEMENT */

.research-statement{
margin:100px 10%;
}

.statement-card{
background:rgba(15,23,42,.7);
padding:35px;
border-radius:18px;
box-shadow:0 0 25px rgba(56,189,248,.3);
line-height:1.8;
color:#bae6fd;
transition:.3s;
}

.statement-card:hover{
transform:translateY(-5px);
box-shadow:0 0 35px rgba(56,189,248,.5);
}
/* RESEARCH STATEMENT SLIDER */

.research-statement{
margin:100px 10%;
}

.statement-slider{
overflow-x:auto;
cursor:grab;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
}

.statement-slider::-webkit-scrollbar{
display:none;
}

.statement-track{
display:flex;
gap:30px;
}

.statement-card{
min-width:300px;
max-width:350px;
background:rgba(15,23,42,.7);
padding:30px;
border-radius:18px;
box-shadow:0 0 25px rgba(56,189,248,.3);
color:#bae6fd;
line-height:1.7;
scroll-snap-align:start;
transition:.3s;
}

.statement-card:hover{
transform:translateY(-5px);
box-shadow:0 0 35px rgba(56,189,248,.5);
}


/* SCROLL DOWN INDICATOR */

.scroll-indicator{
position:absolute;
bottom:25px;
left:50%;
transform:translateX(-50%);
opacity:1;
}

.scroll-indicator span{
display:block;
width:26px;
height:26px;
border-bottom:2px solid #38bdf8;
border-right:2px solid #38bdf8;
transform:rotate(45deg);
animation:scrollBounce 1.5s infinite;
}

/* continuous bounce — NO fade */

@keyframes scrollBounce{
0%{
transform:rotate(45deg) translate(0,0);
}
50%{
transform:rotate(45deg) translate(8px,8px);
}
100%{
transform:rotate(45deg) translate(0,0);
}
}
/* MATH HIGHLIGHTS */

.math-highlights{
margin:100px 10%;
}

.math-slider{
overflow-x:auto;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
}

.math-slider::-webkit-scrollbar{
display:none;
}

.math-track{
display:flex;
gap:30px;
}

.math-card{
min-width:320px;
max-width:360px;
padding:28px;
background:rgba(15,23,42,.75);
border-radius:18px;
box-shadow:0 0 25px rgba(56,189,248,.3);
color:#bae6fd;
scroll-snap-align:start;
transition:.3s;
}

.math-card:hover{
transform:translateY(-5px);
box-shadow:0 0 35px rgba(56,189,248,.5);
}

.math-title{
color:#6adcfc;
margin-bottom:10px;
font-size:18px;
}
/* RESEARCH REFLECTION BLOCK */

.research-reflection{
margin:120px 10% 80px;
display:flex;
justify-content:center;
}

.reflection-card{
display:grid;
grid-template-columns:1fr 2fr;
gap:40px;
background:rgba(15,23,42,.75);
padding:40px;
border-radius:20px;
box-shadow:0 0 30px rgba(56,189,248,.35);
max-width:900px;
width:100%;
transition:.3s;
}

.reflection-card:hover{
transform:translateY(-5px);
box-shadow:0 0 45px rgba(56,189,248,.5);
}

.reflection-photo img{
width:100%;
aspect-ratio:1/1;
object-fit:cover;
border-radius:12px;
border:2px solid #38bdf8;
box-shadow:0 0 20px rgba(56,189,248,.5);
}

.reflection-text h2{
color:#6adcfc;
margin-bottom:15px;
}

.reflection-text p{
color:#bae6fd;
line-height:1.7;
margin-bottom:12px;
text-align:justify;
}


/* BOOKS SECTION */

.books-section{
margin:120px 10%;
text-align:center;
}



.book-card h3{
color:#6adcfc;
margin-bottom:8px;
font-size:18px;
}

.book-card .author{
color:#38bdf8;
font-style:italic;
margin-bottom:10px;
}

.book-card p{
color:#bae6fd;
font-size:14px;
line-height:1.6;
}

/* Hover effect */
.book-card:hover{
transform:translateY(-8px);
box-shadow:0 0 40px rgba(56,189,248,.6);
}


/* HINDU DIVINE QUOTE */

.hindu-style{
position:relative;
margin:120px auto 80px;
text-align:center;
max-width:720px;
padding:45px 35px;
border-radius:22px;

/* saffron + sky spiritual blend */
background:
radial-gradient(circle at center,
rgba(255,153,51,.15),
rgba(56,189,248,.08),
transparent 70%);

box-shadow:0 0 40px rgba(255,153,51,.25);
overflow:hidden;
}

/* rotating chakra aura */

.chakra-ring{
position:absolute;
top:50%;
left:50%;
width:320px;
height:320px;
border-radius:50%;
border:1px solid rgba(255,153,51,.4);
transform:translate(-50%,-50%);
animation:chakraRotate 18s linear infinite;
box-shadow:0 0 35px rgba(255,153,51,.4);
}

/* soft inner glow */

.hindu-style::before{
content:"";
position:absolute;
inset:0;
background:radial-gradient(circle,
rgba(255,153,51,.18),
transparent 65%);
animation:hinduPulse 4s ease-in-out infinite;
}

/* quote text */

.hindu-style p{
position:relative;
font-size:22px;
font-style:italic;
letter-spacing:1px;
color:#ffe9c6;
text-shadow:
0 0 10px rgba(255,153,51,.6),
0 0 20px rgba(56,189,248,.3);
z-index:2;
}

/* animations */

@keyframes chakraRotate{
from{transform:translate(-50%,-50%) rotate(0deg);}
to{transform:translate(-50%,-50%) rotate(360deg);}
}

@keyframes hinduPulse{
0%{opacity:.5;}
50%{opacity:1;}
100%{opacity:.5;}
}


/* COSMIC MANDALA */

.cosmic-mandala{
position:absolute;
inset:0;
background:
radial-gradient(circle at center,
rgba(56,189,248,.12),
transparent 65%);
animation:mandalaPulse 6s ease-in-out infinite;
}

/* OM WATERMARK */

.om-watermark{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:120px;
opacity:.06;
color:#ffcc66;
pointer-events:none;
animation:omBreath 5s ease-in-out infinite;
}

/* FLOATING DIYA LIGHTS */

.diya{
position:absolute;
width:8px;
height:8px;
border-radius:50%;
background:#ffb703;
box-shadow:0 0 12px #ffb703;
animation:diyaFloat 6s ease-in-out infinite;
opacity:.8;
}

.d1{left:20%; top:70%; animation-delay:0s;}
.d2{left:80%; top:65%; animation-delay:2s;}
.d3{left:50%; top:80%; animation-delay:4s;}

@keyframes diyaFloat{
0%{transform:translateY(0); opacity:.3;}
50%{transform:translateY(-25px); opacity:1;}
100%{transform:translateY(0); opacity:.3;}
}

/* ANIMATIONS */

@keyframes mandalaPulse{
0%{opacity:.4;}
50%{opacity:1;}
100%{opacity:.4;}
}

@keyframes omBreath{
0%{transform:translate(-50%,-50%) scale(.95);}
50%{transform:translate(-50%,-50%) scale(1.05);}
100%{transform:translate(-50%,-50%) scale(.95);}
}
/* BOOK SLIDER */

.books-slider{
overflow:hidden;
margin-top:50px;
display:flex;
flex-direction:column;
gap:35px;
}

/* tracks */

.books-track{
display:flex;
gap:40px;
width:max-content;
}

/* animations */

.row1{
animation:booksLeft 35s linear infinite;
}

.row2{
animation:booksRight 40s linear infinite;
}

/* cards */

.book-card{
min-width:260px;
padding:22px;
background:rgba(15,23,42,.8);
border-radius:16px;
box-shadow:0 0 20px rgba(56,189,248,.25);
transition:.3s;
}

.book-card:hover{
transform:translateY(-6px);
box-shadow:0 0 35px rgba(56,189,248,.5);
}

.book-card h3{
color:#6adcfc;
font-size:16px;
margin-bottom:6px;
}

.book-card .author{
color:#38bdf8;
font-style:italic;
font-size:14px;
margin-bottom:6px;
}

.book-card p{
color:#bae6fd;
font-size:13px;
}

/* motion */

@keyframes booksLeft{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

@keyframes booksRight{
0%{transform:translateX(-50%);}
100%{transform:translateX(0);}
}


/* ALIGN RESEARCH INTERESTS + RESEARCH VISION TEXT */

.interest-card p,
.statement-card{
text-align:justify;
max-width:320px;
margin-left:auto;
margin-right:auto;
line-height:1.75;
}

/* headings centered */

.interest-card h3{
text-align:center;
}
/* ARTICLE POST TEXT */

.research-detail p{
text-align:justify;
line-height:1.8;
max-width:800px;
margin:20px auto;
color:#bae6fd;
}
/* ==================================================
   MOBILE RESPONSIVE — SINGLE CLEAN BLOCK
================================================== */

@media (max-width:768px){

/* HEADER */

.main-header{
flex-direction:row;
justify-content:space-between;
align-items:center;
padding:10px 12px;
}

.search-box{
flex:1;
}

.hamburger{
display:flex;
margin-left:auto;
}

.nav-menu{
display:none;
position:absolute;
top:55px;
left:0;
width:100%;
background:rgba(2,6,23,.95);
flex-direction:column;
align-items:center;
padding:15px 0;
}

.nav-menu.show{
display:flex;
}

/* HERO */

.hero{
min-height:auto;
padding:60px 15px 40px;
}

.hero-name{
font-size:34px;
}

.hero-sub{
font-size:16px;
}

/* SLIDER */

.slider-track img{
height:65px;
margin:0 15px;
}

/* QUOTES */

.quotes{
width:95%;
font-size:17px;
}

/* FULL WIDTH SECTIONS */

.books-section,
.math-highlights,
.research-reflection{
margin-left:0 !important;
margin-right:0 !important;
padding-left:15px;
padding-right:15px;
}

/* MATH */

.math-card{
min-width:90%;
}

/* RESEARCH PHILOSOPHY */

.reflection-card{
width:100%;
border-radius:0;
padding:25px;
grid-template-columns:1fr;
text-align:center;
}

/* RESEARCH INTERESTS */

.research-interests{
margin:50px 15px;
}

.interest-grid{
grid-template-columns:1fr;
}

/* STATS */

.stats-section{
flex-direction:row;
align-items:row;
}

/* BOOK CARDS */

.book-card{
min-width:200px;
}

/* FOOTER */

.footer-social{
gap:15px;
}

.footer-social a{
font-size:16px;
}

.footer-copy{
font-size:13px;
}

/* DIVINE QUOTE */

.hindu-style{
border-radius:0;
padding:30px 15px;
}

.hindu-style p{
font-size:18px;
}

.chakra-ring{
width:220px;
height:220px;
}
/* ================= OTHER PAGES (RESEARCH / TEACHING / ARTICLES / ABOUT) ================= */

/* Research / Teaching / Articles grids */

.research-grid{
grid-template-columns:1fr;
margin:30px 12px;
}

/* Research / Teaching / Article detail pages */

.research-detail{
margin:25px 12px;
padding:20px;
border-radius:0;
}

/* Images inside post pages */

.research-detail img,
#teachingImg{
max-width:100%;
margin:15px 0;
}

/* Article post text (full-width reading on mobile) */

#articleDetail p,
.research-detail p{
max-width:100%;
margin:15px 0;
text-align:justify;
}

/* Teaching video */

#teachingVideo{
width:100%;
}

/* About page */

.about-wrapper{
margin:30px 12px;
grid-template-columns:1fr;
}

.about-card{
border-radius:0;
padding:22px;
}

/* Section titles slightly smaller on mobile */

.section-title{
font-size:24px;
margin-bottom:25px;
}

/* Back buttons (posts) */

.back-btn{
margin-bottom:15px;
}

/* Paper download button */

.paper-btn{
width:100%;
text-align:center;
}

/* Article cards */

#articleGrid{
margin:30px 12px;
grid-template-columns:1fr;
}
/* FORCE FULL WIDTH FOR ALL PAGES */

@media (max-width:768px){

section{
padding-left:12px !important;
padding-right:12px !important;
}

.research-grid,
#articleGrid{
grid-template-columns:1fr !important;
margin:25px 0 !important;
}

.research-detail{
margin:20px 0 !important;
padding:20px !important;
border-radius:0 !important;
}

.research-detail img{
max-width:100% !important;
}

.about-wrapper{
grid-template-columns:1fr !important;
margin:20px 0 !important;
}

.paper-btn{
width:100%;
text-align:center;
}

}
/* FORCE FULL WIDTH CARDS ON MOBILE */

.statement-card,
.math-card{
min-width:100% !important;
max-width:100% !important;
}

.reflection-card{
max-width:100% !important;
width:100% !important;
}

}