  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
            padding-top: 94px; /* To account for fixed navbar */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation Bar */
        .navbar {
            height: 94px;
            width: 100%;
            background-color: #FDFFF5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 0 20px;
        }
        
        .logo-container a {
            text-decoration: none;
            color: inherit;
        }
        
        .logo-div {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }
        
        .logo-text {
            font-size: 1.2rem;
            line-height: 1.2;
        }
        
        .time {
            font-weight: bold;
            color: #000080;
        }
        
        .time1 {
            font-size: 0.9rem;
            color: #000080;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-menu a {
            color: #000080;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 8px 15px;
            border-radius: 20px;
        }
        
        .nav-menu a:hover {
            background: #000080;
            color: #FDFFF5;
        }
        
        .toggle-btn {
            display: none;
            flex-direction: column;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        
        .bar {
            width: 25px;
            height: 3px;
            background-color: #000080;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(30, 67, 137, 0.7), rgba(30, 67, 137, 0.7)), url(images/1756439626204.jpg) center/cover no-repeat;
            position: relative;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-bottom: 60px;
        }
        
        .container{
            position: relative;
            z-index: 1;
        }
        
        .page-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Academic Programs Section */
        .programs-section {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: #1e4389;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #ffcc00;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .program-card {
            background: #f5f7fa;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .program-card:hover {
            transform: translateY(-5px);
        }
        
        /* .program-image {
            height: 200px;
            background-size: cover;
            background-position: center;    
        } */
        #program-image1 {
            background: url(images/IMG_0562.JPG);
            height: 200px;
            background-size: cover;
            background-position: center;    
        }
        #program-image2 {
            background: url(images/IMG_9793.JPG);
            height: 200px;
            background-size: cover;
            background-position: center;    
        }
        #program-image3 {
            background: url(image/IMG_05602.JPG);
            height: 200px;
            background-size: cover;
            background-position: center;    
        }
    

        /* #program-image1{
            background-size: cover;
            background-position: center;
            background: url(images/IMG_0562.JPG);
            background-repeat: no-repeat;
            height: 200px;


        } */
    
        
        .program-content {
            padding: 30px;
        }
        
        .program-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            color: #1e4389;
            margin-bottom: 15px;
        }
        
        .program-desc {
            color: #555;
            margin-bottom: 20px;
        }
        
        .program-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .program-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .program-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ffcc00;
            font-weight: bold;
        }
        
        .program-btn {
            display: inline-block;
            background: #1e4389;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .program-btn:hover {
            background: #2c5cc0;
        }
        
        /* Curriculum Section */
        .curriculum-section {
            padding: 80px 0;
            background: #f5f7fa;
        }
        
        .curriculum-tabs {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
            border-bottom: 2px solid #e2e3f1;
        }
        
        .tab-btn {
            padding: 12px 25px;
            background: none;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        
        .tab-btn.active {
            color: #1e4389;
            border-bottom: 3px solid #ffcc00;
        }
        
        .tab-content {
            display: none;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .tab-content.active {
            display: block;
        }
        
        .subject-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .subject-card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .subject-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        .subject-icon {
            font-size: 2rem;
            color: #1e4389;
            margin-bottom: 10px;
        }
        
        /* Academic Calendar */
        .calendar-section {
            padding: 80px 0;
            background: white;
        }
        
        .calendar-container {
            background: #f5f7fa;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .term-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .term-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            color: #1e4389;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e3f1;
        }
        
        .event-list {
            list-style: none;
        }
        
        .event-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #e2e3f1;
        }
        
        .event-list li:last-child {
            border-bottom: none;
        }
        
        .event-date {
            font-weight: 600;
            color: #1e4389;
            min-width: 120px;
        }
        
        /* Examination Section */
        .examination-section {
            padding: 80px 0;
            background: #f5f7fa;
        }
        
        .exam-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .exam-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 5px solid #1e4389;
        }
        
        .exam-icon {
            font-size: 2.5rem;
            color: #1e4389;
            margin-bottom: 20px;
        }
        
        .exam-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            color: #1e4389;
            margin-bottom: 15px;
        }
        
        /* Faculty Section */
        .faculty-section {
            padding: 80px 0;
            background: white;
        }
        
        .faculty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .faculty-card {
            background: #f5f7fa;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faculty-image {
            height: 200px;
            background: #e2e3f1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #1e4389;
        }
        
        .faculty-content {
            padding: 20px;
        }
        
        .faculty-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            color: #1e4389;
            margin-bottom: 5px;
        }
        
        .faculty-role {
            color: #ffcc00;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .faculty-subjects {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Call to Action */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e4389 0%, #2c5cc0 100%);
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ffcc00;
            color: #1e4389;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background: #ffd633;
            transform: translateY(-3px);
        }
        
        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cta-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Footer */
        footer {
            background: #000080;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        
        .footer-content p {
            margin-bottom: 10px;
        }
        
        .footer-content ul {
            list-style: none;
        }
        
        .footer-content ul li {
            margin-bottom: 10px;
        }
        
        .footer-content a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-content a:hover {
            color: #ffcc00;
        }
        
        .social-icon {
            display: flex;
            gap: 15px;
        }
        
        .social-icon a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: background 0.3s;
        }
        
        .social-icon a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .programs-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 900px) {
            .toggle-btn {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 94px;
                flex-direction: column;
                background-color: #FDFFF5;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .curriculum-tabs {
                flex-direction: column;
            }
            
            .tab-btn {
                text-align: left;
                border-bottom: 1px solid #e2e3f1;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 600px) {
            .page-title {
                font-size: 2rem;
            }
            
            .page-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .programs-grid {
                grid-template-columns: 1fr;
            }
            
            .subject-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .calendar-container {
                padding: 30px 20px;
            }
            
            .event-list li {
                flex-direction: column;
            }
            
            .event-date {
                margin-bottom: 5px;
            }
        }