.awards-section {
text-align: center;
padding: 50px 20px;
}

.awards-section h2 {
font-size: 2.2rem;
margin-bottom: 40px;
color: #900;

}

/* GRID SYSTEM */
.awards-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 20px 0;
}

.award-card {
background: #7a0a0a;       /* card background */
border-radius: 12px;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: flex-start; /* text top se start hoga */
align-items: flex-start;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}



.award-number:hover {
transform: rotate(360deg);
}

.award-text {
width: 100%;
flex-grow: 1;  /* sabhi cards ki height equal hogi */
}
.award-text h3 {
font-size: 1.4rem;         /* size bada aur readable */
font-weight: 600;          /* thoda bold */
color: #fff;               /* white text */
margin-top: -40px;       /* niche gap */
text-transform: uppercase; /* sab caps me */
letter-spacing: 1px;       /* thoda space */
text-align: left;
padding-left: 60px;        /* border se gap */
}
.award-text p {
font-size: 1.5rem;
margin: 5px 0;
color: #eee;
text-align: left;
}

/* RESPONSIVE */
@media (max-width: 768px) {
.awards-section h2 {
font-size: 1.8rem;
}
.award-card {
flex-direction: row;
padding: 15px;
}
.award-icon {
font-size: 28px;
}
}

@media (max-width: 480px) {
.awards-section {
padding: 30px 15px;
}
.awards-section h2 {
font-size: 1.5rem;
}
.award-card {
flex-direction: row;
padding: 12px;
}
.award-icon {
font-size: 24px;
}
.award-text h3 {
font-size: 1.5rem;
margin-top: 10px;
text-align: left;
padding-left: 28px;
}
.award-text p {

font-size: 1.8rem;
text-align: left;
width: 100%;
margin-left: -51px;
}
}

.hero

{
display: flex;
justify-content: center;
align-items: center;
/* padding: 20px 6%; */
/* min-height: 90vh; */
background: url('image/prince.jpg') no-repeat center;
background-size: cover;
color: white;
min-height: 100vh;  /* desktop full height */
}

