h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#contactbg {
    padding-top: 100px;
    /*margin-top:110px;*/
    margin-top: 163px;
    color: #fff;
    background-image: url("../academics/images/School_of_Agriculture-Header.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 350px;
    display: block;
}

#contactbg h1 {

    display: block;
}
.headertext {
    margin-top: 120px;
    text-shadow: 2px 3px 3px #000000;
}



.headertext {
    padding: 60px 0px 0px 60px;
    font-size: 45px;
}
@media (min-width: 769px) and (max-width: 950px) {
    #contactbg h1 {
        display: none;
    }

    #contactbg {
        margin-top: -80px;
        background-repeat: no-repeat;
        background-size: 100%;
        /* //height:250px;
	//border:solid red 1px; */
        position: static;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #contactbg h1 {
        display: none;
    }

    #contactbg {
        margin-top: -80px;
        background-repeat: no-repeat;
        background-size: 100%;
        height: 200px;
        /* //border:solid red 1px; */
        position: static;
    }
}

@media (min-width: 280px) and (max-width: 576px) {
    #contactbg {
        margin-top: -45px;
        background-repeat: no-repeat;
        background-size: 100%;
        height: 150px;
        /* //border:solid red 1px; */
    }

    .headertext {
        padding: 0px 0px 0px 0px;
        font-size: 20px;
        margin-top: -10px;
    }
    .container {
        width: 100%;
        padding: 0px;
        margin: 0px;
    }

}


.paddingtopbottom{
	padding-top:40px;
	padding-bottom:40px;
}

        :root {
            --primary: #2d4697;
            --secondary: #1e3c9e;
            --accent: #f4a261;
            --accent-green: #52b788;
            --light-bg: #f8f9fa;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --radius: 14px;
            --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
            --shadow-lg: 0 18px 45px rgba(0,0,0,0.12);
        }

    
        /* ================= SECTION TITLES ================= */
        .section-title {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }


        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .phd-section .section-title {
            color: #fff;
        }

        /* .phd-section .section-title::after {
            background-color: var(--accent);
        } */

        /* ================= PROGRAM CARDS ================= */
        .program-card {
            border-radius: var(--radius);
            overflow: hidden;
            border: none;
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            height: 100%;
            margin-bottom: 2rem;
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .program-card-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1.5rem;
            font-weight: 700;
            /* font-size: 1.4rem; */
            position: relative;
            overflow: hidden;
        }

        .program-card-header::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 70px;
            height: 70px;
            background: rgba(255,255,255,0.15);
            border-radius: 0 0 0 100%;
        }

        .program-card-body {
            padding: 1.8rem;
        }

        /* ================= SCIENCE LIST ================= */
        .science-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .science-list li {
            padding: 0.9rem 0;
            padding-left: 2.2rem;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            font-weight: 500;
            position: relative;
        }

        .science-list li:last-child {
            border-bottom: none;
        }

        .science-list li::before {
            content: '🌾';
            position: absolute;
            left: 0;
            font-size: 1.1rem;
        }

        .science-list li.agri::before { content: '🌱'; }
        .science-list li.hort::before { content: '🍎'; }
        .science-list li.biotech::before { content: '🧬'; }
        .science-list li.soil::before { content: '🌍'; }
        .science-list li.ent::before { content: '🐛'; }
        .science-list li.food::before { content: '🍲'; }
        .science-list li.forest::before { content: '🌳'; }
        .science-list li.agribiz::before { content: '📊'; }
/* ================= VISION | MISSION | CORE VALUES SECTION ================= */
.vision-mission-section {
    padding: 2rem 0;
    background: white;
}

.vision-card {
    background: #e9ebf3;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    text-align: center;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.vision-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    text-align: left;
}

.mission-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}

.mission-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-card {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .vision-card h3 {
        font-size: 1.1rem;
    }
    
    .vision-card p,
    .mission-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .vision-card {
        min-height: auto;
    }
}


        
/* ================= INFRASTRUCTURE CARD ================= */
.infrastructure-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    padding: 2rem 0;
}

