body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
}

.fac-wrapper {
  max-width: 850px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.fac-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 2px solid #2aa7a1;   /* teal border */
  border-radius: 10px;
  background: #fff;
}

.fac-card img {
  /*width: 70px;
  height: 80px;*/
  object-fit: cover;
  border-radius: 4px;
}

.name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 1100px) {
  .faculty-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .faculty-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .faculty-wrapper {
    grid-template-columns: 1fr;
  }
}
/* background strips */
.strip1{background:#f6ecdd;}
.strip2{background:#eef3da;}
.strip3{background:#fdeedb;}

.section{
    max-width: 800px;
    padding:5px 60px;
	margin-left:10px;
}

/* profile box */
.profile{
    display:flex;
    align-items:center;
    gap:50px;
}

.profile.reverse{
    flex-direction:row-reverse;
}

.photo{
    width:160px;
    height:190px;
    border:2px solid #333;
    border-radius:18px;
    background:#ddd;
}

/* text styling */
.text{
    max-width:520px;
}

.name{
    font-weight:bold;
    font-size:17px;
}

.desc{
    font-size:14px;
    line-height:1.4;
}

/* Editorial Desk label */
.editorial-title{
    font-size:20px;	
    font-weight:bold;	
    text-align:center;
    margin:20px 0;
}

.editorial-title span{
    background:#79c8d6;
    padding:6px 20px;
    border-radius:16px;
    font-size:14px;
}

/* editorial profiles */
.editorial-row{
    display:flex;
    justify-content:center;
    gap:160px;
    padding-top:10px;
}

.editorial-card{
    text-align:center;
}

.editorial-card .photo{
	margin-left:40px;
    width:140px;
    height:170px;
}

.editorial-card .name{
    margin-top:8px;
}

/* spacing like image */
.top-space{padding-top:20px;}
.bottom-space{padding-bottom:25px;}

.banner{
    padding:0px 0 10px;
	justify-content:center;
}

.main-title{
    font-size:50px;
    font-weight:900;
    letter-spacing:4px;
    color:#e07b2c;
    text-transform:uppercase;
   text-align:center;
    /* white outline effect */
    text-shadow:
        3px 0 white,
       -3px 0 white,
        0 3px white,
        0 -3px white,
        2px 2px white,
       -2px 2px white,
        2px -2px white,
       -2px -2px white;
}

.subtitle{
    margin-top:8px;
    font-size:26px;
    color:#f09a4d;
    font-weight:600;
	text-align:center;
}
    /* Header */
    .top-line {
		width:900;
        height: 3px;
        background: #00a0c6;
        margin-bottom: 10px;
		text-align:center;
    }

    .title-badge {
        display: inline-block;
        background: #00a0c6;
        color: #fff;
        padding: 4px 16px;
        border-radius: 20px;
        font-weight: 600;
        margin-bottom: 2px;
		text-align:center;
		margin-left: 275px;
    }

    .sub-title {
        color: #e53935;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 5px 0 4px;
        font-size: 14px;
		text-align:center;
    }
	
    .sub-title1 {
        background: pink;		
        color: #1565c0;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 5px 0 4px;
        font-size: 14px;
		text-align:left;
        line-height: 2.5;		
    }	
    .ise-title {
        background: orange;		
        color: blue;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 5px 0 4px;
        font-size: 18px;
		text-align:center;
        line-height: 2.5;
		font-family:'cambria';		
    }	
    .ise-title1 {
        /*background: white;		*/
        color: blue;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 5px 0 4px;
        font-size: 22px;
		text-align:center;
        line-height: 2.5;
		font-family:'cambria';		
    }		
    .series-title {
        display: inline-block;
        background: #ffcc80;
        padding: 4px 14px;
        border-radius: 6px;
        font-weight: 700;
        color: #c62828;
        margin-bottom: 12px;
        font-size: 13px;
		text-align:center;
    }

    /* Description box */
    .description {
        background: #3f2ea8;
        color: #fff;
        border-radius: 40px;
        padding: 18px 28px;
        font-size: 14px;
        line-height: 1.5;
        max-width: 1050px;
        margin: 0 auto 30px;
    }

    /* Talks grid */
    .talks-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 26px 20px;
    }

    @media (max-width: 1000px) {
        .talks-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .talks-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Talk card */
    .talk-card {
        position: relative;
        padding-top: 14px;
    }

    .date-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: #f57c00;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 12px;
    }

    .photo-frame {
        width: 140px;
        height: 190px;
        margin: 0 auto 6px;
        border-radius: 80px 80px 20px 20px;
        overflow: hidden;
        background: #ddd;
        border: 2px solid #333;
    }

    .photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .talk-no {
        color: #6a1b9a;
        font-weight: 700;
        font-size: 13px;
        margin: 6px 0 4px;
    }

    .speaker {
        font-size: 13px;
        font-weight: 700;
        color: #1565c0;
		margin-left:10px;
    }

    .details {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 3px;
		text-align:center;		
    }

    .details span {
        font-weight: 700;
    }
	
	/* bbw */
    .hwe-container {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 25px;
    }

    .hwe-card {
        width: 520px;
        background: #1e9bd7;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .hwe-card-header {
        background: #ffd400;
        color: red;
        font-weight: bold;
        padding: 6px 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
    }

    .hwe-card-header span {
        font-size: 13px;
        font-weight: bold;
		color:#1565c0;
    }

    .hwe-image-box {
        position: relative;
    }

    .hwe-image-box img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hwe-image-caption {
        position: absolute;
        bottom: 6px;
        width: 100%;
        text-align: center;
        color: #ffffff;
        font-size: 13px;
        font-weight: bold;
        text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    }

    .hwe-card-content {
        padding: 12px 15px 16px;
        color: #ffffff;
        font-size: 12px;
        line-height: 1.2;
        text-align: justify;
    }

    .hwe-center-text {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 20px;
        font-weight: bold;
        color: #ff0066;
        display: flex;
        align-items: center;
        justify-content: center;
    }
	.roll{
        width:30%;
        font-size: 12px;
        line-height: 1.2;		
    }

    .name{
        font-size: 12px;
        line-height: 1.2;		
        width:70%;
    }

/* Top Section */
.evstop-section{
    display:flex;
}

/* Left Yellow Curve */
.evsleft-curve{
    width:340px;
    background:linear-gradient(135deg,#f9d976,#f39c12);
    padding:40px;
    color:#8b0000;
    position:relative;
    border-bottom-right-radius:150px;
    border-top-left-radius:150px;	
	height: 130px;	
}

.evsleft-curve h2{
	font-weight:700;
    text-align:center;
    margin-top:5px;
    font-size:20px;
    color:#c00000;
}

.evsleft-curve p{
    font-size:13px;
    line-height:1.3;
    text-align:justify;
    color:#000;
	margin-left:0px;
}

/* Right Green Box */
.evsright-box{
    width:348px;
    background:#2e7d32;
    color:#ffffff;
    padding:5px;
	height: 200px;	
}

.evsright-box h2{
    font-size:20px;	
    margin-top:5px;
    color:#ffeb3b;
}

.evsright-box p{
    font-size:13px;
    line-height:1.3;
    text-align:justify;	
	margin-left:3px;
	margin-right:3px;
}

/* Blue Section */
.evsblue-section{
    width:698px;	
    background:#3f51b5;
    color:#ffffff;
    padding:15px 40px;
}

.evsblue-section h3{
    margin-top:0;
    margin-left:40px;	
    background:white;
    display:inline-block;
    padding:5px 25px;
    border-radius:20px;
    color:red;
}

.evsblue-section p{
    margin-top:3px;	
    font-size:13px;
    line-height:1.3;
    text-align:justify;	
}

/* Bottom Section */
.evsbottom-section{
    width:768px;	
    display:flex;
    background:#f57c00;
    color:#ffffff;
    padding:5px;
    border-bottom-left-radius:100px;
    border-bottom-right-radius:100px;	
}

.evsbottom-left{
    width:400px;
}

.evsbottom-left h3{
    background:#ffffff;
    color:#d84315;
    display:inline-block;
    padding:5px 15px;
    border-radius:20px;
}

.evsbottom-left p{
	margin-top:5px;
	margin-right:15px;
	margin-left:25px;	
    line-height:1.3;
    font-size:13px;
    text-align:justify;		
}

.evsbottom-right{
    width:400px;
    text-align:center;
}

.evsbottom-right img{
    width:95%;
    border-radius:10px;
}

.evscaption{
    width:300px;	
    font-size:14px;
    margin-top:8px;
    margin-Left:5px;	
    color:#000;
    background:#f57c00;
    padding:5px;
}

/* ====== TOP HEADER SECTION ====== */
.apheader-section{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:20px 10px;
}

.aptitle-box{
    background:#0f7fa6;
    color:#fff;
    padding:10px 20px;
    font-size:14px;
    font-weight:bold;
    border-radius:4px;
    width:300px;
    border-top-left-radius:100px;
    border-bottom-right-radius:100px;	
}

.apdescription{
    margin-top:15px;
    font-size:13px;
    line-height:1.3;
    max-width:350px;
    text-align:justify;
}

.apgroup-photo{
    text-align:center;
}

.apgroup-photo img{
    /*width:420px;
    height:260px;*/
    object-fit:cover;
    border-radius:6px;
    box-shadow:0 3px 8px rgba(0,0,0,0.3);
}

.apcaption{
    font-style:italic;
    font-size:13px;
    margin-top:5px;
}

/* ====== PURPLE SECTION TITLE ====== */
.apsection-title{
    width:760px;	
    background:#a3218e;
    color:#fff;
    text-align:center;
    padding:8px;
    font-size:20px;
    font-weight:bold;
    margin-top:5px;
}

/* ====== TOPPERS SECTION ====== */
.aptoppers{
    display:flex;
    justify-content:space-around;
    padding:2px;
    text-align:center;
}

.aptopper-box{
    width:280px;
}

.aptopper-box img{
    /*width:120px;
    height:150px;*/
    border:2px solid #000;
    border-radius:8px;
}

.aptopper-name{
	width:200px;
    margin-top:8px;
    /*background: #66CCFF; /*#7dd1e3;*/
    display:inline-block;
    padding:3px 8px;
    font-size:14px;
    border-radius:4px;
}

    /* Top Title Badge */
    .title-badge{
        text-align:center;
        margin-bottom:10px;
        position:relative;
    }

    .title-badge span{
        background:#1f93c6;
        color:#fff;
        padding:5px 5px;
        border-radius:25px;
        font-size:18px;
        font-weight:bold;
        display:inline-block;
        position:relative;
    }

    .title-badge span::before,
    .title-badge span::after{
        content:"";
        width:14px;
        height:14px;
        background:#1f93c6;
        border-radius:50%;
        position:absolute;
        top:50%;
        transform:translateY(-50%);
    }

    .title-badge span::before{
        left:-10px;
    }

    .title-badge span::after{
        right:-10px;
    }

    /* Image Section */
    .image-row{
        display:flex;
        justify-content:space-between;
        gap:30px;
    }

    .image-box{
        /*width:50%;*/
        text-align:center;
    }

    .image-box img{
        width:339px;
        height:331px;
        object-fit:cover;
        border:5px solid #f4e48c;
    }

    /* Bottom Captions */
    .bottom-text{
        margin-top:5px;
        font-size:13px;
        color:#000;
        display:flex;
        justify-content:space-between;
    }

    .bottom-text div{
        width:50%;
        text-align:center;
    }
	
	/* Main Container */
.ncc-container{
    width: 760px;
    margin: 30px auto;
    display: flex;
    align-items: center;
}

/* Left Rounded Circle Section */
.ncc-left{
    background: #f57c00;
    width: 180px;
    height: 120px;
    border-radius: 100px 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffeb3b;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
	font-family: "Georgia", serif;	
}

/* Right Content Section */
.ncc-right{
    background: #f57c00;
    padding: 10px 15px;
    color: white;
    font-size: 13px;
    line-height: 1.3;
    text-align: justify;
    flex: 1;
	font-family: "Georgia", serif;	
}
.alumni-badge-title {
		width: 780px;
        display: inline-block;
        padding: 10px 30px;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff;
        background: #990099; /* linear-gradient(90deg, #ff4f9a, #7b3fe4);*/
        border-radius: 25px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

    .arrow-list{
        list-style: none;
        max-width: 900px;
        padding: 20px;
    }

    .arrow-list li{
        position: relative;
        padding-left: 35px;
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.6;
    }

    .arrow-list li::before{
        content: "➜";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 18px;
    }
	
	
