/*==========================================
    SCPM AYURVEDA - INNER PAGES CSS
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Jost',sans-serif;
    background:#f8f9fb;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==========================================
            PAGE BANNER
==========================================*/

.page-banner{

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../../images/banner.jpg") center center/cover no-repeat;

    padding:120px 0;

    text-align:center;

    color:#fff;

}

.page-banner h1{

    font-size:48px;

    font-weight:700;

    margin-bottom:15px;

}

.page-banner p{

    font-size:17px;

}

.page-banner a{

    color:#fff;

    text-decoration:none;

}

.page-banner span{

    color:#ffcc66;

}

/*==========================================
          PAGE CONTENT
==========================================*/

.page-content{

    padding:70px 0;

}

.content-card{

    background:#fff;

    padding:45px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.content-card h2{

    color:#9b5d00;

    font-size:34px;

    margin-bottom:20px;

}

.content-card h3{

    margin-top:30px;

    margin-bottom:15px;

    color:#222;

}

.content-card p{

    line-height:1.9;

    color:#555;

    font-size:17px;

}

.content-card ul{

    margin-top:15px;

    padding-left:25px;

}

.content-card ul li{

    margin-bottom:12px;

    line-height:1.8;

}

/*==========================================
              TABLE
==========================================*/

.table{

    width:100%;

    border-collapse:collapse;

    margin-top:25px;

}

.table thead{

    background:#9b5d00;

    color:#fff;

}

.table th{

    padding:16px;

    text-align:left;

}

.table td{

    padding:16px;

    border:1px solid #e6e6e6;

}

.table tbody tr:nth-child(even){

    background:#fafafa;

}

.table tbody tr:hover{

    background:#fff7eb;

}

/*==========================================
            BUTTON
==========================================*/

.btn{

    display:inline-block;

    padding:12px 25px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-gold{

    background:#c88719;

    color:#fff;

}

.btn-gold:hover{

    background:#9b5d00;

}

/*==========================================
         RESPONSIVE
==========================================*/

@media(max-width:992px){

.page-banner{

padding:90px 0;

}

.page-banner h1{

font-size:36px;

}

.content-card{

padding:30px;

}

}

@media(max-width:768px){

.page-banner{

padding:70px 0;

}

.page-banner h1{

font-size:28px;

}

.content-card{

padding:20px;

}

.content-card h2{

font-size:26px;

}

.table{

display:block;

overflow-x:auto;

white-space:nowrap;

}

.btn{

width:100%;

text-align:center;

}

}/*==========================================
        RESULTS PAGE
==========================================*/

.result-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top:40px;
}

.result-card h3{
    color:#9b5d00;
    margin-bottom:15px;
    font-size:28px;
}

.result-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
}

.table thead{
    background:#b36b00;
    color:#fff;
}

.table th{
    padding:16px;
    text-align:left;
    font-size:16px;
}

.table td{
    padding:16px;
    border-bottom:1px solid #eee;
    vertical-align:middle;
}

.table tbody tr{
    transition:.3s;
}

.table tbody tr:hover{
    background:#fff8ef;
}

.btn-gold{
    display:inline-block;
    background:#b36b00;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-gold:hover{
    background:#8b5200;
    transform:translateY(-2px);
}

@media(max-width:768px){

.table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

.table th,
.table td{
    font-size:14px;
    padding:12px;
}

.btn-gold{
    padding:8px 16px;
    font-size:14px;
}

}
/*==========================================
        STUDENTS LIST PAGE
==========================================*/

.students-card{
    background:#fff;
    border-radius:16px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    margin-top:40px;
}

.students-card h2{
    color:#b56a00;
    font-size:32px;
    margin-bottom:15px;
}

.students-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/* Table */

.students-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:12px;
    background:#fff;
}