.infrastructure-title {
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.infra-card {
    background: #e9ebf3;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.infra-icon {
    width: 70px;
    height: 70px;
    background: #2d4697;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.infra-card:hover .infra-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.infra-card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    transition: color 0.3s ease;
    font-size: 1.25rem;
}

.infra-card-text {
    color: #6c6f78;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ================= RESEARCH CARD ================= */
.research-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    padding: 2rem 0;
}

.research-title {
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.research-card {
    background: #e9ebf3;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.research-icon {
    width: 70px;
    height: 70px;
    background: #2d4697;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.research-card:hover .research-icon {
    background: var(--accent);
    transform: scale(1.05);
}

.research-card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    transition: color 0.3s ease;
    font-size: 1.25rem;
}

.research-card ul {
    padding-left: 1.2rem;
    margin: 0;
    flex: 1;
}

.research-card li {
    color: #6c6f78;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for both card types */
@media (max-width: 768px) {
    .infra-card, .research-card {
        padding: 1.5rem;
        min-height: 240px;
    }
    
    .infra-icon, .research-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .infra-card-title, .research-card-title {
        font-size: 1.1rem;
    }
    
    .infra-card-text, .research-card li {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .infra-card, .research-card {
        min-height: auto;
    }
}
/* ================= WHY CHOOSE SECTION ================= */
.why-choose-section {
    padding: 2rem 0;
    background: white;
}

.reason-card {
    background: #e3e3e3;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 70, 151, 0.1);
}

.reason-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.reason-card:hover:before {
    width: 6px;
}



.reason-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.reason-card p {
    color: var(--text-light);
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.badge-new {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Grid spacing for g-4 class */
.row.g-4 {
    margin-right: -1rem;
    margin-left: -1rem;
}

.row.g-4 > [class*="col-"] {
    padding-right: 1rem;
    padding-left: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reason-card {
        padding: 1.5rem;
        min-height: 240px;
    }
    
    .reason-card h3 {
        font-size: 1.1rem;
    }
    
    .reason-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 1rem 0;
    }
    
    .reason-card {
        min-height: auto;
    }
}
     /* ================= HIGHLIGHT CARD ================= */
        .highlight-card {
            background-color: var(--light-bg);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            border-top: 5px solid var(--primary);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            height: 100%;
            /* min-height: 280px; */
            display: flex;
            flex-direction: column;
           
        }

        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .highlight-card i {
            color: var(--accent);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .highlight-card h4 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }

        .highlight-card p, 
        .highlight-card ul {
            flex: 1;
            margin-bottom: 0;
        }
        
        .highlight-card ul {
            padding-left: 1.2rem;
        }
        
        .highlight-card li {
            margin-bottom: 0.5rem;
        }


    /* Career Opportunities */
    .career-section {
 
        background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    }
    
    .career-title {
        font-weight: 700;
        color: #1a1a2e;
        position: relative;
        display: inline-block;
        margin-bottom: 2rem;
    }
    
    .career-card {
        background: #e9ebf3;
        border-radius: 16px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 5px 3px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0,0,0,0.05);
        cursor: pointer;
        position: relative;
        overflow: hidden;
         margin-bottom:30px;
    }
    
    .career-icon {
        width: 70px;
        height: 70px;
        background: #2d4697;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
       
        transition: all 0.3s ease;
       
    }
    
    .career-card:hover {
          transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
    }
    
    .career-card-title {
       
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: #1a1a2e;
        transition: color 0.3s ease;
    }
    
  
    .career-card-text {
        color: #6c6f78;
        line-height: 1.6;
        margin: 0;
       
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .career-section {
            padding: 3rem 0;
        }
        
        .career-title {
            font-size: 2rem;
        }
        
        .career-card {
            padding: 1.5rem;
        }
        
        .career-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
        
        .career-card-title {
            font-size: 1.1rem;
        }
        
        .career-card-text {
            font-size: 0.85rem;
        }
    }
    
    @media (max-width: 576px) {
        .career-section {
            padding: 2rem 0;
        }
        
        .career-title {
            font-size: 1.75rem;
        }
    }


        /* ================= STATS ================= */
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 3rem 0;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6d9 100%);
            border-radius: var(--radius);
            padding: 2.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            flex: 1;
            min-width: 200px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            /* font-size: 1.1rem; */
            font-weight: 500;
        }

        /* ================= SCIENCE ICON ================= */
        .science-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            /* font-size: 1.8rem; */
            margin: 0 auto 1.2rem;
        }

        /* ================= BADGE ================= */
        .badge-new {
            background: linear-gradient(135deg, var(--accent), #e9c46a);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            /* font-size: 0.7rem; */
            font-weight: 600;
            margin-left: 0.5rem;
        }

        /* ================= PHD SECTION ================= */
        .phd-section {
            background: #df9d00;
            color: white;
            border-radius: var(--radius);
            padding: 3rem;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        .phd-section::before {
            content: '🌾';
            position: absolute;
            bottom: -30px;
            right: -30px;
            /* font-size: 180px; */
            opacity: 0.08;
            pointer-events: none;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .feature-list li {
            padding: 0.8rem 0 0.8rem 2rem;
            position: relative;
        }

        .feature-list li::before {
            content: '🌿';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }

            .hero-section .lead {
                font-size: 1rem;
            }

            .hero-section {
                padding: 80px 0;
            }

            .stat-item {
                min-width: 150px;
            }

            .phd-section {
                padding: 2rem 1.5rem;
            }

            .highlight-card {
                padding: 1.5rem;
            }

            .section-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .stat-number {
                font-size: 2rem;
            }
            
            .program-card-header {
                font-size: 1.2rem;
                padding: 1rem;
            }
        }

        /* Additional Styles */
        .mt-4 {
            margin-top: 1.5rem;
        }

        .mb-5 {
            margin-bottom: 3rem;
        }

        .py-5 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .text-center {
            text-align: center;
        }

        .text-muted {
            color: var(--text-light);
        }
/* syllabus section */

#SYLLABUS {
    background: linear-gradient(135deg, #2d4697, #1a295e);
    color: #ffffff;
    padding: 40px 0px;

}

/* Paragraph box */
.syllabus-box {
    max-width: 1150px;
    margin: 0 auto;
    text-align: justify;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

#SYLLABUS p {
    font-size: 14px;
    line-height: 1.8;

}

/* Button styling */
.syllabus-btn {
    display: inline-block;
    margin-top: 40px;
    background-color: #df9d0d;
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.syllabus-btn:hover {
    background-color: #fff;
    color: #2d4697;
    text-decoration: none;
    transform: scale(1.05);
}

.syllabus-btn i {
    margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .syllabus-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    #SYLLABUS {
        padding: 60px 15px;
    }

    #SYLLABUS p {
        font-size: 14px;
    }

    .syllabus-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    #SYLLABUS h1 {
        font-size: 26px;
    }

    .syllabus-box {
        padding: 25px;
    }
}




