/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.no_space {
  margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Century Gothic', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}














/* ========== NAVBAR STYLES ========== */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-logo img {
    display: block;
    height: 36px;
    width: auto;
}

.navbar-logo a:hover {
    color: #764ba2;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #667eea;
    transition: width 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.navbar-link:hover,
.navbar-link.active {
    color: #667eea;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}



/* ========== HOME SECTION ========== */
.home-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-grid {
    display: grid;
    gap: 4rem;
}

.home-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.home-block.reverse .home-image {
    order: 2;
}

.home-block.reverse .home-text {
    order: 1;
}

.home-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.home-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.founder-photo {
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 8px;
}




.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.full-width-photo {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin: 2rem 0;
    height: 500px;
    overflow: hidden;
}

.full-width-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.home-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-placeholder {
    height: 500px;
    border-radius: 8px;
}

.founder-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.founder-info h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.founder-info .title {
    font-size: 1rem;
    color: #764ba2;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #764ba2;
}

/* ========== PROJECT PROFILE SECTION STYLES ========== */
.project-profile-section {
    background-color: #fff;
    padding: 2rem 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.project-profile-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.project-image-container {
    height: 550px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    order: 2;
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.project-info {
    order: 1;
}

.project-info .project-info-item p {
    margin: 0;
    line-height: 1.4;
    padding-bottom: 5px;
}

.project-info-item{
    padding-bottom: 25px;
}



.project-info h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.project-info p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
}

/* ========== ABOUT PAGE STYLES ========== */
.about-header,
.projects-header,
.contact-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.about-header h1,
.projects-header h1,
.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-header p,
.projects-header p,
.contact-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.partner-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #333;
    font-size: 1.3rem;
}

.partner-role {
    padding: 0 1.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.partner-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.media-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.media-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.media-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.media-item p {
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.media-date {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Recognition Grid */
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.recognition-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.recognition-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.recognition-item p {
    color: #666;
}

/* ========== PROJECTS PAGE STYLES ========== */
.projects-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    group: true;
    text-decoration: none;
    display: block;
}

.project-image {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-name {
    color: white;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

/* ========== PROJECT DETAIL PAGE STYLES ========== */
.project-detail-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.project-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.main-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    min-height: 400px;
    max-height: 700px;
    order: 2;
    flex: 1;
}

.main-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.image-nav-arrow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    flex-shrink: 0;
}

.image-nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.image-nav-arrow:active {
    transform: scale(0.95);
}

.left-arrow {
    order: 1;
}

.right-arrow {
    order: 3;
}

.main-display-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #667eea;
}

.back-button-container {
    text-align: center;
    margin-top: 2rem;
}

.back-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #764ba2;
}

/* ========== AWARD DETAIL PAGE STYLES ========== */
.award-detail-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.award-detail-main-image {
    width: 100%;
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    min-height: 300px;
    max-height: 600px;
}

.award-detail-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.award-detail-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.award-detail-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.award-detail-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 1rem;
}

.award-detail-card h3 {
    font-size: 1.1rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.award-detail-item {
    margin-bottom: 1.5rem;
}

.award-detail-item h3 {
    font-size: 0.95rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-detail-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.award-detail-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.award-detail-card ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.award-detail-card li {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
}

#map-container {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    
}

.info-block h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-block p {
    color: #666;
    line-height: 1.7;
}

.info-block a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #764ba2;
}

.opportunities {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.opportunities h3 {
    color: white;
}

.opportunities p {
    color: rgba(255, 255, 255, 0.9);
}

.opportunities a {
    color: #fff;
}

.opportunities-block {
    background: white;
    color: #333;
}

.opportunities-block h3 {
    color: #333;
    margin-bottom: 1rem;
}

.opportunities-block h4 {
    color: #667eea;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.opportunities-block p {
    color: #666;
}

.opportunities-block a {
    color: #667eea;
    text-decoration: underline;
}

.opportunities-list {
    list-style: none;
    margin: 0.5rem 0 1rem 0;
    padding-left: 0;
}

.opportunities-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.opportunities-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.social-info .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-btn {
    background-color: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link-btn:hover {
    background-color: #764ba2;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.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);
}

.submit-btn {
    background-color: #667eea;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #764ba2;
}

/* ========== FOOTER STYLES ========== */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icons a {
    color: #bbb;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #667eea;
    transform: translateY(-3px);
}

.social-icons svg {
    width: 32px;
    height: 32px;
}

.footer-bottom {
    border-top: 1px solid #faf1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: #fcf9f9;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom .footer-right {
    margin-left: auto;
    text-align: right;
    color:#eee;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .home-block,
    .section-content,
    .founder-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .home-block.reverse .home-image,
    .home-block.reverse .home-text {
        order: auto;
    }

    .home-text h2,
    .section-text h2 {
        font-size: 1.8rem;
    }

    

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card {
        height: 250px;
    }

    .project-name {
        font-size: 1.3rem;
    }

    .partners-grid,
    .media-grid,
    .recognition-grid {
        grid-template-columns: 1fr;
    }

    .map-box {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 1rem;
    }

    .navbar-logo a {
        font-size: 1.2rem;
    }

    .navbar-menu {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 300px;
    }

    .image-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .home-text h2,
    .section-text h2,
    .section-title {
        font-size: 1.5rem;
    }

    .about-section,
    .home-section,
    .founder-section {
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========== AWARDS PAGE STYLES ========== */
.awards-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.awards-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.awards-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.awards-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.award-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.award-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.award-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
}

.award-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rec-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.award-content {
    padding: 2rem;
}

.award-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.award-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.award-category {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.award-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.award-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.detail-item {
    color: #999;
    font-size: 0.9rem;
    display: block;
}

.detail-item::before {
    content: '• ';
    color: #667eea;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Recognition Highlights */
.recognition-highlights {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-container h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-item p {
    color: #666;
    font-size: 1rem;
}

/* ========== RESPONSIVE AWARDS PAGE ========== */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .award-image {
        height: 250px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .awards-header h1 {
        font-size: 1.8rem;
    }

    .award-content {
        padding: 1.5rem;
    }

    .award-card h3 {
        font-size: 1.2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item h3 {
        font-size: 2rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