.students-table thead{
    background:linear-gradient(90deg,#c87b00,#e7a221);
    color:#fff;
}

.students-table th{
    padding:18px;
    text-align:left;
    font-size:16px;
    font-weight:600;
}

.students-table td{
    padding:16px;
    border-bottom:1px solid #ececec;
    color:#444;
}

.students-table tbody tr{
    transition:.3s;
}

.students-table tbody tr:nth-child(even){
    background:#fafafa;
}

.students-table tbody tr:hover{
    background:#fff7eb;
}

/* Badge */

.session-badge{
    background:#fff2d9;
    color:#b56a00;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

/* Button */

.download-btn{
    display:inline-block;
    background:linear-gradient(135deg,#c87b00,#e19d1d);
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.download-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(200,123,0,.35);
}

/* Responsive */

@media(max-width:992px){

.students-card{
    padding:25px;
}

.students-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

}

@media(max-width:768px){

.students-card h2{
    font-size:26px;
}

.students-table th,
.students-table td{
    padding:12px;
    font-size:14px;
}

.download-btn{
    padding:8px 16px;
    font-size:14px;
}

}
/*==========================================
      RIEC PAGE
==========================================*/

.riec-card{
    background:#ffffff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    margin-bottom:40px;
}

.riec-card h2{
    font-size:34px;
    color:#9b5d00;
    margin-bottom:15px;
}

.riec-card h3{
    font-size:24px;
    color:#222;
    margin:30px 0 15px;
    padding-left:12px;
    border-left:4px solid #c88719;
}

.riec-card p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

/* Objectives */

.riec-list{
    list-style:none;
    margin-top:20px;
}

.riec-list li{
    position:relative;
    padding:12px 0 12px 35px;
    border-bottom:1px solid #eee;
    color:#444;
    line-height:1.8;
}

.riec-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:12px;
    width:22px;
    height:22px;
    background:#c88719;
    color:#fff;
    text-align:center;
    line-height:22px;
    border-radius:50%;
    font-size:12px;
}

/* Table */

.riec-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    border-radius:12px;
    overflow:hidden;
}

.riec-table thead{
    background:linear-gradient(90deg,#b56a00,#d89422);
    color:#fff;
}

.riec-table th{
    padding:16px;
    text-align:left;
}

.riec-table td{
    padding:16px;
    border-bottom:1px solid #ececec;
}

.riec-table tbody tr:nth-child(even){
    background:#fafafa;
}

.riec-table tbody tr:hover{
    background:#fff8ef;
}

/* Download Box */

.download-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    margin-top:15px;
    border:1px solid #ececec;
    border-radius:10px;
    transition:.3s;
}

.download-box:hover{
    background:#fff8ef;
    border-color:#d89422;
}

.download-box span{
    font-weight:600;
    color:#333;
}

.download-btn{
    background:#c88719;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:8px;
    transition:.3s;
    font-weight:600;
}

.download-btn:hover{
    background:#9b5d00;
}

/* Responsive */

@media(max-width:768px){

.riec-card{
    padding:25px;
}

.riec-card h2{
    font-size:28px;
}

.riec-card h3{
    font-size:20px;
}

.riec-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

.download-box{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.download-btn{
    width:100%;
    text-align:center;
}

}
/*==========================================
    SEXUAL HARASSMENT COMMITTEE
==========================================*/

.committee-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:50px;
}

.committee-card h2{
    font-size:34px;
    color:#b56a00;
    margin-bottom:20px;
}

.committee-card h3{
    margin:35px 0 15px;
    color:#222;
    border-left:5px solid #c88719;
    padding-left:12px;
}

.committee-card p{
    line-height:1.9;
    color:#555;
}

.committee-list{
    list-style:none;
    margin-top:20px;
}

.committee-list li{
    position:relative;
    padding:12px 0 12px 35px;
    border-bottom:1px solid #eee;
}

.committee-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#c88719;
    font-weight:bold;
}

.committee-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.committee-table thead{
    background:#b56a00;
    color:#fff;
}

.committee-table th,
.committee-table td{
    padding:15px;
    border:1px solid #eee;
}

.committee-table tbody tr:nth-child(even){
    background:#fafafa;
}

.committee-table tbody tr:hover{
    background:#fff8ef;
}

.download-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border:1px solid #eee;
    border-radius:10px;
    margin-top:15px;
    transition:.3s;
}

.download-box:hover{
    background:#fff8ef;
}

.download-btn{
    background:#c88719;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    transition:.3s;
    font-weight:600;
}

.download-btn:hover{
    background:#9b5d00;
}

@media(max-width:768px){

.committee-card{
    padding:25px;
}

.committee-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

.download-box{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.download-btn{
    width:100%;
    text-align:center;
}

}
/*==========================================
    RESEARCH & PUBLICATIONS
==========================================*/

.research-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:50px;
}

.research-card h2{
    font-size:34px;
    color:#b56a00;
    margin-bottom:20px;
}

.research-card h3{
    margin:35px 0 15px;
    color:#222;
    border-left:5px solid #c88719;
    padding-left:12px;
}

.research-card p{
    color:#555;
    line-height:1.9;
}

.research-list{
    list-style:none;
    margin-top:20px;
}

