/*
Theme Name: IGS New
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Custom theme for Institut für Germanistik — includes CPTs (professors, testimonials, success_stories) with meta boxes and full templates.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: institut-germanistik
*/


  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-black: #1a1a1a;
            --primary-red: #308627;
            --primary-yellow: #4ab73e;
            --cream: #37932d12;
            --white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.08);
            --gray: #6c757d;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--white);
            color: var(--primary-black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0;
            /*height: 100px;*/
            box-shadow: 0 2px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            /*padding: 15px 0;*/
            box-shadow: 0 4px 30px var(--shadow);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100px;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-black);
            letter-spacing: -1px;
            text-decoration: none;
        }

        .logo span {
            color: var(--primary-red);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary-black);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-black);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Slider Section - Full Width */
        #hero-slider {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            padding-top: 0;
            width: 100%;
            z-index: 1;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
            cursor: grab;
        }

        .slider-wrapper:active {
            cursor: grabbing;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .slide-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 0 40px;
        }

        .slide-image {
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
        }

        .slide-text h1 {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -2px;
        }

        .slide-text h2 {
            font-size: 24px;
            color: var(--gray);
            font-weight: 500;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .slider-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            width: 40px;
            border-radius: 6px;
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 10;
            pointer-events: none;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .slider-arrow:hover {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            color: white;
            transform: scale(1.1);
        }

        .slider-arrow i {
            font-size: 20px;
        }

        /* Hero Section - Full Width */
        #home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
            padding: 120px 0 80px;
            position: relative;
            width: 100%;
            z-index: 2;
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 0 40px;
        }

        .hero-text h1 {
            font-size: 72px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -2px;
        }

        .hero-text p {
            font-size: 20px;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            color: white;
            box-shadow: 0 10px 30px rgba(48, 134, 38, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(48, 134, 38, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary-black);
            border: 2px solid var(--primary-black);
        }

        .btn-secondary:hover {
            background: var(--primary-black);
            color: white;
        }

        .btn-light {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            backdrop-filter: blur(10px);
        }

        .btn-light:hover {
            background: white;
            color: var(--primary-black);
        }

        .hero-visual {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-card h3 {
            font-size: 48px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            font-weight: 900;
        }

        .stat-card p {
            color: var(--gray);
            font-size: 16px;
        }

        /* Sections */
        section {
            padding: 120px 0;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .section-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 20px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Dark Section */
        .dark-section {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            color: white;
            padding: 180px 0;
            margin: 0;
            width: 100%;
            text-align: center;
            position: relative;
        }

        .dark-section .section-header h2 {
            font-size: 120px;
            color: white;
            margin-bottom: 30px;
            text-transform: uppercase;
            line-height: 1.2;
            font-weight: 900;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .dark-section .section-header h2 .highlight {
            color: white;
            font-weight: 900;
            font-family: 'Arial Black', Arial, sans-serif;
        }

        .dark-section .section-header h2 .outline {
            display: inline-block;
        }

        .dark-section .section-header p {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 50px;
        }

        /* Introduction Section */
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-image {
            width: 100%;
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
        }

        .intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .intro-text h3 {
            font-size: 42px;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .intro-text p {
            font-size: 18px;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 20px;
        }

        /* Vision Mission */
        .vision-mission-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .vm-card {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .vm-card i {
            font-size: 48px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
        }

        .vm-card h3 {
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .vm-card p {
            color: var(--gray);
            line-height: 1.9;
            font-size: 17px;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .about-card {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .about-card i {
            font-size: 48px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
        }

        .about-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .about-card p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* Professors Section */
        .professors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .professor-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
        }

        .professor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .professor-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

        .professor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .professor-card:hover .professor-image img {
            transform: scale(1.1);
        }

        .professor-info {
            padding: 30px;
        }

        .professor-info h3 {
            font-size: 22px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .professor-info .designation {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
        }

        .professor-contact {
            margin-top: 15px;
        }

        .professor-contact div {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--gray);
        }

        .professor-contact i {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            width: 16px;
        }

        /* Success Stories Carousel */
        .success-stories-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .success-story {
            display: none;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .success-story.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        .success-image {
            height: 500px;
            overflow: hidden;
        }

        .success-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .success-content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .success-content .badge {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            width: fit-content;
            margin-bottom: 20px;
        }

        .success-content h3 {
            font-size: 36px;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .success-content .position {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 25px;
        }

        .success-content p {
            font-size: 17px;
            line-height: 1.9;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .story-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .story-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .story-dot.active {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            width: 40px;
            border-radius: 6px;
        }

        /* Resources & Facilities */
        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .facility-card {
            background: white;
            padding: 50px 40px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }

        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .facility-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .facility-icon i {
            font-size: 48px;
            color: white;
        }

        .facility-card h3 {
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .facility-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 16px;
        }

        /* Testimonials */
        .testimonials-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-slider {
            overflow: hidden;
            position: relative;
        }

        .testimonial {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
            position: relative;
            display: none;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .testimonial i.quote {
            font-size: 60px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.2;
            position: absolute;
            top: 30px;
            left: 40px;
        }

        .testimonial p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 20px;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .author-info span {
            color: var(--gray);
            font-size: 15px;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            width: 40px;
            border-radius: 6px;
        }

        /* Blogs */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .blog-image {
            height: 250px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 40px;
        }

        .blog-meta {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .blog-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .blog-card p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .read-more {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* Education Section */
        .education-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .education-sidebar {
            background: var(--cream);
            padding: 40px;
        }

        .education-tab {
            padding: 20px 25px;
            margin-bottom: 15px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
        }

        .education-tab i {
            font-size: 20px;
            color: var(--gray);
        }

        .education-tab:hover {
            background: white;
            box-shadow: 0 5px 20px var(--shadow);
        }

        .education-tab.active {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            color: white;
        }

        .education-tab.active i {
            color: white;
        }

        .education-content-area {
            padding: 60px;
        }

        .education-content {
            display: none;
        }

        .education-content.active {
            display: block;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .education-content h3 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .education-content p {
            color: var(--gray);
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .program-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .program-item {
            padding: 20px;
            background: var(--cream);
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .program-item i {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 20px;
        }

        /* Campus */
        .campus-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .campus-item {
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .campus-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .campus-item:hover {
            transform: scale(1.05);
        }

        .campus-item:hover img {
            transform: scale(1.1);
        }

        .campus-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 1;
        }

        .campus-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
        }

        .campus-overlay h3 {
            font-weight: 700;
        }

        /* Contact */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info h3 {
            font-size: 36px;
            margin-bottom: 30px;
            font-weight: 800;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 20px;
        }

        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: border 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .map-container {
            grid-column: span 2;
            margin-top: 40px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* NEW FOOTER STYLES */
        .site-footer {
            background: var(--primary-black);
            color: var(--white);
            padding: 3rem 2rem;
            position: relative;
            z-index: 1;
            padding-bottom: 1rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 15px;
            flex-wrap: nowrap;
        }

        .footer-left { flex: 2; }
        .footer-right { flex: 2; text-align: right; white-space: nowrap; }

        .footer-right nav a,
        .footer-nav a {
            color: var(--white);
            text-decoration: none;
            margin: 0 10px;
            display: inline-flex;
            align-items:center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .footer-nav a:hover { color: var(--primary-yellow); }

        .footer-logo img { 
            max-height: 120px; 
            border-radius: 10px;
        }

        /* Copyright */
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding: 10px 0;
        }

        .copyright a {
            color: var(--white);
            transition: all 0.3s ease;
        }
        .copyright a:hover { color: var(--primary-yellow); }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 10px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
        }
        .scroll-top.visible { opacity: 1; }
        .scroll-top:hover { transform: translateY(-5px); }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 60px;
            }
            
            .dark-section .section-header h2 {
                font-size: 80px;
            }
        }

        @media (max-width: 992px) {
            .hero-content,
            .intro-content,
            .about-grid,
            .blog-grid,
            .education-container,
            .campus-gallery,
            .contact-container,
            .vision-mission-grid,
            .professors-grid,
            .facilities-grid,
            .success-story.active {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .dark-section .section-header h2 {
                font-size: 60px;
            }

            .section-header h2 {
                font-size: 36px;
            }

            .map-container {
                grid-column: span 1;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .footer-row {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-left, .footer-right {
                text-align: center;
                white-space: normal;
            }
            
            .footer-nav a {
                display: block;
                margin: 5px 0;
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 36px;
            }
            
            .dark-section .section-header h2 {
                font-size: 48px;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
            
            .section-inner {
                padding: 0 20px;
            }
            
            .slide-content {
                padding: 0 20px;
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .slide-image {
                height: 400px;
            }
            
            .slider-arrows {
                padding: 0 20px;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
            }
            
            .slider-arrow i {
                font-size: 16px;
            }
            
            .hero-content {
                padding: 0 20px;
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-visual {
                grid-template-columns: 1fr;
            }
            
            .about-card, .vm-card, .facility-card {
                padding: 30px 20px;
            }
            
            .success-content, .testimonial {
                padding: 40px 20px;
            }
            
            .education-sidebar, .education-content-area {
                padding: 30px 20px;
            }
            
            .program-list {
                grid-template-columns: 1fr;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 32px;
            }
            
            .dark-section .section-header h2 {
                font-size: 36px;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
            
            .btn {
                padding: 15px 30px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .stat-card {
                padding: 30px 20px;
            }
            
            .stat-card h3 {
                font-size: 36px;
            }
            
            .professors-grid, .facilities-grid {
                grid-template-columns: 1fr;
            }
            
            .campus-item {
                height: 200px;
            }
            
            .campus-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .footer-container {
                padding: 0 10px;
            }
            
            .site-footer {
                padding: 2rem 1rem;
            }
        }
        
         /* Why German Section */
        #why-german {
            background: var(--cream);
        }

        .why-german-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .why-card {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .why-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .why-card-icon i {
            font-size: 36px;
            color: white;
        }

        .why-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .why-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 17px;
        }

        .why-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .why-stat {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .why-stat h4 {
            font-size: 48px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            font-weight: 900;
        }

        .why-stat p {
            color: var(--gray);
            font-size: 16px;
        }

        /* History Timeline Section */
        #history-timeline {
            background: white;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-red), var(--primary-yellow));
        }

        .timeline-item {
            display: flex;
            margin-bottom: 80px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
            position: relative;
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: 900;
            border: 8px solid var(--white);
            z-index: 2;
        }

        .timeline-content h3 {
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .timeline-content p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* Projects and Trips Section */
        #projects-trips {
            background: var(--cream);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .project-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .project-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
        }

        .project-content {
            padding: 40px;
        }

        .project-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .project-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .project-meta {
            display: flex;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 14px;
            color: var(--gray);
        }

        .project-meta i {
            color: var(--primary-red);
        }

        /* Partners Section */
        #partners {
            background: white;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            align-items: center;
        }

        .partner-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .partner-logo {
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .partner-card h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-black);
        }

        /* Publications Section */
        #publications {
            background: var(--cream);
        }

        .publications-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .publication-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.3s ease;
            display: flex;
            gap: 25px;
        }

        .publication-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .publication-icon {
            width: 80px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .publication-icon i {
            font-size: 36px;
            color: white;
        }

        .publication-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .publication-author {
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 8px;
        }

        .publication-year {
            background: var(--cream);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-red);
        }

        

        /* QAF Section */
        #qaf {
            background: var(--cream);
        }

        .qaf-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .qaf-item {
            background: white;
            padding: 30px 40px;
            border-radius: 20px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px var(--shadow);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .qaf-item:hover {
            box-shadow: 0 10px 40px var(--shadow);
        }

        .qaf-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 20px;
            font-weight: 700;
        }

        .qaf-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .qaf-item.active .qaf-icon {
            transform: rotate(45deg);
        }

        .qaf-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--gray);
            line-height: 1.8;
            font-size: 17px;
        }

        .qaf-item.active .qaf-answer {
            max-height: 500px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Resources Section */
        #resources {
            background: white;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .resource-card {
            background: white;
            padding: 50px 40px;
            border-radius: 24px;
            box-shadow: 0 10px 40px var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }

        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .resource-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .resource-icon i {
            font-size: 48px;
            color: white;
        }

        .resource-card h3 {
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .resource-card p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 25px;
        }

        .resource-link {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .why-german-grid,
            .projects-grid,
            .partners-grid,
            .publications-grid,
            .team-grid,
            .resources-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                flex-direction: column !important;
            }

            .timeline-content {
                width: 100%;
                margin-left: 80px;
            }

            .timeline-year {
                left: 30px;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 36px;
            }

            .why-german-grid,
            .projects-grid,
            .partners-grid,
            .publications-grid,
            .team-grid,
            .resources-grid,
            .why-stats {
                grid-template-columns: 1fr;
            }

            .why-card,
            .project-content,
            .publication-card {
                padding: 30px 20px;
            }

            .timeline-content {
                margin-left: 60px;
            }
        }