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: '📊'; }

        /* ================= HIGHLIGHT CARD ================= */
        .highlight-card {
            background-color: var(--light-bg);
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-bottom: 3rem;
            border-top: 5px solid var(--primary);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            height: 100%;
        }

        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .highlight-card i {
            color: var(--accent);
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
        }

        .highlight-card h4 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* ================= 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: linear-gradient(135deg, #1b4d3e, #2d6a4f);
            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;
        }

        /* ================= FOOTER SECTION ================= */
        .footer-section {
            background-color: var(--light-bg);
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-top: 3rem;
            text-align: center;
            border-top: 5px solid var(--accent);
        }

        /* ================= 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);
        }