.research-list li{
    position:relative;
    padding:12px 0 12px 35px;
    border-bottom:1px solid #eee;
}

.research-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#c88719;
    font-weight:bold;
}

.research-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.research-table thead{
    background:#b56a00;
    color:#fff;
}

.research-table th,
.research-table td{
    padding:15px;
    border:1px solid #eee;
}

.research-table tbody tr:nth-child(even){
    background:#fafafa;
}

.research-table tbody tr:hover{
    background:#fff8ef;
}

.download-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border:1px solid #eee;
    border-radius:10px;
    margin-top:15px;
    transition:.3s;
}

.download-box:hover{
    background:#fff8ef;
}

.download-btn{
    background:#c88719;
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.download-btn:hover{
    background:#9b5d00;
}

@media(max-width:768px){

.research-card{
    padding:25px;
}

.research-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

.download-box{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.download-btn{
    width:100%;
    text-align:center;
}

}
/*==========================================
   ACHIEVEMENTS & AWARDS PAGE
==========================================*/


.achievement-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:50px;

}



.achievement-card h2{

    font-size:34px;

    color:#b56a00;

    margin-bottom:20px;

}



.achievement-card h3{

    margin:35px 0 15px;

    color:#222;

    border-left:5px solid #c88719;

    padding-left:12px;

}



.achievement-card p{

    color:#555;

    line-height:1.9;

}



/* Achievement List */


.achievement-list{

    list-style:none;

    margin-top:20px;

}



.achievement-list li{

    position:relative;

    padding:12px 0 12px 35px;

    border-bottom:1px solid #eee;

    color:#444;

}



.achievement-list li::before{

    content:"🏆";

    position:absolute;

    left:0;

}



/* Table */


.achievement-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}



.achievement-table thead{

    background:#b56a00;

    color:#fff;

}



.achievement-table th,
.achievement-table td{

    padding:15px;

    border:1px solid #eee;

}



.achievement-table tbody tr:nth-child(even){

    background:#fafafa;

}



.achievement-table tbody tr:hover{

    background:#fff8ef;

}



/* Download Box */


.download-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 20px;

    border:1px solid #eee;

    border-radius:10px;

    margin-top:15px;

    transition:.3s;

}



.download-box:hover{

    background:#fff8ef;

}



.download-btn{

    background:#c88719;

    color:#fff;

    text-decoration:none;

    padding:10px 18px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}



.download-btn:hover{

    background:#9b5d00;

}



/* Mobile */

@media(max-width:768px){


.achievement-card{

    padding:25px;

}


.achievement-card h2{

    font-size:28px;

}


.achievement-table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}


.download-box{

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}


.download-btn{

    width:100%;

    text-align:center;

}


}
/*==========================================
      CLINICAL MATERIAL PAGE
==========================================*/


.clinical-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:50px;

}



.clinical-card h2{

    font-size:34px;

    color:#b56a00;

    margin-bottom:20px;

}



.clinical-card h3{

    margin:35px 0 15px;

    color:#222;

    border-left:5px solid #c88719;

    padding-left:12px;

}



.clinical-card p{

    color:#555;

    line-height:1.9;

}



/* Clinical List */


.clinical-list{

    list-style:none;

    margin-top:20px;

}



.clinical-list li{

    position:relative;

    padding:12px 0 12px 35px;

    border-bottom:1px solid #eee;

    color:#444;

}



.clinical-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#c88719;

    font-weight:bold;

}



/* Clinical Table */


.clinical-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}



.clinical-table thead{

    background:#b56a00;

    color:#fff;

}



.clinical-table th,
.clinical-table td{

    padding:15px;

    border:1px solid #eee;

}



.clinical-table tbody tr:nth-child(even){

    background:#fafafa;

}



.clinical-table tbody tr:hover{

    background:#fff8ef;

}



/* Responsive */


@media(max-width:768px){


.clinical-card{

    padding:25px;

}


.clinical-card h2{

    font-size:28px;

}


.clinical-table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}


}/*==========================================
        COLLEGE COUNCIL PAGE
==========================================*/


.council-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:50px;

}



.council-card h2{

    font-size:34px;

    color:#b56a00;

    margin-bottom:20px;

}



.council-card h3{

    margin:35px 0 15px;

    color:#222;

    border-left:5px solid #c88719;

    padding-left:12px;

}



.council-card p{

    color:#555;

    line-height:1.9;

}



/* Council List */

.council-list{

    list-style:none;

    margin-top:20px;

}



.council-list li{

    position:relative;

    padding:12px 0 12px 35px;

    border-bottom:1px solid #eee;

    color:#444;

}



