 /* CSS Reset */
       
       

        .top-photo {
            width: 100%;
            height: 400px;
            background-image: url('../Assets/images/clg.jpeg');
            background-size: cover;
            background-position: center;
            min-height: 500px;
            background-repeat: no-repeat;

        }

        a {
            color: #003366;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Header */
        header {
            background-color: #002855;
            color: #ffffff;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        
        

        /* Hero Section */
        .hero {
            /* background-color: #003366; */
            color: #002855;
            /* color: white; */
            padding: 60px 40px;
            text-align: center;

        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.85;
        }

        /* Container */
        .container {
            max-width: 1100px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* Sections */
        section {
            margin-bottom: 40px;
        }

        section h2 {
            color: #002855;
            font-size: 2rem;
            margin-bottom: 15px;
            border-bottom: 2px solid #00509e;
            padding-bottom: 6px;
        }

        /* Text content */
        .about-text p,
        .mission-vision p,
        .programs ul,
        .faculty-list,
        .testimonials blockquote {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #444;
        }

        /* Programs list */
        .programs ul {
            list-style-type: disc;
            margin-left: 20px;
        }

        /* Faculty */
        .faculty-list {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .faculty-member {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
            flex: 1 1 220px;
            text-align: center;
        }

        .faculty-photo {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid #00509e;
        }

        .faculty-name {
            font-weight: 700;
            color: #002855;
            margin-bottom: 4px;
        }

        .faculty-title {
            color: #00509e;
            font-size: 0.9rem;
            font-style: italic;
        }

        /* Testimonials */
        .testimonials {
            background-color: #e9f0fb;
            padding: 30px 40px;
            border-radius: 8px;
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
        }

        .testimonials blockquote {
            font-style: italic;
            border-left: 4px solid #00509e;
            padding-left: 15px;
            color: #003366;
        }

        .testimonial-author {
            margin-top: 12px;
            font-weight: 700;
            color: #002855;
            text-align: right;
        }

        .testimonial-controls {
            margin-top: 20px;
            text-align: center;
        }

        .testimonial-controls button {
            background-color: #00509e;
            border: none;
            color: white;
            padding: 8px 16px;
            margin: 0 5px;
            font-size: 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .testimonial-controls button:hover {
            background-color: #003366;
        }