       /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    padding: 10px 0;
}

/* Contact Info (Top Bar) */
/* Top Contact Bar */
.header-top {
    background: #fef4e8; /* Soft warm color */
    font-size: 14px;
    padding: 8px 0;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #444;
    font-weight: 500;
}

.contact-info i {
    color: #e6733c;
    margin-right: 5px;
}

/* Navigation Bar */
.header {
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 8px 0; /* Reduced height */
}

/* Logo & Menu Layout */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo img {
    height: 50px; /* Make both logos the same size */
    max-width: 160px;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 12px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e6733c;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }
    
    .nav-menu {
        margin-top: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
}


/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/Higher-education-in-Germany.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    background: #FD7A4A;
    color: white;
    padding: 12px 25px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: white;
    color: #FD7A4A;
    border: 2px solid #FD7A4A;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2em;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
}

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }

        .course-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .info-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-card h3 {
            color: #FD7A4A;
            margin-bottom: 15px;
        }

        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2em;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }

        /* News Ticker */
        .news-ticker {
            background: #FD7A4A;
            color: white;
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }

        .ticker-content {
            white-space: nowrap;
            animation: ticker 20s linear infinite;
            display: inline-block;
        }

        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .footer-section h4 {
            color: #FD7A4A;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            color: white;
            font-size: 20px;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #FD7A4A;
        }
        .top-logo img {
            height: 50px; /* Adjust as needed */
        }
        .hero-btn {
            display: inline-block;
            background: linear-gradient(135deg, #FD7A4A, #FF5733); /* Smooth Gradient */
            color: white;
            padding: 14px 30px;
            font-size: 1.2em;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px; /* Rounded Look */
            transition: all 0.4s ease-in-out;
            box-shadow: 0 5px 15px rgba(253, 122, 74, 0.3);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }
        
        .hero-btn:hover {
            background: white;
            color: #FD7A4A;
            border: 2px solid #FD7A4A;
            transform: translateY(-3px); /* Lift Effect */
            box-shadow: 0 10px 20px rgba(253, 122, 74, 0.4);
        }
        
        .hero-btn::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: rgba(255, 255, 255, 0.2);
            transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, left 0.5s ease;
            border-radius: 50%;
            z-index: 0;
            transform: translate(-50%, -50%);
        }
        
        .hero-btn:hover::after {
            width: 0;
            height: 0;
        }
        
        .hero-btn span {
            position: relative;
            z-index: 1;
        }
.study-program {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 20px;
}

.program-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.program-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.program-image img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.program-image:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}


.program-content {
    flex: 2;
    padding-left: 30px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.program-content h2 {
    color: #FD7A4A;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.program-content p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .program-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .program-image img {
        max-width: 100%;
    }

    .program-content {
        padding-left: 0;
    }

    .register-btn {
        bottom: 15px;
    }
}
    .program-details {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 20px;
}

.details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 30px;
    overflow: hidden;
}

.video-container {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: #000;
}

.program-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.details-content {
    flex: 2;
    padding-left: 30px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.details-content h2 {
    color: #FD7A4A;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.details-content p {
    margin-bottom: 20px;
}

.details-content ul {
    list-style: none;
    padding-left: 0;
}

.details-content ul li {
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
}

.details-content ul li strong {
    color: #FD7A4A;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .details-container {
        flex-direction: column;
        text-align: center;
    }

    .program-video {
        width: 100%;
        max-height: 300px;
    }

    .details-content {
        padding-left: 0;
    }
}
/* Universal Section Title Styling */
.section-title {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: #000000;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    display: block;
    height: 4px;
    background: #FD7A4A;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* The Study Program Section */
.study-program {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 20px;
}

.study-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 30px;
    overflow: hidden;
    border-left: 8px solid #FD7A4A;
}

.study-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.study-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Study Program Content */
.study-content {
    flex: 2;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

/* Program Details Section */
.program-details {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 20px;
}

.details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 30px;
    overflow: hidden;
}

.video-container {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: #000;
}

.program-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.details-content {
    flex: 2;
    padding-left: 30px;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.details-content ul {
    list-style: none;
    padding-left: 0;
}

.details-content ul li {
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
}

.details-content ul li strong {
    color: #FD7A4A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .study-container,
    .details-container {
        flex-direction: column;
        text-align: center;
    }

    .study-image img {
        max-width: 100%;
    }

    .program-video {
        width: 100%;
        max-height: 300px;
    }

    .details-content {
        padding-left: 0;
    }
}
.study-content ul {
    list-style: none;
    padding: 0;
}

.study-content li {
    font-size: 18px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.study-content li::before {
    content: "✔"; /* Checkmark icon */
    color: #FD7A4A;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
}
.study-structure {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 20px;
}

.structure-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 30px;
    overflow: hidden;
    border-left: 8px solid #FD7A4A;
}

.structure-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.structure-content {
    flex: 2;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.structure-content ul {
    list-style: none;
    padding: 0;
}

.structure-content li {
    font-size: 18px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.structure-content li::before {
        content: "★";
    color: #FD7A4A;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
}
/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .structure-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .structure-image img {
        max-width: 100%;
    }

    .structure-content {
        font-size: 1em;
    }

    .structure-content ul {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .study-structure {
        padding: 30px 15px;
    }

    .structure-container {
        padding: 20px;
        border-left: 5px solid #FD7A4A;
    }

    .structure-content {
        font-size: 0.95em;
    }

    .structure-content li {
        font-size: 16px;
    }

    .structure-content li::before {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .study-structure {
        margin: 50px auto;
        padding: 20px;
    }

    .structure-container {
        padding: 15px;
        border-left: 4px solid #FD7A4A;
    }

    .structure-content {
        font-size: 0.9em;
    }

    .structure-content li {
        font-size: 15px;
    }

    .structure-content li::before {
        font-size: 16px;
    }
}
.partners-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9, #eef1f5);
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-image {
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-image {
        width: 90%;
    }
}
/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 50px 20px;
    text-align: center;
}

.contact-info {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

/* Contact Cards */
.contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease-in-out;
    border: 2px solid rgba(253, 122, 74, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    border: 2px solid #FD7A4A;
    box-shadow: 0px 15px 40px rgba(253, 122, 74, 0.3);
}

/* Image */
.contact-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 5px solid #FD7A4A;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Styling */
.contact-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #FD7A4A;
    margin: 10px 0;
}

.contact-role,
.contact-location {
    font-size: 1.1em;
    color: #333;
    margin: 5px 0;
}

/* Email Link */
.contact-email {
    display: inline-block;
    margin-top: 15px;
    font-size: 1em;
    font-weight: bold;
    color: #FD7A4A;
    text-decoration: none;
    background: rgba(253, 122, 74, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #FD7A4A;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 90%;
    }
}

button {
    background: #FD7A4A;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #E0633E;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .registration-form {
        padding: 20px;
    }
}

