              :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --white: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f9f9f9;
            padding-top: 80px; 
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 15px;
        }
        
        .logo-text h1 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .logo-text p {
            font-size: 12px;
            color: #666;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            padding: 10px 0;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            width: 200px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--text-color);
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light-color);
            color: var(--secondary-color);
            padding-left: 25px;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }

        

        /* Programs Page Styles */
          .hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                url('images/admission-process-mpu.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 180px 20px;
    text-align: center;
    margin-bottom: 50px;
    min-height: 500px; 
    z-index: 1;
}

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }

        .department-section {
            margin: 60px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .department-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .department-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-color);
        }

        .department-icon {
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .department-title {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .programs-table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
            background: white;
            margin-bottom: 30px;
        }

        .programs-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
        }

        .programs-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .programs-table tr:last-child td {
            border-bottom: none;
        }

        .programs-table tr {
            transition: all 0.3s ease;
        }

        .programs-table tr:hover {
            background-color: #f5f5f5;
            transform: translateX(5px);
        }

        .program-name {
            font-weight: 600;
            color: var(--dark-color);
        }

        .program-duration {
            color: #666;
            font-size: 0.9rem;
        }

        .specializations {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .specialization-tag {
            background-color: var(--light-color);
            color: var(--primary-color);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

      
 th.right-align {
    text-align: right;
    padding-right: 45px;
}
        
         

        td.right-align {
    text-align: right;
}

.apply-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}







        .apply-btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            color: white;
        }

        /* Footer Styles */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding-top: 60px;
            margin: 0;
            width: 100%;
        }

        .footer-main {
            width: 100%;
        }

        .footer-main .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-column p {
            margin-bottom: 15px;
            color: #bbb;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            transition: all 0.3s ease;
            display: block;
        }
        
        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
            color: #bbb;
            font-size: 14px;
            width: 100%;
        }

        .footer-bottom .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

 /* Phone Icons  */
 
 .phone-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #bbb;
  margin-bottom: 15px;
  flex-wrap: wrap; 
}

.phone-block i {
  margin-top: 3px; 
  font-size: 18px;
  
}

.phone-block span {
  line-height: 1.6;
}





        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .header-container {
                padding: 15px;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--white);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                z-index: 999;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .dropdown-content {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                margin-top: 10px;
                padding-left: 20px;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .programs-table {
                display: block;
                overflow-x: auto;
            }
            
            .department-header {
                flex-direction: column;
                text-align: center;
            }
            
            .department-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }
   