.council-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#c88719;

    font-weight:bold;

}



/* Council Table */

.council-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}



.council-table thead{

    background:#b56a00;

    color:#fff;

}



.council-table th,
.council-table td{

    padding:15px;

    border:1px solid #eee;

}



.council-table tbody tr:nth-child(even){

    background:#fafafa;

}



.council-table tbody tr:hover{

    background:#fff8ef;

}



/* Mobile */

@media(max-width:768px){


.council-card{

    padding:25px;

}


.council-card h2{

    font-size:28px;

}


.council-table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}

}/*==========================================
        TIME TABLE PAGE
==========================================*/


.timetable-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:50px;

}



.timetable-card h2{

    font-size:34px;

    color:#b56a00;

    margin-bottom:20px;

}



.timetable-card h3{

    margin:35px 0 15px;

    color:#222;

    border-left:5px solid #c88719;

    padding-left:12px;

}



.timetable-card p{

    color:#555;

    line-height:1.9;

}



/* Time Table */

.timetable-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}



.timetable-table thead{

    background:#b56a00;

    color:#fff;

}



.timetable-table th,
.timetable-table td{

    padding:15px;

    border:1px solid #eee;

}



.timetable-table tbody tr:nth-child(even){

    background:#fafafa;

}



.timetable-table tbody tr:hover{

    background:#fff8ef;

}



/* Download Section */

.download-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 20px;

    border:1px solid #eee;

    border-radius:10px;

    margin-top:15px;

    transition:.3s;

}



.download-box:hover{

    background:#fff8ef;

}



.download-btn{

    background:#c88719;

    color:#fff;

    padding:10px 18px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

}



.download-btn:hover{

    background:#9b5d00;

}



/* Mobile */

@media(max-width:768px){


.timetable-card{

    padding:25px;

}


.timetable-card h2{

    font-size:28px;

}


.timetable-table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}


.download-box{

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}


.download-btn{

    width:100%;

    text-align:center;

}

}
/*==========================================
        ACADEMIC COUNCIL PAGE
==========================================*/


.academic-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:50px;

}



.academic-card h2{

    font-size:34px;

    color:#b56a00;

    margin-bottom:20px;

}



.academic-card h3{

    margin:35px 0 15px;

    color:#222;

    border-left:5px solid #c88719;

    padding-left:12px;

}



.academic-card p{

    color:#555;

    line-height:1.9;

}



/* Academic List */

.academic-list{

    list-style:none;

    margin-top:20px;

}



.academic-list li{

    position:relative;

    padding:12px 0 12px 35px;

    border-bottom:1px solid #eee;

    color:#444;

}



.academic-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#c88719;

    font-weight:bold;

}



/* Academic Table */

.academic-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}



.academic-table thead{

    background:#b56a00;

    color:#fff;

}



.academic-table th,
.academic-table td{

    padding:15px;

    border:1px solid #eee;

}



.academic-table tbody tr:nth-child(even){

    background:#fafafa;

}



.academic-table tbody tr:hover{

    background:#fff8ef;

}



/* Mobile */

@media(max-width:768px){

.academic-card{

    padding:25px;

}

.academic-card h2{

    font-size:28px;

}


.academic-table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}

}
/*==========================================
        ANTI RAGGING PAGE
==========================================*/


.anti-ragging-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:50px;

}



.anti-ragging-card h2{

    font-size:34px;

    color:#b56a00;

    margin-bottom:20px;

}



.anti-ragging-card h3{

    margin:35px 0 15px;

    color:#222;

    border-left:5px solid #c88719;

    padding-left:12px;

}



.anti-ragging-card p{

    color:#555;

    line-height:1.9;

}



/* List */

.anti-list{

    list-style:none;

    margin-top:20px;

}



.anti-list li{

    position:relative;

    padding:12px 0 12px 35px;

    border-bottom:1px solid #eee;

    color:#444;

}



.anti-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#c88719;

    font-weight:bold;

}



/* Table */

.anti-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}



.anti-table thead{

    background:#b56a00;

    color:#fff;

}



.anti-table th,
.anti-table td{

    padding:15px;

    border:1px solid #eee;

}



.anti-table tbody tr:nth-child(even){

    background:#fafafa;

}



.anti-table tbody tr:hover{

    background:#fff8ef;

}



/* Notice Box */

.notice-box{

    background:#fff8ef;

    border-left:5px solid #c88719;

    padding:20px;

    border-radius:10px;

    margin-top:20px;

}



