/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.nav-links a.active {
    background: rgba(255,255,255,0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown Menu Styles */
.dropbtn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropbtn::after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn::after {
    transform: rotate(180deg);
}

.dropbtn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.dropdown-content a {
    color: #2c3e50;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
    border-radius: 10px;
    margin: 0 10px;
}

/* Enhanced dropdown with JavaScript control */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 15px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    margin-top: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
}

.dropdown-content.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.hero-banner {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-banner:hover {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-actions {
    margin-top: 30px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.btn-read-more:hover .read-more-icon {
    transform: translateX(5px);
}

.read-more-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    font-weight: bold;
}

/* Accreditations Section */
.accreditations-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.accreditations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.accreditations-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.accreditations-content {
    text-align: center;
}

.accreditations-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accreditations-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.accreditation-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.accreditation-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    border-radius: 15px;
    overflow: hidden;
}

.accreditations-img {
    width: 100%;
    max-width: 350px;
    max-height: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
    background: white;
    padding: 10px;
}

.accreditation-item:hover .accreditations-img {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.accreditation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.accreditation-item:hover .accreditation-overlay {
    opacity: 1;
}

.accreditation-zoom-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.accreditation-overlay p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: white;
}

.courses-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.courses-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 2px;
}

.courses-content {
    text-align: center;
}

.courses-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.courses-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.course-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    aspect-ratio: auto;
}

.course-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.course-img {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 20px;
    background: #f8f9fa;
    padding: 10px;
}

