/* ==================================================================================
   GERMAN OSTAD - ÜBER UNS HERO SECTION
   Logo Colors: Orange #FF7551, Navy #1A1F3A, Blue #4A90E2
   ================================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --navy-dark: #1a1f3a;
    --blue: #4a90e2;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gray-light: #f8f9fa;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== HERO SECTION ==================== */
.ueber-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2d3748 0%, #3d4557 50%, #2d3748 100%);
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

/* ===== DECORATIVE CIRCLES ===== */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.2) 0%,
        transparent 70%
    );
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(255, 143, 105, 0.15) 0%,
        transparent 70%
    );
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* ===== CONTAINER ===== */
.ueber-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== LEFT CONTENT ===== */
.ueber-hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge */
.ueber-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.15),
        rgba(255, 143, 105, 0.1)
    );
    border: 2px solid rgba(255, 117, 81, 0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.badge-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.ueber-hero-badge:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.2),
        rgba(255, 143, 105, 0.15)
    );
    border-color: rgba(255, 117, 81, 0.5);
    transform: translateY(-2px);
}

/* Title */
.ueber-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

/* Subtitle */
.ueber-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Features */
.ueber-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Buttons */
.ueber-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    box-shadow: 0 10px 30px rgba(255, 117, 81, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.6);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Scroll Hint */
.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-hint i {
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ===== RIGHT IMAGE ===== */
.ueber-hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.2) 0%,
        rgba(74, 144, 226, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Image Decoration */
.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-orange);
    border-radius: 30px;
    z-index: -1;
    transition: all 0.5s ease;
}

.image-wrapper:hover + .image-decoration {
    top: -30px;
    right: -30px;
    border-color: var(--blue);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .ueber-hero-container {
        gap: 4rem;
    }

    .ueber-hero-title {
        font-size: 3.5rem;
    }

    .image-wrapper img {
        height: 550px;
    }
}

@media (max-width: 1024px) {
    .ueber-hero {
        padding: 5rem 2rem 3rem;
    }

    .ueber-hero-container {
        gap: 3rem;
    }

    .ueber-hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .ueber-hero-subtitle {
        font-size: 1.05rem;
    }

    .image-wrapper img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .ueber-hero {
        padding: 4rem 1.5rem 3rem;
        min-height: auto;
    }

    .ueber-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ueber-hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .ueber-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .ueber-hero-features {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        font-size: 0.95rem;
    }

    .ueber-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .image-wrapper img {
        height: 400px;
    }

    .image-decoration {
        top: -15px;
        right: -15px;
        border-width: 3px;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .circle-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .ueber-hero {
        padding: 3rem 1rem 2rem;
    }

    .ueber-hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
        margin-bottom: 1.5rem;
    }

    .ueber-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .ueber-hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .ueber-hero-features {
        gap: 0.7rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1.1rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }

    .scroll-hint {
        font-size: 0.85rem;
    }

    .image-wrapper img {
        height: 350px;
    }

    .image-decoration {
        top: -12px;
        right: -12px;
    }
}

/* ==================================================================================
   GERMAN OSTAD - ÜBER UNS SECTIONS
   Logo Colors: Orange #FF7551, Navy #1A1F3A, Blue #4A90E2
   ================================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --navy-dark: #1a1f3a;
    --blue: #4a90e2;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gray-light: #f8f9fa;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: white;
}

/* ==================== COMMON SECTION STYLES ==================== */
section {
    position: relative;
    padding: 6rem 2rem;
    background: white;
    overflow: hidden;
}

/* Alternating Background */
.gruender-section,
.team-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.bangladesch-section,
.partner-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ===== DECORATIVE CIRCLES ===== */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
    pointer-events: none;
}

.circle-1,
.circle-3,
.circle-5,
.circle-7 {
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.15) 0%,
        transparent 70%
    );
    top: -80px;
    right: -80px;
}

.circle-2,
.circle-4,
.circle-6,
.circle-8 {
    width: 250px;
    height: 250px;
    background: radial-gradient(
        circle,
        rgba(74, 144, 226, 0.12) 0%,
        transparent 70%
    );
    bottom: -60px;
    left: -60px;
    animation-delay: -10s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* ===== CONTAINER ===== */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-wrapper.reverse {
    direction: ltr;
}

.content-wrapper.reverse .image-content {
    order: -1;
}

/* ===== TEXT CONTENT ===== */
.text-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-wrapper.reverse .text-content {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.15),
        rgba(255, 143, 105, 0.1)
    );
    border: 2px solid rgba(255, 117, 81, 0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.section-badge:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.2),
        rgba(255, 143, 105, 0.15)
    );
    border-color: rgba(255, 117, 81, 0.5);
    transform: translateY(-2px);
}

/* Title */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* Description */
.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 117, 81, 0.3);
}

.btn-read-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn-read-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.5);
}

.btn-read-more span {
    position: relative;
    z-index: 1;
}