.notice-box p{

    margin:8px 0;

    color:#333;

}



/* Mobile */

@media(max-width:768px){

.anti-ragging-card{

    padding:25px;

}


.anti-ragging-card h2{

    font-size:28px;

}


.anti-table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}

}
/*==========================================
      MEDICAL SUPERINTENDENT PAGE
==========================================*/


.medical-card{

    background:#fff;

    padding:40px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:50px;

}


/* Profile */

.superintendent-profile{

    display:flex;

    align-items:center;

    gap:30px;

    padding-bottom:30px;

    border-bottom:1px solid #eee;

}


.profile-image img{

    width:160px;

    height:160px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #c88719;

}


.profile-info h2{

    color:#b56a00;

    font-size:32px;

    margin-bottom:10px;

}


.profile-info h3{

    font-size:24px;

    color:#222;

}



/* Heading */

.medical-card h3{

    margin:35px 0 15px;

    color:#222;

    border-left:5px solid #c88719;

    padding-left:12px;

}



.medical-card p{

    color:#555;

    line-height:1.9;

}



/* List */

.medical-list{

    list-style:none;

}



.medical-list li{

    position:relative;

    padding:12px 0 12px 35px;

    border-bottom:1px solid #eee;

}



.medical-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#c88719;

    font-weight:bold;

}



/* Table */

.medical-table{

    width:100%;

    border-collapse:collapse;

    margin-top:20px;

}



.medical-table thead{

    background:#b56a00;

    color:#fff;

}


.medical-table th,
.medical-table td{

    padding:15px;

    border:1px solid #eee;

}


.medical-table tbody tr:nth-child(even){

    background:#fafafa;

}


.medical-table tbody tr:hover{

    background:#fff8ef;

}



/* Mobile */

@media(max-width:768px){


.medical-card{

    padding:25px;

}


.superintendent-profile{

    flex-direction:column;

    text-align:center;

}


.profile-image img{

    width:130px;

    height:130px;

}


.medical-table{

    display:block;

    overflow-x:auto;

    white-space:nowrap;

}

}


/* =========================================
   BIOMETRIC ATTENDANCE DROPDOWN
========================================= */

.biometric-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.biometric-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.biometric-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 600;
    color: #241608;
    background: #fff;
}

.biometric-item summary::-webkit-details-marker {
    display: none;
}

.biometric-item summary:hover {
    background: #fff8f0;
}

.biometric-item .arrow {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.biometric-item[open] .arrow {
    transform: rotate(45deg);
}

.biometric-content {
    padding: 20px 22px 22px;
    border-top: 1px solid #eee;
    background: #fff;
}

.biometric-content h4 {
    margin: 0 0 18px;
    font-size: 16px;
    color: #241608;
}

.report-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.report-links .btn {
    text-decoration: none;
}

@media (max-width: 600px) {

    .biometric-item summary {
        padding: 16px;
        font-size: 15px;
    }

    .biometric-content {
        padding: 18px 16px 20px;
    }

    .report-links {
        flex-direction: column;
    }

    .report-links .btn {
        width: 100%;
        text-align: center;
    }

}/* Medical Superintendent Profile Image */
.superintendent-profile .profile-image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.superintendent-profile .profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}



/* Medical Superintendent Photo */
.superintendent-profile .profile-image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.superintendent-profile .profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
}
/* Medical Superintendent - Rectangle Photo */
.superintendent-profile .profile-image {
    width: 220px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
}

.superintendent-profile .profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}
/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 992px) {

    .navbar .burger {
        display: flex;
        cursor: pointer;
        z-index: 10001;
    }

    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 15px 20px 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 9999;
    }

    .navbar .nav-links.active {
        display: flex;
    }


    /* Normal menu links */
    .navbar .nav-links > a {
        display: block;
        width: 100%;
        padding: 13px 10px;
        text-decoration: none;
    }


    /* =========================================
       NCISM DROPDOWN
    ========================================= */

    .navbar .dropdown {
        position: relative;
        width: 100%;
    }

    .navbar .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 13px 10px;
        cursor: pointer;
    }

    /* Arrow */
    .navbar .dropdown-toggle::after {
        content: "▼";
        font-size: 10px;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    /* Rotate arrow when open */
    .navbar .dropdown-menu.show + * {
        transform: rotate(180deg);
    }


    /* Dropdown hidden */
    .navbar .dropdown-menu {
        display: none;
        position: static !important;
        width: 100%;
        min-width: 100%;
        background: #f8f8f8;
        box-shadow: none;
        border: 0;
        padding: 5px 0 5px 12px;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }


    /* Dropdown OPEN */
    .navbar .dropdown-menu.show {
        display: block !important;
    }


    /* Dropdown links */
    .navbar .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 11px 12px;
        font-size: 14px;
        line-height: 1.4;
        text-decoration: none;
        white-space: normal;
    }


    /* Mobile CTA */
    .navbar .nav-cta {
        display: none;
    }

}


