Changed around line 1
+ :root {
+ --primary: #003366;
+ --secondary: #e63946;
+ --light: #f1faee;
+ --dark: #1d3557;
+ --accent: #457b9d;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ }
+
+ body {
+ line-height: 1.6;
+ color: #333;
+ background-color: #f8f9fa;
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--dark));
+ color: white;
+ padding: 2rem 0;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 0 5%;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ color: white;
+ text-decoration: none;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: all 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary);
+ }
+
+ .hero-content {
+ text-align: center;
+ padding: 5rem 1rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background-color: var(--secondary);
+ color: white;
+ padding: 0.8rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: all 0.3s ease;
+ border: none;
+ cursor: pointer;
+ }
+
+ .primary-button:hover {
+ background-color: #c1121f;
+ transform: translateY(-2px);
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ section {
+ padding: 5rem 5%;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ color: var(--primary);
+ }
+
+ .about-section .intro-text {
+ max-width: 800px;
+ margin: 0 auto 3rem;
+ font-size: 1.2rem;
+ text-align: center;
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .stat-card {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
+ transition: transform 0.3s ease;
+ }
+
+ .stat-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .stat-number {
+ font-size: 2.5rem;
+ font-weight: 700;
+ color: var(--primary);
+ margin-bottom: 0.5rem;
+ }
+
+ .program-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .program-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
+ transition: all 0.3s ease;
+ }
+
+ .program-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
+ }
+
+ .program-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .campus-gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ }
+
+ .gallery-item {
+ aspect-ratio: 1;
+ overflow: hidden;
+ border-radius: 10px;
+ }
+
+ .gallery-image {
+ width: 100%;
+ height: 100%;
+ background-size: cover;
+ background-position: center;
+ transition: transform 0.5s ease;
+ }
+
+ .gallery-item:hover .gallery-image {
+ transform: scale(1.1);
+ }
+
+ .contact-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 3rem;
+ margin-top: 2rem;
+ }
+
+ .contact-info {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
+ }
+
+ .contact-info h3 {
+ color: var(--primary);
+ margin: 1.5rem 0 0.5rem;
+ }
+
+ .contact-form {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ width: 100%;
+ padding: 1rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ .contact-form textarea {
+ min-height: 150px;
+ resize: vertical;
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ max-width: 1400px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ flex-wrap: wrap;
+ gap: 2rem;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ color: var(--secondary);
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.2rem;
+ }
+
+ .nav-links {
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+
+ section {
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .social-links {
+ justify-content: center;
+ }
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ section {
+ animation: fadeIn 0.8s ease-out forwards;
+ }
+
+ section:nth-child(2) { animation-delay: 0.1s; }
+ section:nth-child(3) { animation-delay: 0.2s; }
+ section:nth-child(4) { animation-delay: 0.3s; }