.btn-read-more i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* ===== IMAGE CONTENT ===== */
.image-content {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.content-wrapper.reverse .image-content {
    animation: fadeInLeft 1s ease-out;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.image-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.15) 0%,
        rgba(74, 144, 226, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Image Decoration */
.image-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .content-wrapper {
        gap: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .image-wrapper img {
        height: 500px;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 5rem 2rem;
    }

    .content-wrapper {
        gap: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.05rem;
    }

    .image-wrapper img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .content-wrapper,
    .content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-wrapper.reverse .image-content {
        order: 0;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .image-wrapper img {
        height: 400px;
    }

    .image-decoration {
        top: -12px;
        right: -12px;
        border-width: 2px;
    }

    .circle-1,
    .circle-3,
    .circle-5,
    .circle-7 {
        width: 250px;
        height: 250px;
    }

    .circle-2,
    .circle-4,
    .circle-6,
    .circle-8 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }

    .btn-read-more {
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }

    .image-wrapper img {
        height: 350px;
    }

    .image-decoration {
        top: -12px;
        right: -12px;
    }

    .circle-1,
    .circle-3,
    .circle-5,
    .circle-7 {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -60px;
    }

    .circle-2,
    .circle-4,
    .circle-6,
    .circle-8 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -50px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.content-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.content-wrapper.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================================================================
   GERMAN OSTAD - AWARDS SECTION
   Logo Colors: Orange #FF7551, Navy #1A1F3A, Blue #4A90E2
   ================================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --navy-dark: #1a1f3a;
    --blue: #4a90e2;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --gray-light: #f8f9fa;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: white;
}

/* ==================== AWARDS SECTION ==================== */
.awards-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    overflow: hidden;
}

/* ===== DECORATIVE CIRCLES ===== */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
    pointer-events: none;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.15) 0%,
        transparent 70%
    );
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(74, 144, 226, 0.12) 0%,
        transparent 70%
    );
    bottom: -80px;
    left: -80px;
    animation-delay: -10s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* ===== CONTAINER ===== */
.awards-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== SECTION HEADER ===== */
.awards-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.15),
        rgba(255, 143, 105, 0.1)
    );
    border: 2px solid rgba(255, 117, 81, 0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== AWARDS GRID ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* ===== AWARD CARD ===== */
.award-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.award-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.2);
}

/* ===== AWARD IMAGE ===== */
.award-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Award Icon Overlay */
.award-icon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 117, 81, 0.4);
    transition: all 0.4s ease;
}

.award-card:hover .award-icon-overlay {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 117, 81, 0.5);
}

.award-icon-overlay i {
    font-size: 1.8rem;
    color: white;
}

/* ===== AWARD CONTENT ===== */
.award-content {
    position: relative;
    padding: 2rem;
}

.award-year {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(
        135deg,
        rgba(74, 144, 226, 0.15),
        rgba(74, 144, 226, 0.1)
    );
    border: 1px solid rgba(74, 144, 226, 0.3);
    color: var(--blue);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.award-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.award-card:hover .award-title {
    color: var(--primary-orange);
}

.award-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===== AWARD ORGANIZATION ===== */
.award-organization {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    border-left: 3px solid var(--primary-orange);
    margin-bottom: 1.5rem;
}

.award-organization i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.award-organization span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== AWARD BUTTON ===== */
.btn-award-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 117, 81, 0.25);
    width: 100%;
    justify-content: center;
}

.btn-award-more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn-award-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-award-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 117, 81, 0.4);
}

.btn-award-more span {
    position: relative;
    z-index: 1;
}

.btn-award-more i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-award-more:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .awards-grid {
        gap: 2rem;
    }

    .award-content {
        padding: 1.8rem;
    }

    .award-image {
        height: 200px;
    }
}

@media (max-width: 1024px) {
    .awards-section {
        padding: 5rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .awards-grid {
        gap: 2rem;
    }

    .award-image {
        height: 200px;
    }

    .award-icon-overlay {
        width: 60px;
        height: 60px;
    }

    .award-icon-overlay i {
        font-size: 1.6rem;
    }

    .award-title {
        font-size: 1.35rem;
    }

    .award-content {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 4rem 1.5rem;
    }

    .awards-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .award-image {
        height: 180px;
    }

    .award-icon-overlay {
        width: 55px;
        height: 55px;
        top: 15px;
        right: 15px;
    }

    .award-icon-overlay i {
        font-size: 1.5rem;
    }

    .award-content {
        padding: 1.5rem;
    }

    .award-title {
        font-size: 1.3rem;
    }

    .award-description {
        font-size: 0.95rem;
    }

    .award-organization {
        padding: 0.7rem 0.9rem;
        margin-bottom: 1.2rem;
    }

    .award-organization span {
        font-size: 0.85rem;
    }

    .btn-award-more {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .awards-section {
        padding: 3rem 1rem;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .awards-grid {
        gap: 1.5rem;
    }

    .award-image {
        height: 160px;
    }

    .award-icon-overlay {
        width: 50px;
        height: 50px;
        top: 12px;
        right: 12px;
    }

    .award-icon-overlay i {
        font-size: 1.3rem;
    }

    .award-content {
        padding: 1.2rem;
    }

    .award-year {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .award-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .award-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .award-organization {
        padding: 0.6rem 0.8rem;
        margin-bottom: 1rem;
    }

    .award-organization i {
        font-size: 0.9rem;
    }

    .award-organization span {
        font-size: 0.8rem;
    }

    .btn-award-more {
        padding: 0.75rem 1.3rem;
        font-size: 0.85rem;
    }

    .circle-1 {
        width: 250px;
        height: 250px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }
}