@media (max-width: 992px) {

    .nav-links .dropdown {
        width: 100%;
        display: block;
        position: relative;
    }

    .nav-links .dropdown-toggle {
        display: block;
        width: 100%;
        padding: 14px 10px;
        cursor: pointer;
    }

    .nav-links .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;

        padding: 5px 0 5px 15px !important;
        margin: 0 !important;

        background: #f7f7f7 !important;

        box-shadow: none !important;
        border: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .nav-links .dropdown-menu.show {
        display: block !important;
    }

    .nav-links .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        padding: 11px 10px !important;
        white-space: normal !important;
    }

}

@media (max-width: 992px) {

    .nav-links .dropdown {
        width: 100% !important;
        position: relative !important;
    }

    .nav-links .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100% !important;
        cursor: pointer;
        padding: 14px 10px !important;
    }

    .nav-links .dropdown-toggle::after {
        content: "▼";
        font-size: 9px;
        margin-left: 8px;
    }

    .nav-links .dropdown-menu {
        display: none !important;

        position: static !important;
        width: 100% !important;
        min-width: 100% !important;

        max-height: none !important;
        overflow: visible !important;

        padding: 5px 0 5px 15px !important;
        margin: 0 !important;

        background: #f7f7f7 !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        box-shadow: none !important;
    }

    .nav-links .dropdown-menu.show {
        display: block !important;
    }

    .nav-links .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        padding: 11px 10px !important;
    }
}



/* =========================================================
   CLINICAL MATERIAL — PREMIUM DESIGN
   SCPM College of Ayurveda
   ========================================================= */

.clinical-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,193,7,.10), transparent 28%),
        linear-gradient(145deg, #fffdf9 0%, #fff8ed 100%);
    border: 1px solid rgba(197, 125, 32, .18);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 55px);
    box-shadow:
        0 20px 60px rgba(58, 32, 10, .10),
        0 4px 16px rgba(58, 32, 10, .05);
}

/* Decorative glow */
.clinical-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -150px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255, 193, 7, .08);
    pointer-events: none;
}

.clinical-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -80px;
    border-radius: 50%;
    background: rgba(255, 103, 31, .05);
    pointer-events: none;
}


/* =========================================================
   INTRO
   ========================================================= */

.clinical-card > h2 {
    position: relative;
    margin: 0 0 18px;
    color: #241608;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.5px;
}

.clinical-card > h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 14px;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff671f, #ffc107);
}

.clinical-card > p {
    position: relative;
    max-width: 950px;
    margin: 0 0 45px;
    color: #68594c;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.clinical-card h3 {
    position: relative;
    margin: 50px 0 22px;
    padding-left: 18px;
    color: #241608;
    font-size: clamp(21px, 2.5vw, 29px);
    font-weight: 700;
    line-height: 1.3;
}

.clinical-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: calc(100% - 10px);
    border-radius: 10px;
    background: linear-gradient(
        to bottom,
        #ff671f,
        #ffc107
    );
}

.clinical-card h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 9px;
    background: #e7a629;
    opacity: .7;
}


/* =========================================================
   CLINICAL FACILITIES LIST
   ========================================================= */