@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}
.divsection-inner {
    background-color: #2d4697;
    border: 0;
    border-radius: 0;
    margin-bottom: 0px;
    position: fixed;
    margin-top:172px; 
    width: 100%;
    z-index: 1;
}
@media (min-width: 769px) and (max-width: 950px) {

    .divsection-inner {
        display: flex;
        position: absolute;
        margin-top: 230px;
        z-index: 0;
        /* //border:solid yellow 1px; */
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .divsection-inner {
        display: flex;
        position: absolute;
        margin-top: 200px;
        z-index: 0;
        /* //border:solid red 1px; */
    }
}

@media (min-width: 280px) and (max-width: 576px) {
    .divsection-inner {
        /* display: flex; */
        position: absolute;
        margin-top: 105px;
        z-index: 1;
        /* //border:solid red 1px; */
    }

    .tabcontent-vision {
        color: #082535;
        display: none;
        padding: 15px;
        padding-top: 80px;
        text-align: center;
        margin-top: auto;
        font-size: 15px;
    }

    .container {
        width: 100%;
        padding: 0px;
        margin: 0px;
    }
}
/* Style the tab content */
.tabcontent-vision {
    color: #082535;
    display: none;
    padding: 100px;
    text-align: center;
    margin-top: auto;
    font-size: 20px;
    line-height: 35px;

}

.tabcontent-vision span {
    font-size: 18px;

}

.tabcontent {
    color: #082535;
    display: none;
    padding: 50px;
    text-align: center;
    margin-top: auto;
}




.nav li a {
    padding: 0px;
    padding-top: 12px;

}

.navbar-nav {
    text-align: center;
    width: 100%;

}

.navbar-nav>li {
    /* width:20%; */
    text-align: center;

}


/* .navbar-nav-8 >  li  {
	width:12.5%;
	padding:0px;
	margin:0px;
} */
.navbar-nav-9 >  li  {
	width: 11.11%;
	padding:0px;
	margin:0px;
}

.navbar-inverse .navbar-text {
    color: #ffffff;
}

.navbar-inverse .navbar-nav>li>a {
    color: #ffffff;
    font-size: 1.5vh;
    -webkit-transition: 0.8s;
    /* Safari */
    transition: 0.8s;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
    color: #df9d00;
}

.navbar ul li a i {
    font-size: 2.8vh;
}



@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}

@media (min-width: 280px) and (max-width: 576px) {
  .navbar-nav {
    text-align: center;
    width: 200%;
    margin-left: 50px;

}
    .navbar-nav>li {
        width: 100%;
        text-align: left;
    }

    .headertext {
        padding: 0px 0px 0px 0px;
        font-size: 20px;
        margin-top: -10px;
    }

    .container {
        width: 100%;
        padding: 0px;
        margin: 0px;
    }

}
  .headertext{
	margin-top: 120px;
	text-shadow: 2px 3px 3px #000000;
	
}

.headertext{padding:60px 0px 0px 60px; font-size:45px;}