/* Main Navigation */

/* Container Layout */
.container {
    display: flex;
    gap: 0px;
    padding: 10px;
    /* max-width: 1400px; */
    margin: 0 auto;
    background: #f5f5f5;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Main Content Area */
.content-area {
    flex: 1;
    height: 600px;
    margin-right: 320px; /* Space for right sidebar */
}

.main-image {
    width: 100%;
    height: 100%;
}

.main-image img {
    width: 100%;
    height: calc(100% - 50px);
    object-fit: cover;
    display: block;
}

.image-caption {
    background: #000080;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Director Section */
.director-section {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: absolute;
    right: 20px;
    top: 20px;
    height: 600px;
}

.profile-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid #000080;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid #f8dc65;
    object-fit: cover;
}

.profile-section h3 {
    color: #000;
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.profile-section p {
    color: #666;
    margin: 5px 0 25px;
    font-size: 16px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn.yellow-btn {
    background: #f8dc65;
    color: #000080;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn.yellow-btn:hover {
    background: #000080;
    color: #fff;
}

.course-list {
    background: #fff;
    padding: 20px 30px;
    margin-top: 2px;
}

.course-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    padding: 12px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.course-list li:before {
    content: "•";
    color: #000;
    font-size: 20px;
    margin-right: 8px;
    line-height: 1;
    margin-top: -2px;
}

.course-list li:last-child {
    border-bottom: none;
}

/* Main footer */
.main footer {
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 15px;
    background: #000080;
    margin-top: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 10px;
    }

    .main-image {
        width: 100%;
        height: 300px;
    }

    .director-section {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.main-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.profile-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
} 