.clinical-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.clinical-list li {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 14px 18px 14px 52px;
    color: #4d4035;
    font-size: 15px;
    line-height: 1.6;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(197,125,32,.12);
    border-radius: 14px;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.clinical-list li::before {
    content: "✓";
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #ff671f, #e68a00);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.clinical-list li:hover {
    transform: translateY(-3px);
    border-color: rgba(255,103,31,.28);
    box-shadow: 0 12px 28px rgba(58,32,10,.08);
}


/* =========================================================
   EQUIPMENT GRID
   ========================================================= */

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.equipment-item {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 15px 15px 15px 43px;
    color: #46392e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(197,125,32,.13);
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(58,32,10,.035);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.equipment-item::before {
    content: "";
    position: absolute;
    left: 15px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff671f;
    box-shadow:
        0 0 0 5px rgba(255,103,31,.09),
        0 0 0 1px rgba(255,103,31,.15);
}

.equipment-item:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(255,103,31,.28);
    box-shadow: 0 14px 30px rgba(58,32,10,.09);
}

.equipment-item:hover::before {
    background: #ffc107;
}


/* =========================================================
   DEPARTMENT GRID
   ========================================================= */

.clinical-department-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.department-item {
    position: relative;
    min-height: 150px;
    padding: 25px 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(
            145deg,
            #fff,
            #fff8ed
        );
    border: 1px solid rgba(197,125,32,.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(58,32,10,.055);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.department-item::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -35px;
    top: -35px;
    border-radius: 50%;
    background: rgba(255,193,7,.09);
    transition: transform .4s ease;
}

.department-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #ff671f,
        #ffc107
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.department-item:hover {
    transform: translateY(-7px);
    border-color: rgba(255,103,31,.25);
    box-shadow: 0 18px 40px rgba(58,32,10,.10);
}

.department-item:hover::before {
    transform: scale(1.25);
}

.department-item:hover::after {
    transform: scaleX(1);
}

.department-item span {
    position: absolute;
    top: 18px;
    left: 20px;
    color: rgba(197,125,32,.5);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.department-item h4 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #2b1a0e;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   CLINICAL TRAINING
   ========================================================= */

.clinical-card .clinical-list:last-child {
    margin-bottom: 10px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .equipment-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clinical-department-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .clinical-card {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .clinical-card > h2 {
        font-size: 30px;
    }

    .clinical-card > p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 32px;
    }

    .clinical-card h3 {
        margin-top: 38px;
        font-size: 22px;
    }

    .clinical-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .clinical-list li {
        font-size: 14px;
        min-height: 54px;
        padding-left: 48px;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .equipment-item {
        min-height: 68px;
        padding: 13px 12px 13px 37px;
        font-size: 13px;
    }

    .equipment-item::before {
        left: 12px;
        width: 9px;
        height: 9px;
    }

    .clinical-department-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .department-item {
        min-height: 125px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .clinical-card {
        padding: 22px 14px;
        border-radius: 18px;
    }

    .clinical-card > h2 {
        font-size: 27px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-item {
        min-height: 58px;
    }

    .department-item {
        min-height: 115px;
        padding: 22px 18px;
    }

}


/* =========================================================
   RESEARCH & PUBLICATIONS
========================================================= */

.research-card {
    position: relative;
    overflow: hidden;
}

.research-heading {
    max-width: 850px;
    margin-bottom: 35px;
}

.research-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c77700;
    margin-bottom: 10px;
}

.research-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.research-heading h2 span {
    color: #c77700;
}

.research-heading p {
    margin: 0;
    line-height: 1.8;
    color: #666;
}


/* =========================================================
   STATS
========================================================= */

.research-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 35px 0 45px;
}

.research-stat {
    padding: 25px;
    border: 1px solid rgba(199,119,0,.18);
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,.95),
        rgba(255,248,235,.8)
    );
}

.research-stat strong {
    display: block;
    font-size: 28px;
    color: #c77700;
    margin-bottom: 5px;
}

.research-stat span {
    font-size: 13px;
    color: #777;
}


/* =========================================================
   OBJECTIVES
========================================================= */

.research-objectives {
    margin-bottom: 50px;
}

.research-objectives h3,
.research-publication-heading h3 {
    margin-bottom: 22px;
}

.research-objective-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.research-objective {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #eee;
    transition: .3s ease;
}

.research-objective:hover {
    transform: translateY(-3px);
    border-color: rgba(199,119,0,.3);
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.research-objective > span {
    font-size: 13px;
    font-weight: 800;
    color: #c77700;
}

.research-objective h4 {
    margin: 0 0 6px;
}

.research-objective p {
    margin: 0;
    color: #777;
    line-height: 1.6;
    font-size: 14px;
}


/* =========================================================
   PUBLICATION HEADER
========================================================= */

.research-publications {
    margin-top: 45px;
}

.research-publication-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.research-publication-heading h3 {
    margin: 0;
}

.research-count {
    padding: 8px 14px;
    border-radius: 30px;
    background: #fff4df;
    color: #a76300;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   RESEARCH LIST
========================================================= */

.research-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.research-item {
    display: grid;
    grid-template-columns: 45px 55px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
    transition: .3s ease;
}

.research-item:hover {
    transform: translateX(4px);
    border-color: rgba(199,119,0,.35);
    box-shadow: 0 12px 28px rgba(0,0,0,.07);
}

.research-item-number {
    font-size: 14px;
    font-weight: 800;
    color: #c77700;
}

.research-item-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff3df;
    color: #b56b00;
    font-size: 10px;
    font-weight: 900;
}

.research-item-content {
    min-width: 0;
}

.research-category {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a96a14;
}

.research-item-content h4 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.45;
}

.research-year {
    font-size: 12px;
    color: #888;
}

.research-item-action {
    flex-shrink: 0;
}

.research-item-action .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.research-item-action .download-btn span {
    font-size: 15px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .research-stats {
        grid-template-columns: 1fr;
    }

    .research-objective-grid {
        grid-template-columns: 1fr;
    }

    .research-publication-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .research-item {
        grid-template-columns: 38px 48px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .research-item-icon {
        width: 42px;
        height: 42px;
    }

    .research-item-action {
        grid-column: 3;
    }

    .research-item-action .download-btn {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   CAMPUS LIFE
========================================================= */

.campus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.campus-card {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    overflow: hidden;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    background:
        linear-gradient(
            135deg,
            #8b4b16,
            #d87900
        );
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 35px rgba(36,22,8,.12);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.campus-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(20,10,3,.85),
            rgba(20,10,3,.05)
        );
    transition: background .4s ease;
}

.campus-card span,
.campus-card small {
    position: relative;
    z-index: 2;
}

.campus-card span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .2px;
}

.campus-card small {
    position: absolute;
    right: 20px;
    bottom: 22px;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(8px);
    font-size: 11px;
}

.campus-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(36,22,8,.2);
}

.campus-card:hover .campus-card-overlay {
    background:
        linear-gradient(
            to top,
            rgba(20,10,3,.92),
            rgba(20,10,3,.15)
        );
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campus-card {
        min-height: 200px;
    }

}

@media (max-width: 520px) {

    .campus-grid {
        grid-template-columns: 1fr;
    }

    .campus-card {
        min-height: 190px;
    }

}


.contact-map {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 35px rgba(0,0,0,.10);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.contact-info > div {
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
}

.contact-info .l {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  opacity: .65;
}

.contact-info .v {
  font-size: 16px;
  font-weight: 600;
}

.contact-info .v a {
  color: inherit;
  text-decoration: none;
}

.contact-info .v a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .contact-map {
    height: 300px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

}


/* ==========================================
   NCISM DROPDOWN
========================================== */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

.dropdown-arrow {
    margin-left: 5px;
    font-size: 13px;
    transition: transform .3s ease;
}

.dropdown-menu {
    display: none;
}

.dropdown-menu.show {
    display: block;
}


/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 993px) {

    .dropdown:hover .dropdown-menu,
    .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        min-width: 280px;
        max-height: 70vh;
        overflow-y: auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,.18);
        padding: 10px 0;
        z-index: 9999;
    }

    .dropdown-menu a {
        display: block;
        padding: 11px 18px;
        color: #241608;
        text-decoration: none;
        line-height: 1.35;
    }

    .dropdown-menu a:hover {
        background: #fff4e8;
        color: var(--primary);
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 992px) {

    .nav-links {
        overflow-y: auto;
        overflow-x: hidden;
        max-height: calc(100vh - 80px);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 14px 20px;
        color: inherit;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-height: none;
        overflow: visible;
        background: rgba(0,0,0,.04);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 12px 30px;
        font-size: 14px;
        line-height: 1.4;
    }

    .dropdown-menu a:hover {
        background: rgba(255,153,51,.10);
    }

}
/* NCISM Mandate - Navbar Matching */
.navbar .dropdown > a,
.navbar .dropdown-toggle,
.navbar .dropdown > a span {
    color: #fff !important;
    font-weight: 600;
}

/* Dropdown arrow */
.navbar .dropdown > a::after,
.navbar .dropdown-toggle::after {
    color: #fff !important;
    border-top-color: #fff !important;
}

/* Hover / Active */
.navbar .dropdown > a:hover,
.navbar .dropdown > a:focus,
.navbar .dropdown:hover > a {
    color: #FFC107 !important;
}

/* Arrow on hover */
.navbar .dropdown > a:hover::after,
.navbar .dropdown:hover > a::after {
    border-top-color: #FFC107 !important;
}



.badge-360 {
    background: linear-gradient(135deg, #e53935, #b71c1c) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, .35) !important;
    box-shadow: 0 8px 22px rgba(183, 28, 28, .30) !important;
}

.badge-360:hover {
    background: linear-gradient(135deg, #ef5350, #c62828) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(183, 28, 28, .45) !important;
}