.course-item:hover .course-img {
    transform: scale(1.02);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.course-item:hover .course-overlay {
    opacity: 1;
}

.course-zoom-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.course-overlay p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.contact-content-simple {
    display: flex;
    justify-content: center;
}

.contact-info-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-subtitle {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-messages.success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: 1px solid #27ae60;
}

.form-messages.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 1px solid #e74c3c;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Icons */
.icon-location::before {
    content: "📍";
}

.icon-phone::before {
    content: "📞";
}

.icon-email::before {
    content: "✉️";
}

.icon-whatsapp::before {
    content: "💬";
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #2c3e50, #3498db);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .nav-links.mobile-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        margin: 2px 0;
        border-radius: 10px;
        background: rgba(255,255,255,0.1);
    }
    
    .dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        margin: 5px 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-content a {
        color: white;
        background: rgba(255,255,255,0.05);
        margin: 1px 0;
        border-radius: 8px;
        padding: 10px 16px;
        width: calc(100% - 32px);
        text-align: center;
        font-size: 14px;
    }
    
    .dropdown-content a:hover {
        background: rgba(255,255,255,0.15);
        margin: 1px 0;
        transform: none;
    }
    
    .hero {
        margin-top: 70px;
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-info-centered {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .accreditations-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .courses-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-submit {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .courses-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .course-img {
        min-height: 100px;
        max-height: 150px;
    }
    
    .course-zoom-icon {
        font-size: 2rem;
    }
    
    .course-overlay p {
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Admission Page Styles */
.admission-main {
    margin-top: 70px;
}

.admission-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.admission-header {
    padding: 40px 0 20px;
    text-align: center;
}

.header-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 0 auto;
    border-radius: 2px;
}

.admission-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.admission-section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.admission-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.admission-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.admission-requirements {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.requirement-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.requirement-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.requirement-details {
    flex: 1;
}

.contact-details {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.contact-details p {
    margin: 5px 0;
    color: #333;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.graduates-list, .credentials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.graduate-item, .credential-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.graduate-letter, .credential-letter {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.graduate-item p, .credential-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.distance-learning {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-left: 5px solid #3498db;
}

.distance-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.contact-admission {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #27ae60;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-card.full-width {
    grid-column: 1 / -1;
}

.contact-card .contact-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card .contact-details h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card .contact-details p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.contact-card .contact-subtitle {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

/* Responsive Design for Admission Page */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .admission-banner {
        height: 250px;
        background-attachment: scroll;
    }
    
    .admission-section {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* About Page Styles */
.about-main {
    margin-top: 70px;
}

.about-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.about-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
    font-size: 1.05rem;
}

.content-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.purpose-list {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.purpose-list li {
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
    padding-left: 10px;
}

.recipients-full-width {
    margin: 30px 0;
}

.recipients-comprehensive {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 35px;
    border-radius: 20px;
    border-left: 6px solid #e74c3c;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.recipients-comprehensive > p {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.recipients-categories {
    display: grid;
    gap: 15px;
}

.category-row {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.category-row:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-row strong {
    color: #2c3e50;
    font-weight: 600;
    display: inline-block;
    min-width: 180px;
}

.closing-statement {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.closing-statement p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Full Width Recipients Section */
.recipients-full-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 60px 0;
}

/* Use standard container for recipients section */

.recipients-full-section h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipients-full-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.recipients-intro {
    text-align: center;
    margin-bottom: 50px;
}

.recipients-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.recipients-full-section .recipients-comprehensive {
    background: white;
    padding: 50px;
    border-radius: 25px;
    border-left: 8px solid #e74c3c;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.recipients-full-section .recipients-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.recipients-full-section .category-row {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
}

.recipients-full-section .category-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.recipients-full-section .category-row strong {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.recipients-full-section .closing-statement {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(102,126,234,0.3);
}

.recipients-full-section .closing-statement p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-banner {
        height: 250px;
        background-attachment: scroll;
    }
    
    .about-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .recipients-comprehensive {
        padding: 25px 20px;
    }
    
    .category-row {
        padding: 15px;
    }
    
    .category-row strong {
        display: block;
        margin-bottom: 8px;
        min-width: auto;
    }
    
    .content-text p {
        text-align: left;
        font-size: 1rem;
    }
    
    .closing-statement {
        padding: 20px;
    }
    
    .closing-statement p {
        font-size: 1rem;
    }
    
    /* Container styling handled by main .container class */
    
    .recipients-full-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .recipients-full-section h2 {
        font-size: 2rem;
    }
    
    .recipients-full-section .recipients-comprehensive {
        padding: 30px 20px;
    }
    
    .recipients-full-section .recipients-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recipients-full-section .category-row {
        padding: 20px;
    }
    
    .recipients-full-section .closing-statement {
        padding: 25px 20px;
    }
    
    .recipients-full-section .closing-statement p {
        font-size: 1.1rem;
    }
}

/* Founder's Profile Page Styles */
.profile-main {
    margin-top: 70px;
}

.profile-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.profile-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.profile-header-section {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(102,126,234,0.3);
}

.profile-title h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-subtitle p {
    font-size: 1.3rem;
    margin: 10px 0;
    opacity: 0.95;
}

.profile-subtitle p:first-child {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Founder Image Styles */
.founder-image-container {
    text-align: center;
    margin-top: 30px;
}

.founder-image-container a {
    display: inline-block;
    cursor: pointer;
}

.founder-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 5px solid rgba(255,255,255,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.founder-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.profile-section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-section h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Academic Qualifications */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.qualification-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.qualification-details h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.qualification-details p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Professional Positions */
.positions-list {
    display: grid;
    gap: 20px;
}

.position-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.position-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.position-item p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Awards Section */
.awards-section {
    border-left: 5px solid #f39c12;
}

.awards-timeline {
    display: grid;
    gap: 25px;
}

.award-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    align-items: center;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.award-year {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(243,156,18,0.3);
}

.award-details h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.award-details p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Profile Page */
@media (max-width: 768px) {
    .profile-banner {
        height: 250px;
        background-attachment: scroll;
    }
    
    .profile-header-section {
        padding: 25px 20px;
    }
    
    .profile-title h2 {
        font-size: 1.6rem;
    }
    
    .profile-subtitle p {
        font-size: 1.1rem;
    }
    
    .profile-subtitle p:first-child {
        font-size: 1.3rem;
    }
    
    .founder-image-container {
        margin-top: 20px;
    }
    
    .founder-image {
        max-width: 280px;
        border: 3px solid rgba(255,255,255,0.3);
    }
    
    .profile-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .profile-section h3 {
        font-size: 1.5rem;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qualification-item,
    .position-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .award-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .award-year {
        margin: 0 auto;
    }
}

/* Contact Form Page Styles */
.contact-form-main {
    margin-top: 70px;
}

.contact-form-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.contact-form-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info-section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-info-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.contact-info-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-details h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-details p {
    color: #555;
    margin: 0;
}

.form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #27ae60;
}

.form-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.form-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Google Form Styles */
.google-form-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.google-form {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Typeform Styles */
.typeform-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

/* Form Tabs */
.form-tabs {
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.tab-content {
    display: none;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.tab-content p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Alternative */
.form-alternative {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.form-alternative p {
    margin-bottom: 15px;
    color: #555;
}

/* Formspree Form Styles */
.formspree-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
    justify-self: center;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Recipient Info */
.recipient-info {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    margin-bottom: 20px;
    text-align: center;
}

.recipient-info p {
    margin: 0;
    color: #155724;
    font-weight: 500;
}

.recipient-info span {
    font-weight: 600;
    color: #0d4620;
}

/* Form Status */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.status-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 10px;
}

/* Thank You Page */
.thank-you-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.thank-you-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you-message {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.next-steps {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.next-steps ul {
    color: #555;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Contact Forms */
@media (max-width: 768px) {
    .contact-form-banner {
        height: 250px;
        background-attachment: scroll;
    }
    
    .contact-form-content {
        padding: 40px 20px;
    }
    
    .contact-info-section,
    .form-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .google-form-container,
    .typeform-container {
        padding: 15px;
    }
    
    .google-form {
        height: 600px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Page Styles */
.contact-main {
    margin-top: 70px;
}

.contact-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.contact-page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info-main {
    margin-bottom: 60px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-info-main h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.contact-info-main h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.contact-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-card-large {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-card-large:nth-child(2) {
    border-left-color: #25d366;
}

.contact-icon-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.contact-card-large:nth-child(2) .contact-icon-large {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

.contact-details-large h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-action {
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.contact-note {
    color: #777;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

/* Additional Info Section */
.additional-info {
    margin-bottom: 50px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #27ae60;
}

.additional-info h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.additional-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Response Info Section */
.response-info {
    margin-bottom: 50px;
}

.response-card {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 6px solid #3498db;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.response-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.response-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.response-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.response-item strong {
    color: #2c3e50;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-banner {
        height: 250px;
        background-attachment: scroll;
    }
    
    .contact-page-content {
        padding: 40px 20px;
    }
    
    .contact-info-main,
    .additional-info,
    .response-card {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .contact-info-main h2 {
        font-size: 2rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card-large {
        padding: 30px 20px;
    }
    
    .contact-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-details-large h3 {
        font-size: 1.5rem;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 25px 15px;
    }
    
    .response-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* World Peace Ambassadors Federation Page Styles */
.wpaf-main {
    margin-top: 70px;
}

.wpaf-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 350px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.wpaf-banner .banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.wpaf-banner .banner-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    text-align: center;
}

.wpaf-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.wpaf-section {
    margin-bottom: 60px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.wpaf-section h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.wpaf-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

/* Mission Section */
.mission-section {
    border-left: 6px solid #27ae60;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e8 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.peace-symbol {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

.ultimate-mission {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.ultimate-mission p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* Global Reach Section */
.global-reach-section {
    border-left: 6px solid #3498db;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.continents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.continent-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.continent-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.continent-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.continent-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.continent-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    border-left: 6px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.commitment-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.commitment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.commitment-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.commitment-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Biblical Section */
.biblical-section {
    border-left: 6px solid #f39c12;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    text-align: center;
}

.biblical-content {
    max-width: 700px;
    margin: 0 auto;
}

.scripture-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.biblical-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.biblical-content blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 25px 0;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.biblical-content cite {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
}

/* Call to Action Section */
.cta-section {
    border-left: 6px solid #9b59b6;
    background: linear-gradient(135deg, #f8f5ff 0%, #f0e6ff 100%);
    text-align: center;
}

.cta-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-peace {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-peace:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

/* Responsive Design for WPAF Page */
@media (max-width: 768px) {
    .wpaf-banner {
        height: 280px;
        background-attachment: scroll;
    }
    
    .wpaf-banner .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .wpaf-banner .banner-content p {
        font-size: 1.1rem;
    }
    
    .wpaf-content {
        padding: 40px 20px;
    }
    
    .wpaf-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .wpaf-section h2 {
        font-size: 1.8rem;
    }
    
    .continents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-content p {
        font-size: 1.05rem;
        text-align: left;
    }
    
    .ultimate-mission p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-peace {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Photo Gallery Page Styles */
.gallery-main {
    margin-top: 70px;
}

.gallery-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-intro h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.gallery-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.gallery-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-container:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-zoom-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.gallery-overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-caption {
    padding: 25px;
    text-align: center;
}

.gallery-caption h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: capitalize;
}

.gallery-caption p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0,0,0,0.8);
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-caption {
    padding: 25px;
    text-align: center;
    background: white;
}

.lightbox-caption h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.lightbox-caption p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-banner {
        height: 250px;
        background-attachment: scroll;
    }
    
    .gallery-content {
        padding: 40px 20px;
    }
    
    .gallery-intro {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .gallery-intro h2 {
        font-size: 2rem;
    }
    
    .gallery-intro p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-image-container {
        height: 250px;
    }
    
    .gallery-caption {
        padding: 20px;
    }
    
    .gallery-caption h4 {
        font-size: 1.2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-caption {
        padding: 20px;
    }
    
    .lightbox-caption h3 {
        font-size: 1.3rem;
    }
    
    .gallery-zoom-icon {
        font-size: 2rem;
    }
}

/* Purposes Page Styles */
.purposes-main {
    margin-top: 70px;
}

.purposes-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('Media/banner-thumb-history-of-inception.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 300px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.purposes-banner .banner-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.purposes-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.purposes-section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #667eea;
}

.purposes-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.purposes-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.content-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
    font-size: 1.05rem;
}

.content-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Services List */
.services-list {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-letter {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
}

/* Recipients Showcase */
.recipients-showcase {
    margin: 30px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.recipients-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.recipients-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* CTA Section for Purposes */
.purposes-section.cta-section {
    border-left: 6px solid #27ae60;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e8 100%);
    text-align: center;
}

.purposes-section.cta-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.purposes-section.cta-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Purposes Page */
@media (max-width: 768px) {
    .purposes-banner {
        height: 280px;
        background-attachment: scroll;
    }
    
    .purposes-banner .banner-content h1 {
        font-size: 2rem;
    }
    
    .purposes-content {
        padding: 40px 20px;
    }
    
    .purposes-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .purposes-section h2 {
        font-size: 1.6rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .content-text p {
        text-align: left;
        font-size: 1rem;
    }
    
    .purposes-section.cta-section p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