.hero-card {
flex: 1;
max-width: 600px;
background: rgba(0, 0, 0, 0.55);
padding: 30px;
margin-left: 50%; /* sirf desktop */
border-radius: 12px;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-card:hover {
box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.hero-card h1 {
font-size: 38px;
font-weight: 700;
margin-bottom: 15px;
color: #fff;
}

.hero-card h3 {
font-size: 20px;
margin-bottom: 20px;
color: #fff;
}

.tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 20px;
}

.tag {
background: rgba(255,255,255,0.15);
border-radius: 20px;
padding: 6px 14px;
font-size: 14px;
transition: background 0.3s;
}

.tag:hover {
background: rgba(255,255,255,0.3);
}

.btn {
display: inline-block;
padding: 12px 24px;
background: #1d72ff;
color: #fff;
font-size: 16px;
border-radius: 6px;
text-decoration: none;
transition: 0.3s;
}

.btn:hover {
background: #145dcc;
}

.hero-video {
flex: 1;
max-width: 500px;
}

.hero-video iframe {
width: 100%;
height: 280px;
border-radius: 12px;
box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* ---------- Responsive ---------- */
/* ---------- Mobile View Fix ---------- */
@media (max-width: 768px) {


.hero-card {
max-width: 100%;
width: 100%;
margin: 20px auto 0 auto; /* beech me center */
padding: 20px;
}

.hero {
flex-direction: column;
text-align: center;
padding: 20px;
background-size: cover;
background-position: center;
height: auto;
}
.hero-card h1 {
font-size: 26px;
line-height: 1.3;
}

.hero-card h3 {
font-size: 16px;
}

.hero-video iframe {
height: 200px;
}
}

@media (max-width: 992px) {
.hero {
min-height: auto;  /* let content decide height */
padding: 40px 20px;
flex-direction: column;
text-align: center;
}

.hero-card {
max-width: 100%;
}

.hero-card h1 {
font-size: 36px;
}

.hero-video {
margin-top: 20px;
max-width: 100%;
}

.hero-video iframe {
height: 240px;
}
}

@media (max-width: 600px) {
.hero-card h1 {
font-size: 28px;
}

.hero-card h3 {
font-size: 16px;
}

.hero-video iframe {
height: 200px;
}
}

.award-number {
width: 50px;
height: 50px;
background: #b61010;
color: #fff;
font-weight: bold;
font-size: 18px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
flex-shrink: 0;
transition: transform 0.6s ease;
}

/* 🔹 Rotation on Hover */
.award-card:hover .award-number {
transform: rotate(360deg) scale(1.1);
}


.section1 {
position: relative;
overflow: hidden;
}

/* Big faded background text */
.section1::before {
content: "Early Career";
position: absolute;
top: -20px;
left: 20px;
font-size: 50px; /* responsive size */
font-weight: 800;
color: rgba(255, 255, 255, 0.05);
z-index: 0;
pointer-events: none;
white-space: nowrap;
}

.heading1-block1::before {
content: "Institutional Growth & Academic Achievements";
position: absolute;
top: 20px;
left: 20px;
font-size: clamp(15px, 5vw, 30px); /* responsive font */
font-weight: 800;
margin-left: 20%;
color: rgba(122, 121, 121, 0.527);
z-index: 0;
pointer-events: none;
white-space: nowrap;
font-family: Arial, sans-serif;
}
.Guest{
    position: relative;
overflow: hidden;
}
.Guest::before {
content: "Co-Curricular Innovations"; 
position: absolute;
top: -25px;
left: 20px;
font-size: clamp(45px, 15vw, 60px); /* responsive font */
font-weight: 800;
margin-left: 10%;
color: rgb(255, 253, 253);
z-index: 0;
pointer-events: none;
white-space: nowrap;
font-family: Arial, sans-serif;
text-align: center;
}
.initiatives{
    position: relative;
overflow: hidden;
}
.initiatives::before {
content: "Created numerous student-centric initiatives"; 
position: absolute;
top: -5px;
left: 20px;
font-size: 40px; /* responsive font */
font-weight: 800;

color: rgb(255, 253, 253);
z-index: 0;
pointer-events: none;
white-space: nowrap;
font-family: Arial, sans-serif;
text-align: center;
}

.ASSOCIATIONS{
    position: relative;
overflow: hidden;
}
.ASSOCIATIONS::before {
content: "Associations & Memberships"; 
position: absolute; 
top: -5px;
left: 20px;
font-size: 40px; /* responsive font */
font-weight: 800;
margin-left: 20%;
color: rgb(255, 253, 253);
z-index: 0;
pointer-events: none;
white-space: nowrap;
font-family: Arial, sans-serif;
text-align: center;
}


.WORKSHOPS{
    position: relative;
overflow: hidden;
}
.WORKSHOPS::before {
content: "Workshops Conducted"; 
position: absolute; 
top: -5px;
left: 20px;
font-size: 40px; /* responsive font */
font-weight: 800;
margin-left: 30%;
color: rgb(255, 253, 253);
z-index: 0;
pointer-events: none;
white-space: nowrap;
font-family: Arial, sans-serif;
text-align: center;
}


/* Extra Media Queries for Better Control */
@media (max-width: 768px) {
.section1::before {
top: -10px;
left: 10px;
font-size:5px;
}

.heading1-block1::before {
top: 10px;
left: 10px;
margin-left: 0;
font-size:15px;
}
.Guest::before {
top: 10px;
left: 10px;
margin-left: 0;
font-size:15px;
}

.initiatives::before {
top: 10px;
left: 10px;
margin-left: 0;
font-size:15px;
}

.ASSOCIATIONS::before {
top: 10px;
left: 10px;
margin-left: 0;
font-size:15px;
}

.WORKSHOPS::before {
top: 10px;
left: 10px;
margin-left: 0;
font-size:15px;
}
}

@media (max-width: 480px) {
.section1::before {
font-size:5px;
}

.heading-block::before {
font-size:15px;
}
}

.container {
position: relative;
display: flex;
justify-content: space-between;
align-items: flex-start;
max-width: 1200px;
margin: auto;
padding: 60px 20px;
z-index: 1;
gap: 30px;
}

.left {
flex: 1.2;
}

.left h3 {
color: #5aa8ff;
font-size: 18px;
margin-bottom: 10px;
}

.left h1 {
font-size: 32px;
margin: 0 0 20px;
}

.left p {
font-size: 15px;
line-height: 1.7;
margin-bottom: 15px;
}

.left a {
color: #5aa8ff;
text-decoration: none;
}

.right {
flex: 1;
display: flex;
flex-direction: column;
gap: 20px;
}

.card {
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
padding: 20px;
display: flex;
flex-direction: column;
transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
}

.card-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 10px;
}

.card-header img {
width: 40px;
height: 40px;
border-radius: 50%;
background: #fff;
object-fit: contain;
}

.card h4 {
font-size: 18px;
margin: 0;
}

.card span {
font-size: 14px;
color: #bbb;
}

.card p {
font-size: 14px;
margin: 0;
color: #ddd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.container {
flex-direction: column;
text-align: left;
}

.section1::before {
font-size: 45px;
top: 20px;
left: 10px;
}

.left h1 {
font-size: 26px;
}

.left p {
font-size: 14px;
}

.card {
padding: 15px;
}

.card h4 {
font-size: 16px;
}

.card span,
.card p {
font-size: 13px;
}
}